1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0022598: Approximation of p-curve by 2D line

Check whether p-curve being projected can be approximated by straight line is made before full-scale projection, to improve performance.
If straight, pcurve is created as Line only if this will lead to the same range parameterization as 3d curve, otherwise BSpline of degree 1 is created.
Re-approximation of line pcurves by bsplines removed from ShapeFix_Edge.

Test case updating to new behavior.

Added "static" keyword to the  fixPeriodictyTroubles() function.

Update of test-cases according new behavior
This commit is contained in:
aml 2015-02-05 17:57:20 +03:00 committed by bugmaster
parent 9ccea0c628
commit 15b54261a3
275 changed files with 696 additions and 543 deletions

View File

@ -875,14 +875,46 @@ gp_Pnt2d ShapeAnalysis_Surface::NextValueOfUV(const gp_Pnt2d &p2dPrev,
case GeomAbs_SurfaceOfRevolution :
case GeomAbs_OffsetSurface :
// if ( ! mySurf->Continuity() == GeomAbs_C0 ) //: S4030: fix on BUC40132 8355 & PRO7978 1987: SI because of bad data
{
if (surftype == GeomAbs_BSplineSurface)
{
Handle(Geom_BSplineSurface) aBSpline = SurfAdapt.BSpline();
//Check near to knot position ~ near to C0 points on U isoline.
if ( SurfAdapt.UContinuity() == GeomAbs_C0 )
{
Standard_Integer aMinIndex = aBSpline->FirstUKnotIndex();
Standard_Integer aMaxIndex = aBSpline->LastUKnotIndex();
for (Standard_Integer anIdx = aMinIndex; anIdx <= aMaxIndex; ++anIdx)
{
Standard_Real aKnot = aBSpline->UKnot(anIdx);
if (Abs (aKnot - p2dPrev.X()) < Precision::Confusion())
return ValueOfUV ( P3D, preci );
}
}
//Check near to knot position ~ near to C0 points on U isoline.
if ( SurfAdapt.VContinuity() == GeomAbs_C0 )
{
Standard_Integer aMinIndex = aBSpline->FirstVKnotIndex();
Standard_Integer aMaxIndex = aBSpline->LastVKnotIndex();
for (Standard_Integer anIdx = aMinIndex; anIdx <= aMaxIndex; ++anIdx)
{
Standard_Real aKnot = aBSpline->VKnot(anIdx);
if (Abs (aKnot - p2dPrev.Y()) < Precision::Confusion())
return ValueOfUV ( P3D, preci );
}
}
}
gp_Pnt2d sol;
Standard_Boolean res = SurfaceNewton(p2dPrev,P3D,preci,sol);
if ( res ) {
if ( res )
{
Standard_Real gap = P3D.Distance ( Value(sol) );
if ( res == 2 || //:q6 abv 19 Mar 99: protect against strange attractors
(maxpreci > 0. && gap - maxpreci > Precision::Confusion()) ) { //:q1: check with maxpreci
( maxpreci > 0. && gap - maxpreci > Precision::Confusion()) )
{ //:q1: check with maxpreci
Standard_Real U = sol.X(), V = sol.Y();
myGap = UVFromIso ( P3D, preci, U, V );
// gp_Pnt2d p = ValueOfUV ( P3D, preci );

View File

@ -210,6 +210,18 @@ is
pout : out Array1OfReal from TColStd)
returns Boolean is private;
getLine(me ; points : Array1OfPnt from TColgp;
params : Array1OfReal from TColStd;
points2d: out Array1OfPnt2d from TColgp;
theTol : Real;
IsRecompute: in out Boolean) returns Curve from Geom2d is protected;
---Purpose: Try to approximate 3D curve by Geom2d_Line
-- or Geom2d_BsplineCurve with degree 1 with specified tolerance.
-- points - points obtained from 3d curve.
-- params - parameters corresponding points on 3d curves
-- points2d - 2d points lies on line in parametric space
-- theTol - tolerance used for compare initial points 3d and
-- 3d points obtained from line lying in parameric space of surface
fields

View File

@ -307,7 +307,6 @@ Standard_Boolean ShapeConstruct_ProjectCurveOnSurface::Perform (Handle(Geom_Curv
c2d = InterpolatePCurve (nbPini, thePnts2d, theParams2d, c3d);
// c2d = ApproximatePCurve (nbPini, thePnts2d, theParams2d, c3d);
// Faut-il aussi reprendre la C3D ?
myStatus |= ShapeExtend::EncodeStatus (c2d.IsNull() ? ShapeExtend_FAIL1 : ShapeExtend_DONE2);
return Status (ShapeExtend_DONE);
}
@ -463,6 +462,192 @@ Standard_Boolean ShapeConstruct_ProjectCurveOnSurface::PerformAdvanced (Handle(G
return result;
}
//! Fix possible period jump and handle walking period parameter.
static Standard_Boolean fixPeriodictyTroubles(gp_Pnt2d *thePnt, // pointer to gp_Pnt2d[4] beginning
Standard_Integer theIdx, // Index of objective coord: 1 ~ X, 2 ~ Y
Standard_Real thePeriod) // Period on objective coord
{
Standard_Integer i;
Standard_Boolean isNeedToFix = Standard_True;
for (i = 0; i < 3; i++)
{
Standard_Real aDiff = Abs (thePnt[i].Coord(theIdx) - thePnt[i + 1].Coord(theIdx));
if ( aDiff > Precision::PConfusion() &&
aDiff < thePeriod - Precision::PConfusion())
{
// Walk over period coord -> not walking on another isoline in parameter space.
isNeedToFix = Standard_False;
}
}
if (isNeedToFix)
{
// Walking on isoline on another parameter. Fix period paramter to obtained minimum.
Standard_Real aFixParam = Min (thePnt[0].Coord(theIdx), thePnt[3].Coord(theIdx));
for(i = 0; i < 4; i++)
thePnt[i].SetCoord(theIdx, aFixParam);
}
// Fix possible period jump on first point.
if ( Abs(thePnt[0].Coord(theIdx) - thePnt[1].Coord(theIdx) ) > thePeriod / 2.01)
{
Standard_Real aMult = thePnt[0].Coord(theIdx) < thePnt[1].Coord(theIdx) ? 1.0 : -1.0;
Standard_Real aNewParam = thePnt[0].Coord(theIdx) + aMult * thePeriod;
thePnt[0].SetCoord(theIdx, aNewParam);
return Standard_False;
}
// Fix possible period jump on last point.
if ( Abs(thePnt[2].Coord(theIdx) - thePnt[3].Coord(theIdx) ) > thePeriod / 2.01)
{
Standard_Real aMult = thePnt[3].Coord(theIdx) < thePnt[2].Coord(theIdx) ? 1.0 : -1.0;
Standard_Real aNewParam = thePnt[3].Coord(theIdx) + aMult * thePeriod;
thePnt[3].SetCoord(theIdx, aNewParam);
return Standard_False;
}
return Standard_True;
}
//=======================================================================
//function : getLine
//purpose :
//=======================================================================
Handle(Geom2d_Curve) ShapeConstruct_ProjectCurveOnSurface::getLine(
const TColgp_Array1OfPnt& thepoints,
const TColStd_Array1OfReal& theparams,
TColgp_Array1OfPnt2d& thePnt2ds,
Standard_Real theTol,
Standard_Boolean &isRecompute) const
{
Standard_Integer nb = thepoints.Length();
gp_Pnt aP[4];
aP[0] = thepoints(1);
aP[1] = thepoints(2);
aP[2] = thepoints(nb - 1);
aP[3] = thepoints(nb);
gp_Pnt2d aP2d[4];
Standard_Integer i = 0;
Standard_Real aTol2 = theTol * theTol;
Standard_Boolean isPeriodicU = mySurf->Surface()->IsUPeriodic();
Standard_Boolean isPeriodicV = mySurf->Surface()->IsVPeriodic();
// Workaround:
// Protection against bad "tolerance" shapes.
if (aTol2 > 1.0)
{
theTol = Precision::Confusion();
aTol2 = theTol * theTol;
}
Standard_Real anOldTol2 = aTol2;
// project first and last points
for( ; i < 4; i +=3)
{
Standard_Integer j;
for ( j=0; j < myNbCashe; j++ )
if ( myCashe3d[j].SquareDistance (aP[i] ) < aTol2)
{
aP2d[i] = mySurf->NextValueOfUV (myCashe2d[j], aP[i], theTol,
theTol);
break;
}
if ( j >= myNbCashe )
aP2d[i] = mySurf->ValueOfUV(aP[i], theTol);
Standard_Real aDist = mySurf->Gap();
Standard_Real aCurDist = aDist * aDist;
if( aTol2 < aDist * aDist)
aTol2 = aCurDist;
}
if ( isPeriodicU || isPeriodicV )
{
// Compute second and last but one c2d points.
for(i = 1; i < 3; i++)
{
Standard_Integer j;
for ( j=0; j < myNbCashe; j++ )
if ( myCashe3d[j].SquareDistance (aP[i] ) < aTol2)
{
aP2d[i] = mySurf->NextValueOfUV (myCashe2d[j], aP[i], theTol, theTol);
break;
}
if ( j >= myNbCashe )
aP2d[i] = mySurf->ValueOfUV(aP[i], theTol);
Standard_Real aDist = mySurf->Gap();
Standard_Real aCurDist = aDist * aDist;
if( aTol2 < aDist * aDist)
aTol2 = aCurDist;
}
if (isPeriodicU)
{
isRecompute = fixPeriodictyTroubles(&aP2d[0], 1 /* X Coord */, mySurf->Surface()->UPeriod());
}
if (isPeriodicV)
{
isRecompute = fixPeriodictyTroubles(&aP2d[0], 2 /* Y Coord */, mySurf->Surface()->VPeriod());
}
}
thePnt2ds.SetValue(1, aP2d[0]);
thePnt2ds.SetValue(nb, aP2d[3]);
// Restore old tolerance in 2d space to avoid big gap cases.
aTol2 = anOldTol2;
// Check that straight line in 2d with parameterisation as in 3d will fit
// fit 3d curve at all points.
Standard_Real dPar = theparams(nb) - theparams(1);
if ( Abs(dPar) < Precision::PConfusion() )
return 0;
gp_Vec2d aVec0 (aP2d[0], aP2d[3]);
gp_Vec2d aVec = aVec0 / dPar;
Standard_Real aFirstPointDist = mySurf->Surface()->Value(aP2d[0].X(), aP2d[0].Y()).
SquareDistance(thepoints(1));
for(i = 2; i < nb; i++)
{
gp_XY aCurPoint = aP2d[0].XY() + aVec.XY() * (theparams(i) - theparams(1));
gp_Pnt aCurP;
mySurf->Surface()->D0(aCurPoint.X(), aCurPoint.Y(), aCurP);
Standard_Real aDist1 = aCurP.SquareDistance(thepoints(i));
if(Abs (aFirstPointDist - aDist1) > aTol2)
return 0;
}
// check if pcurve can be represented by Geom2d_Line (parameterised by length)
Standard_Real aLLength = aVec0.Magnitude();
if ( Abs (aLLength - dPar) <= Precision::PConfusion() )
{
gp_XY aDirL = aVec0.XY() / aLLength;
gp_Pnt2d aPL (aP2d[0].XY() - theparams(1) * aDirL);
return new Geom2d_Line (aPL, gp_Dir2d(aDirL));
}
// create straight bspline
TColgp_Array1OfPnt2d aPoles(1, 2);
aPoles(1) = aP2d[0];
aPoles(2) = aP2d[3];
TColStd_Array1OfReal aKnots(1,2);
aKnots(1) = theparams(1);
aKnots(2) = theparams(theparams.Length());
TColStd_Array1OfInteger aMults(1,2);
aMults(1) = 2;
aMults(2) = 2;
Standard_Integer aDegree = 1;
Handle(Geom2d_BSplineCurve) abspl2d =
new Geom2d_BSplineCurve (aPoles, aKnots, aMults, aDegree);
return abspl2d;
}
//=======================================================================
//function : ApproxPCurve
//purpose :
@ -474,8 +659,14 @@ Standard_Boolean ShapeConstruct_ProjectCurveOnSurface::PerformAdvanced (Handle(G
TColgp_Array1OfPnt2d& pnt2d,
Handle(Geom2d_Curve)& c2d)
{
// for performance, first try to handle typical case when pcurve is straight
Standard_Boolean isRecompute = Standard_False;
c2d = getLine(points, params, pnt2d, myPreci, isRecompute);
if(!c2d.IsNull())
{
return Standard_True;
}
Standard_Boolean isDone = Standard_True;
// test if the curve 3d is a boundary of the surface
// (only for Bezier or BSpline surface)
@ -628,17 +819,29 @@ Standard_Boolean ShapeConstruct_ProjectCurveOnSurface::PerformAdvanced (Handle(G
if ( (i == 1) && p1OnIso) p2d = valueP1;
else if( (i == nbrPnt) && p2OnIso) p2d = valueP2;
else {// general case (not an iso) mais attention aux singularites !
if ( ii==1 ) {
// first and last points are already computed by getLine()
if ( (i == 1 || i == nbrPnt))
{
if (!isRecompute)
{
p2d = pnt2d(i);
gap = mySurf->Gap();
continue;
}
else
{
//:q9 abv 23 Mar 99: use cashe as 1st approach
Standard_Integer j; // svv #1
for ( j=0; j < myNbCashe; j++ )
if ( myCashe3d[j].SquareDistance ( p3d ) < myPreci*myPreci ) {
if ( myCashe3d[j].SquareDistance ( p3d ) < myPreci*myPreci )
{
p2d = mySurf->NextValueOfUV (myCashe2d[j], p3d, myPreci,
Precision::Confusion()+gap);
break;
}
if ( j >= myNbCashe ) p2d = mySurf->ValueOfUV(p3d, myPreci);
}
}
else {
p2d = mySurf->NextValueOfUV (p2d, p3d, myPreci, //:S4030: optimizing
Precision::Confusion()+1000*gap); //:q1
@ -964,21 +1167,6 @@ Standard_Boolean ShapeConstruct_ProjectCurveOnSurface::PerformAdvanced (Handle(G
myCashe2d[1] = pnt2d(1);
myCashe2d[0] = pnt2d(nbrPnt);
}
if (isoParam && isoPar2d3d) {
// create directly isoparametrics (PCurve)
gp_Vec2d aVec2d(valueP1, valueP2);
gp_Dir2d aDir2d(aVec2d);
gp_Pnt2d P0;
if (isoTypeU) P0.SetCoord(valueP1.X(), valueP1.Y() - params(1)*aDir2d.Y());
else P0.SetCoord(valueP1.X() - params(1)*aDir2d.X(), valueP1.Y());
c2d = new Geom2d_Line(P0, aDir2d);
}
return isDone;
}
@ -1432,7 +1620,7 @@ Handle(Geom_Curve) ShapeConstruct_ProjectCurveOnSurface::InterpolateCurve3d(cons
if (mp[0] > 0 &&
( ! p1OnIso || currd2[0] < mind2[0] ) ) {
p1OnIso = Standard_True;
mind2[0] = currd2[0];
mind2[0] = currd2[0]; // LP2.stp #105899: FLT_INVALID_OPERATION on Windows 7 VC 9 Release mode on the whole file
if (isoU) valueP1.SetCoord(isoVal, tp[0]);
else valueP1.SetCoord(tp[0], isoVal);
}

View File

@ -491,18 +491,6 @@ Standard_Boolean ShapeFix_Edge::FixAddPCurve (const TopoDS_Edge& edge,
// step = 2;
// adding by skl 28.03.2003 for usung Line instead of BSpline
Standard_Real fp=0.,lp=0.;
Standard_Boolean isLine=Standard_False;
if(c2d->IsKind(STANDARD_TYPE(Geom2d_TrimmedCurve))) {
Handle(Geom2d_TrimmedCurve) tc = Handle(Geom2d_TrimmedCurve)::DownCast(c2d);
if(tc->BasisCurve()->IsKind(STANDARD_TYPE(Geom2d_Line))) {
fp = tc->FirstParameter();
lp = tc->LastParameter();
isLine = Standard_True;
}
}
if (isSeam) {
// On ne sait pas laquelle est Forward. Au PIF. La geometrie Forward
// sera mise a jour dans ComputeWire
@ -538,12 +526,6 @@ Standard_Boolean ShapeFix_Edge::FixAddPCurve (const TopoDS_Edge& edge,
B.UpdateEdge (edge,c2d,surf,location, 0.); //#82 rln 16.03.99: preci
}
if ( isLine ) {
B.Range(edge,surf,location,fp,lp);
B.SameParameter(edge,Standard_False);
B.SameRange(edge,Standard_False);
}
// Conclusion
// step = 3;
if ( myProjector->Status ( ShapeExtend_DONE3 ) ) {

View File

@ -5,6 +5,7 @@ puts ""
##################################################
# Improve FixShape to correct case of touching wires
##################################################
puts "TODO CR22598 ALL: Faulty shapes in variables faulty_1 to faulty_"
pload XDE

View File

@ -15,14 +15,14 @@ testreadstep [locate_data_file OCC22145.stp] result
set square 205444
set nb_v_good 3344
set nb_e_good 4685
set nb_e_good 4679
set nb_w_good 1943
set nb_f_good 1943
set nb_sh_good 1
set nb_sol_good 1
set nb_compsol_good 0
set nb_compound_good 2
set nb_shape_good 11919
set nb_shape_good 11913
vinit
tclean result

View File

@ -1,5 +1,3 @@
puts "TODO OCC25583 ALL: Faulty shapes in variables faulty_1 to faulty_"
puts "========================"
puts " OCC55 "
puts "========================"

View File

@ -7,9 +7,9 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 169 ( 430 ) Summary = 169 ( 430 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 674 ( 674 ) Summary = 9628 ( 9625 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 674 ( 674 ) Summary = 9627 ( 9625 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 674 ( 674 ) FreeWire = 0 ( 0 ) FreeEdge = 28 ( 28 ) SharedEdge = 4104 ( 4104 )
TOLERANCE : MaxTol = 0.483503583 ( 0.4835035831 ) AvgTol = 0.00204387873 ( 0.002030701378 )
TOLERANCE : MaxTol = 0.483503583 ( 0.4835035831 ) AvgTol = 0.00303544578 ( 0.003024564929 )
LABELS : N0Labels = 702 ( 702 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 702 ( 702 ) NameLabels = 702 ( 702 ) ColorLabels = 16 ( 16 ) LayerLabels = 702 ( 702 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 129 ( 71 ) Summary = 129 ( 71
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 1 ) Shell = 0 ( 1 ) Face = 180 ( 180 ) Summary = 2185 ( 1096 )
STATSHAPE : Solid = 0 ( 1 ) Shell = 0 ( 1 ) Face = 180 ( 180 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 912 ( 457 )
TOLERANCE : MaxTol = 0.02358959588 ( 0.02358723715 ) AvgTol = 0.0007627425938 ( 0.001634419614 )
TOLERANCE : MaxTol = 0.04953179108 ( 0.04952733504 ) AvgTol = 0.005022224409 ( 0.01224482043 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 180 ( 180 ) N2Labels = 0 ( 0 ) TotalLabels = 181 ( 181 ) NameLabels = 181 ( 181 ) ColorLabels = 180 ( 180 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -8,9 +8,9 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 156 ( 818 ) Summary = 156 ( 818 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 282 ( 282 ) Summary = 4898 ( 4898 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 282 ( 282 ) FreeWire = 0 ( 0 ) FreeEdge = 7 ( 7 ) SharedEdge = 2170 ( 2170 )
TOLERANCE : MaxTol = 0.8210384396 ( 0.821038439 ) AvgTol = 0.006791053813 ( 0.00686200517 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 282 ( 282 ) Summary = 4886 ( 4886 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 282 ( 282 ) FreeWire = 0 ( 0 ) FreeEdge = 7 ( 7 ) SharedEdge = 2158 ( 2158 )
TOLERANCE : MaxTol = 0.8210384396 ( 0.821038439 ) AvgTol = 0.008238191769 ( 0.008314230694 )
LABELS : N0Labels = 289 ( 289 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 289 ( 289 ) NameLabels = 289 ( 289 ) ColorLabels = 101 ( 101 ) LayerLabels = 288 ( 288 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 2 ( 8 )

View File

@ -8,8 +8,8 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 1 ) Summary = 0 ( 1 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 94 ) Summary = 0 ( 94 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 90 ( 90 ) Summary = 1161 ( 1155 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 90 ( 90 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 502 ( 496 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 90 ( 90 ) Summary = 1157 ( 1151 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 90 ( 90 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 498 ( 492 )
TOLERANCE : MaxTol = 0.0004488403826 ( 0.0004487950678 ) AvgTol = 5.999008312e-006 ( 6.427182608e-006 )
LABELS : N0Labels = 3 ( 6 ) N1Labels = 90 ( 90 ) N2Labels = 0 ( 0 ) TotalLabels = 93 ( 96 ) NameLabels = 3 ( 6 ) ColorLabels = 90 ( 90 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 18 ( 62 ) Summary = 18 ( 62 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 230 ( 230 ) Summary = 2910 ( 2906 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 230 ( 230 ) FreeWire = 1 ( 1 ) FreeEdge = 63 ( 63 ) SharedEdge = 1195 ( 1193 )
TOLERANCE : MaxTol = 0.06012224669 ( 0.1346852729 ) AvgTol = 0.001230721372 ( 0.001407061098 )
TOLERANCE : MaxTol = 0.06012224669 ( 0.1346852729 ) AvgTol = 0.001347528763 ( 0.001523930617 )
LABELS : N0Labels = 292 ( 292 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 292 ( 292 ) NameLabels = 292 ( 292 ) ColorLabels = 291 ( 292 ) LayerLabels = 247 ( 248 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 4 ( 4 )

View File

@ -12,7 +12,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 146 ( 887 ) Summary = 146 ( 88
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 221 ( 221 ) Summary = 13351 ( 13351 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 221 ( 221 ) FreeWire = 0 ( 0 ) FreeEdge = 6 ( 6 ) SharedEdge = 6452 ( 6452 )
TOLERANCE : MaxTol = 0.01205458838 ( 0.01098786532 ) AvgTol = 6.578043174e-005 ( 6.481652011e-005 )
TOLERANCE : MaxTol = 0.01225213609 ( 0.01098786532 ) AvgTol = 0.0001816430452 ( 0.0001806163302 )
LABELS : N0Labels = 232 ( 232 ) N1Labels = 0 ( 6521 ) N2Labels = 0 ( 0 ) TotalLabels = 232 ( 6753 ) NameLabels = 232 ( 347 ) ColorLabels = 227 ( 6753 ) LayerLabels = 227 ( 6753 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 347 ( 691 ) Summary = 347 ( 69
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2297 ( 2297 ) Summary = 26114 ( 26114 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2297 ( 2297 ) FreeWire = 0 ( 0 ) FreeEdge = 22 ( 22 ) SharedEdge = 10774 ( 10774 )
TOLERANCE : MaxTol = 0.2778575821 ( 0.2778575802 ) AvgTol = 0.0007983843446 ( 0.0007904430744 )
TOLERANCE : MaxTol = 0.2778575821 ( 0.2778575802 ) AvgTol = 0.00113643717 ( 0.001128576508 )
LABELS : N0Labels = 2329 ( 2329 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 2329 ( 2329 ) NameLabels = 2329 ( 2329 ) ColorLabels = 2319 ( 2329 ) LayerLabels = 2319 ( 2329 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 8 ( 8 )

View File

@ -8,8 +8,8 @@ set ref_data {
DATA : Faulties = 0 ( 1 ) Warnings = 0 ( 0 ) Summary = 0 ( 1 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 3 ( 183 ) Summary = 3 ( 183 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 98 ( 98 ) Summary = 2690 ( 2687 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 98 ( 98 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 1244 ( 1243 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 98 ( 98 ) Summary = 2688 ( 2687 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 98 ( 98 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 1243 ( 1243 )
TOLERANCE : MaxTol = 0.009955692634 ( 0.009955692464 ) AvgTol = 0.0008509893784 ( 0.0008531522552 )
LABELS : N0Labels = 97 ( 97 ) N1Labels = 2 ( 102 ) N2Labels = 0 ( 0 ) TotalLabels = 99 ( 199 ) NameLabels = 97 ( 97 ) ColorLabels = 98 ( 199 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 12 ( 485 ) Summary = 12 ( 485
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 239 ( 239 ) Summary = 4786 ( 4768 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 239 ( 239 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 2151 ( 2144 )
TOLERANCE : MaxTol = 0.0006563832817 ( 0.0006563832817 ) AvgTol = 2.900975685e-005 ( 2.941852737e-005 )
TOLERANCE : MaxTol = 0.0009886042946 ( 0.0009885051926 ) AvgTol = 5.777641061e-005 ( 5.821884006e-005 )
LABELS : N0Labels = 237 ( 237 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 237 ( 237 ) NameLabels = 237 ( 237 ) ColorLabels = 0 ( 0 ) LayerLabels = 236 ( 237 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -11,7 +11,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 68 ( 594 ) Summary = 68 ( 594
CHECKSHAPE : Wires = 1 ( 3 ) Faces = 1 ( 2 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 457 ( 457 ) Summary = 10476 ( 10473 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 457 ( 457 ) FreeWire = 26 ( 26 ) FreeEdge = 1283 ( 1283 ) SharedEdge = 4133 ( 4130 )
TOLERANCE : MaxTol = 0.9875148267 ( 0.98741607 ) AvgTol = 0.01634290864 ( 0.01654218425 )
TOLERANCE : MaxTol = 0.9875148267 ( 0.98741607 ) AvgTol = 0.0166905215 ( 0.01689161447 )
LABELS : N0Labels = 1706 ( 1706 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1706 ( 1706 ) NameLabels = 1706 ( 1706 ) ColorLabels = 1680 ( 1706 ) LayerLabels = 1680 ( 1706 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 4 ( 4 )

View File

@ -11,7 +11,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 88 ( 75 ) Summary = 88 ( 75 )
CHECKSHAPE : Wires = 1 ( 1 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 1 ) Shell = 0 ( 1 ) Face = 320 ( 320 ) Summary = 4995 ( 4896 )
STATSHAPE : Solid = 0 ( 1 ) Shell = 0 ( 1 ) Face = 320 ( 320 ) FreeWire = 0 ( 0 ) FreeEdge = 218 ( 218 ) SharedEdge = 2066 ( 2024 )
TOLERANCE : MaxTol = 0.9408369253 ( 1.136317349 ) AvgTol = 0.0339705896 ( 0.03797247772 )
TOLERANCE : MaxTol = 0.9408369253 ( 1.136317349 ) AvgTol = 0.03468777686 ( 0.04030133427 )
LABELS : N0Labels = 521 ( 521 ) N1Labels = 18 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 539 ( 521 ) NameLabels = 521 ( 521 ) ColorLabels = 537 ( 521 ) LayerLabels = 455 ( 439 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 4 ( 4 )

View File

@ -7,11 +7,11 @@ set filename brazo1.igs
set ref_data {
DATA : Faulties = 0 ( 2 ) Warnings = 0 ( 0 ) Summary = 0 ( 2 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 144 ( 455 ) Summary = 144 ( 455 )
CHECKSHAPE : Wires = 5 ( 7 ) Faces = 6 ( 7 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 228 ( 228 ) Summary = 4666 ( 4567 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 228 ( 228 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 2127 ( 2073 )
CHECKSHAPE : Wires = 6 ( 8 ) Faces = 6 ( 8 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 223 ( 223 ) Summary = 4688 ( 4576 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 223 ( 223 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 2156 ( 2092 )
TOLERANCE : MaxTol = 0.991254355 ( 0.991254355 ) AvgTol = 0.0113074551 ( 0.01224298461 )
LABELS : N0Labels = 223 ( 223 ) N1Labels = 6 ( 301 ) N2Labels = 0 ( 0 ) TotalLabels = 229 ( 524 ) NameLabels = 223 ( 387 ) ColorLabels = 228 ( 524 ) LayerLabels = 228 ( 524 )
LABELS : N0Labels = 223 ( 223 ) N1Labels = 0 ( 256 ) N2Labels = 0 ( 0 ) TotalLabels = 223 ( 479 ) NameLabels = 223 ( 388 ) ColorLabels = 223 ( 479 ) LayerLabels = 223 ( 479 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 3 ( 3 )
COLORS : Colors = BLUE1 MAGENTA1 YELLOW ( BLUE1 MAGENTA1 YELLOW )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 38 ( 183 ) Summary = 38 ( 183
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 114 ( 114 ) Summary = 2511 ( 2510 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 114 ( 114 ) FreeWire = 23 ( 23 ) FreeEdge = 331 ( 331 ) SharedEdge = 983 ( 983 )
TOLERANCE : MaxTol = 0.1829958579 ( 0.1829958769 ) AvgTol = 0.002970769325 ( 0.003040791402 )
TOLERANCE : MaxTol = 0.1829958579 ( 0.1829958769 ) AvgTol = 0.003259834421 ( 0.003329232309 )
LABELS : N0Labels = 412 ( 412 ) N1Labels = 2 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 414 ( 412 ) NameLabels = 412 ( 412 ) ColorLabels = 389 ( 410 ) LayerLabels = 389 ( 410 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 5 ( 5 )

View File

@ -1,14 +1,14 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: LABELS : Faulty"
puts "TODO CR23096 ALL: COLORS : Faulty"
puts "TODO CR22598 ALL: CHECKSHAPE : Faulty"
set filename 919-001-T02-04-CP-VL.igs
set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 98 ( 1376 ) Summary = 98 ( 1376 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 1 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 899 ( 899 ) Summary = 24042 ( 24038 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 899 ( 899 ) FreeWire = 366 ( 366 ) FreeEdge = 3783 ( 3783 ) SharedEdge = 9390 ( 9388 )
TOLERANCE : MaxTol = 0.3151652209 ( 0.3151652209 ) AvgTol = 0.0006858150184 ( 0.000729734612 )

View File

@ -9,9 +9,9 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 211 ( 2186 ) Summary = 211 ( 2186 )
CHECKSHAPE : Wires = 0 ( 1 ) Faces = 0 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 872 ( 872 ) Summary = 30412 ( 30408 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 872 ( 872 ) FreeWire = 39 ( 39 ) FreeEdge = 979 ( 979 ) SharedEdge = 14224 ( 14222 )
TOLERANCE : MaxTol = 0.9989623361 ( 0.9989623361 ) AvgTol = 0.008004743627 ( 0.008006427388 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 872 ( 872 ) Summary = 30411 ( 30408 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 872 ( 872 ) FreeWire = 39 ( 39 ) FreeEdge = 979 ( 979 ) SharedEdge = 14223 ( 14222 )
TOLERANCE : MaxTol = 0.9989623361 ( 0.9989623361 ) AvgTol = 0.00936440041 ( 0.009365667686 )
LABELS : N0Labels = 1063 ( 1063 ) N1Labels = 0 ( 1675 ) N2Labels = 0 ( 0 ) TotalLabels = 1063 ( 2738 ) NameLabels = 1063 ( 1644 ) ColorLabels = 1024 ( 2738 ) LayerLabels = 1024 ( 2738 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 4 ( 5 )

View File

@ -7,10 +7,10 @@ set filename BUC60743.igs
set ref_data {
DATA : Faulties = 0 ( 2 ) Warnings = 0 ( 0 ) Summary = 0 ( 2 )
TPSTAT : Faulties = 3 ( 59 ) Warnings = 2203 ( 4655 ) Summary = 2206 ( 4714 )
CHECKSHAPE : Wires = 7 ( 16 ) Faces = 6 ( 11 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3349 ( 2837 ) Summary = 45817 ( 39080 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3349 ( 3349 ) FreeWire = 6 ( 6 ) FreeEdge = 67 ( 67 ) SharedEdge = 19532 ( 16687 )
TOLERANCE : MaxTol = 4.854604894 ( 5.769095076 ) AvgTol = 0.01611269216 ( 0.01730055221 )
CHECKSHAPE : Wires = 7 ( 17 ) Faces = 7 ( 12 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3349 ( 2837 ) Summary = 45816 ( 39080 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3349 ( 3349 ) FreeWire = 6 ( 6 ) FreeEdge = 67 ( 67 ) SharedEdge = 19531 ( 16687 )
TOLERANCE : MaxTol = 4.854604894 ( 5.769095076 ) AvgTol = 0.01628658326 ( 0.01747356296 )
LABELS : N0Labels = 11 ( 11 ) N1Labels = 2891 ( 6256 ) N2Labels = 0 ( 0 ) TotalLabels = 2902 ( 6267 ) NameLabels = 2900 ( 5879 ) ColorLabels = 2891 ( 6256 ) LayerLabels = 2411 ( 5261 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 4 ( 4 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 9 ) Warnings = 110 ( 1040 ) Summary = 110 ( 1
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 622 ( 311 ) Summary = 23710 ( 11832 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 622 ( 622 ) FreeWire = 816 ( 816 ) FreeEdge = 4824 ( 4824 ) SharedEdge = 10126 ( 5051 )
TOLERANCE : MaxTol = 0.6358507691 ( 4.452024967 ) AvgTol = 0.002687669987 ( 0.00407957753 )
TOLERANCE : MaxTol = 0.6427268663 ( 4.452116544 ) AvgTol = 0.01239717192 ( 0.01380706073 )
LABELS : N0Labels = 7 ( 7 ) N1Labels = 379 ( 3264 ) N2Labels = 0 ( 0 ) TotalLabels = 386 ( 3271 ) NameLabels = 386 ( 1010 ) ColorLabels = 381 ( 3266 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -2,6 +2,7 @@
puts "TODO CR23096 ALL: CHECKSHAPE : Faulty"
puts "TODO CR23096 ALL: LABELS : Faulty"
puts "TODO CR23096 ALL: COLORS : Faulty"
puts "TODO CR23096 ALL: NBSHAPES : Faulty"
set LinuxDiff 2
set LinuxFaulties {NBSHAPES}
@ -10,9 +11,9 @@ set filename CTS18547.igs
set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 49 ) Warnings = 41 ( 1012 ) Summary = 41 ( 1061 )
CHECKSHAPE : Wires = 1 ( 0 ) Faces = 1 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 539 ( 539 ) Summary = 12802 ( 12800 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 539 ( 539 ) FreeWire = 19 ( 21 ) FreeEdge = 1864 ( 1864 ) SharedEdge = 4959 ( 4957 )
CHECKSHAPE : Wires = 1 ( 1 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 539 ( 539 ) Summary = 12798 ( 12800 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 539 ( 539 ) FreeWire = 19 ( 21 ) FreeEdge = 1864 ( 1864 ) SharedEdge = 4957 ( 4957 )
TOLERANCE : MaxTol = 0.7510769849 ( 0.7510769849 ) AvgTol = 0.006853010548 ( 0.007168795519 )
LABELS : N0Labels = 65 ( 65 ) N1Labels = 2112 ( 4351 ) N2Labels = 0 ( 0 ) TotalLabels = 2177 ( 4416 ) NameLabels = 2177 ( 2778 ) ColorLabels = 2123 ( 4366 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -1,7 +1,7 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
puts "TODO CR23096 ALL: STATSHAPE : Faulty"
puts "TODO CR23096 ALL: LABELS : Faulty"
puts "TODO 0025623 ALL: CHECKSHAPE : Faulty"
set LinuxDiff 3
set filename Amino_172448-65210.igs
@ -9,9 +9,9 @@ set filename Amino_172448-65210.igs
set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 56 ( 12 ) Summary = 56 ( 12 )
CHECKSHAPE : Wires = 0 ( 1 ) Faces = 0 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2346 ( 1106 ) Summary = 59781 ( 25969 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2346 ( 2342 ) FreeWire = 2328 ( 2328 ) FreeEdge = 14016 ( 14016 ) SharedEdge = 24556 ( 10687 )
CHECKSHAPE : Wires = 2 ( 1 ) Faces = 2 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2342 ( 1106 ) Summary = 59777 ( 25969 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 2342 ( 2342 ) FreeWire = 2328 ( 2328 ) FreeEdge = 14016 ( 14016 ) SharedEdge = 24558 ( 10687 )
TOLERANCE : MaxTol = 0.9711309062 ( 0.9711309063 ) AvgTol = 0.01916076754 ( 0.01948753951 )
LABELS : N0Labels = 250 ( 250 ) N1Labels = 2268 ( 3205 ) N2Labels = 0 ( 0 ) TotalLabels = 2518 ( 3455 ) NameLabels = 2518 ( 3453 ) ColorLabels = 2512 ( 3449 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: CHECKSHAPE : Faulty"
puts "TODO CR23096 ALL: NBSHAPES : Faulty"
puts "TODO CR23096 ALL: LABELS : Faulty"
puts "TODO CR23096 ALL: LAYERS : Faulty"
@ -12,8 +11,8 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 480 ) Warnings = 322 ( 4629 ) Summary = 322 ( 5109 )
CHECKSHAPE : Wires = 1 ( 0 ) Faces = 1 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 732 ( 732 ) Summary = 60881 ( 60890 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 732 ( 732 ) FreeWire = 1612 ( 1613 ) FreeEdge = 16359 ( 16359 ) SharedEdge = 22931 ( 22935 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 732 ( 732 ) Summary = 60876 ( 60888 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 732 ( 732 ) FreeWire = 1612 ( 1613 ) FreeEdge = 16359 ( 16359 ) SharedEdge = 22927 ( 22933 )
TOLERANCE : MaxTol = 0.6032674714 ( 0.6032674714 ) AvgTol = 0.001483351096 ( 0.00148733059 )
LABELS : N0Labels = 4 ( 7 ) N1Labels = 11017 ( 17868 ) N2Labels = 0 ( 0 ) TotalLabels = 11021 ( 17875 ) NameLabels = 10620 ( 13085 ) ColorLabels = 11018 ( 17867 ) LayerLabels = 10517 ( 17715 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -11,9 +11,9 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 2 ( 0 ) Warnings = 85 ( 295 ) Summary = 87 ( 295 )
CHECKSHAPE : Wires = 8 ( 13 ) Faces = 8 ( 13 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 419 ( 419 ) Summary = 5330 ( 5352 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 419 ( 419 ) Summary = 5330 ( 5351 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 419 ( 419 ) FreeWire = 4 ( 4 ) FreeEdge = 42 ( 42 ) SharedEdge = 2221 ( 2227 )
TOLERANCE : MaxTol = 4.549042095 ( 4.543567878 ) AvgTol = 0.03220479855 ( 0.03563724531 )
TOLERANCE : MaxTol = 4.548096104 ( 4.543567878 ) AvgTol = 0.03300579563 ( 0.03647254811 )
LABELS : N0Labels = 457 ( 457 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 457 ( 457 ) NameLabels = 457 ( 457 ) ColorLabels = 451 ( 455 ) LayerLabels = 453 ( 457 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 2 ( 2 )

View File

@ -1,5 +1,8 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: LABELS : Faulty"
puts "TODO CR23096 ALL: TOLERANCE : Faulty"
puts "TODO CR23096 ALL: NBSHAPES : Faulty"
puts "TODO CR23096 ALL: CHECKSHAPE : Faulty"
set LinuxDiff 1
set filename PRO14323.igs
@ -8,9 +11,9 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 29 ( 233 ) Summary = 29 ( 233 )
CHECKSHAPE : Wires = 1 ( 1 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 153 ( 153 ) Summary = 3509 ( 3508 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 153 ( 153 ) FreeWire = 21 ( 21 ) FreeEdge = 435 ( 435 ) SharedEdge = 1387 ( 1387 )
TOLERANCE : MaxTol = 0.7766762288 ( 0.7767538966 ) AvgTol = 0.01313632194 ( 0.01322061361 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 153 ( 153 ) Summary = 3497 ( 3504 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 153 ( 153 ) FreeWire = 21 ( 21 ) FreeEdge = 435 ( 435 ) SharedEdge = 1380 ( 1384 )
TOLERANCE : MaxTol = 0.9672552763 ( 0.9530871146 ) AvgTol = 0.01866948774 ( 0.01940759381 )
LABELS : N0Labels = 564 ( 564 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 564 ( 564 ) NameLabels = 564 ( 564 ) ColorLabels = 543 ( 564 ) LayerLabels = 543 ( 564 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 2 ( 2 )

View File

@ -1,6 +1,7 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: LABELS : Faulty"
puts "TODO CR23096 ALL: COLORS : Faulty"
puts "TODO 0025623 ALL: CHECKSHAPE : Faulty"
set filename PRO19800.igs
@ -8,9 +9,9 @@ set filename PRO19800.igs
set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 1 ) Summary = 0 ( 1 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 ) Summary = 11 ( 11 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 5 ( 5 )
CHECKSHAPE : Wires = 1 ( 0 ) Faces = 1 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 ) Summary = 13 ( 11 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1 ( 1 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 6 ( 5 )
TOLERANCE : MaxTol = 0.04476902169 ( 0.04476636368 ) AvgTol = 0.02402039477 ( 0.02401933664 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 5 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 6 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 6 ) LayerLabels = 1 ( 6 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 2 ) Warnings = 0 ( 48 ) Summary = 0 ( 50 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 12 ( 6 ) Summary = 743 ( 624 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 12 ( 12 ) FreeWire = 40 ( 40 ) FreeEdge = 188 ( 188 ) SharedEdge = 296 ( 242 )
TOLERANCE : MaxTol = 0.2600681266 ( 7.241630725 ) AvgTol = 0.0311002192 ( 0.4059717949 )
TOLERANCE : MaxTol = 0.2600681266 ( 7.241630725 ) AvgTol = 0.03297721346 ( 0.4073375928 )
LABELS : N0Labels = 7 ( 7 ) N1Labels = 44 ( 98 ) N2Labels = 0 ( 0 ) TotalLabels = 51 ( 105 ) NameLabels = 51 ( 97 ) ColorLabels = 50 ( 104 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 2 ( 2 )

View File

@ -10,8 +10,8 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 2 ) Warnings = 277 ( 2065 ) Summary = 277 ( 2067 )
CHECKSHAPE : Wires = 0 ( 3 ) Faces = 0 ( 3 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1457 ( 1455 ) Summary = 38865 ( 38834 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1457 ( 1455 ) FreeWire = 516 ( 528 ) FreeEdge = 6208 ( 6208 ) SharedEdge = 15328 ( 15304 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1457 ( 1455 ) Summary = 38866 ( 38834 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1457 ( 1455 ) FreeWire = 516 ( 528 ) FreeEdge = 6208 ( 6208 ) SharedEdge = 15329 ( 15304 )
TOLERANCE : MaxTol = 0.7947997475 ( 0.4653265785 ) AvgTol = 0.001017262894 ( 0.0008404073573 )
LABELS : N0Labels = 5 ( 5 ) N1Labels = 5689 ( 14457 ) N2Labels = 0 ( 0 ) TotalLabels = 5694 ( 14462 ) NameLabels = 5694 ( 7040 ) ColorLabels = 5689 ( 14461 ) LayerLabels = 5689 ( 14461 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -12,9 +12,9 @@ set filename Henri.igs
set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 69 ( 41 ) Summary = 69 ( 41 )
CHECKSHAPE : Wires = 8 ( 2 ) Faces = 8 ( 2 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3592 ( 2312 ) Summary = 112063 ( 71736 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3592 ( 3592 ) FreeWire = 4024 ( 4024 ) FreeEdge = 28849 ( 28849 ) SharedEdge = 44966 ( 28775 )
CHECKSHAPE : Wires = 8 ( 5 ) Faces = 8 ( 5 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3592 ( 2314 ) Summary = 112057 ( 71744 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 3592 ( 3592 ) FreeWire = 4024 ( 4024 ) FreeEdge = 28849 ( 28849 ) SharedEdge = 44964 ( 28779 )
TOLERANCE : MaxTol = 0.9133007093 ( 0.9133008813 ) AvgTol = 0.005629101837 ( 0.005904201197 )
LABELS : N0Labels = 24 ( 24 ) N1Labels = 5153 ( 6559 ) N2Labels = 0 ( 0 ) TotalLabels = 5177 ( 6583 ) NameLabels = 5177 ( 6583 ) ColorLabels = 5153 ( 6559 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -11,9 +11,9 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 2 ) Warnings = 145 ( 1619 ) Summary = 145 ( 1621 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 253 ( 253 ) Summary = 5360 ( 5363 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 253 ( 253 ) Summary = 5359 ( 5363 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 253 ( 253 ) FreeWire = 7 ( 10 ) FreeEdge = 78 ( 78 ) SharedEdge = 2412 ( 2412 )
TOLERANCE : MaxTol = 0.04061865832 ( 0.03139483949 ) AvgTol = 0.0003212756237 ( 0.0002830654529 )
TOLERANCE : MaxTol = 0.04838312754 ( 0.0483782783 ) AvgTol = 0.002925020972 ( 0.002891060102 )
LABELS : N0Labels = 8 ( 8 ) N1Labels = 269 ( 2698 ) N2Labels = 0 ( 0 ) TotalLabels = 277 ( 2706 ) NameLabels = 277 ( 384 ) ColorLabels = 272 ( 2704 ) LayerLabels = 272 ( 2704 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 3 ( 4 )

View File

@ -1,6 +1,5 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: NBSHAPES : Faulty"
puts "TODO CR23096 ALL: TOLERANCE : Faulty"
puts "TODO CR23096 ALL: LABELS : Faulty"
puts "TODO CR23096 ALL: COLORS : Faulty"
@ -12,8 +11,8 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 3 ) Warnings = 274 ( 4465 ) Summary = 274 ( 4468 )
CHECKSHAPE : Wires = 2 ( 2 ) Faces = 3 ( 3 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1628 ( 1628 ) Summary = 39243 ( 39275 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1628 ( 1628 ) FreeWire = 22 ( 26 ) FreeEdge = 135 ( 135 ) SharedEdge = 17944 ( 17947 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1628 ( 1628 ) Summary = 39230 ( 39268 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1628 ( 1628 ) FreeWire = 22 ( 26 ) FreeEdge = 135 ( 135 ) SharedEdge = 17933 ( 17940 )
TOLERANCE : MaxTol = 4.337400808e+088 ( 8.082392835e+086 ) AvgTol = 2.040579288e+085 ( 5.099401401e+083 )
LABELS : N0Labels = 6 ( 6 ) N1Labels = 1643 ( 9638 ) N2Labels = 0 ( 0 ) TotalLabels = 1649 ( 9644 ) NameLabels = 1649 ( 2890 ) ColorLabels = 1645 ( 9643 ) LayerLabels = 489 ( 3997 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -1,7 +1,7 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: LABELS : Faulty"
puts "TODO CR23096 ALL: COLORS : Faulty"
puts "TODO CR23096 ALL: NBSHAPES : Faulty"
set filename ims016.igs
@ -9,8 +9,8 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 120 ( 402 ) Summary = 120 ( 402 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 138 ( 138 ) Summary = 10563 ( 10563 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 138 ( 138 ) FreeWire = 6 ( 6 ) FreeEdge = 353 ( 353 ) SharedEdge = 4949 ( 4949 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 138 ( 138 ) Summary = 10561 ( 10563 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 138 ( 138 ) FreeWire = 6 ( 6 ) FreeEdge = 353 ( 353 ) SharedEdge = 4947 ( 4949 )
TOLERANCE : MaxTol = 0.07559058774 ( 0.07559058772 ) AvgTol = 0.0006486647078 ( 0.0006485486933 )
LABELS : N0Labels = 503 ( 503 ) N1Labels = 0 ( 196 ) N2Labels = 0 ( 0 ) TotalLabels = 503 ( 699 ) NameLabels = 503 ( 503 ) ColorLabels = 470 ( 699 ) LayerLabels = 313 ( 344 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -12,10 +12,10 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 12 ( 238 ) Warnings = 470 ( 2526 ) Summary = 482 ( 2764 )
CHECKSHAPE : Wires = 3 ( 3 ) Faces = 3 ( 3 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1346 ( 1345 ) Summary = 22207 ( 22290 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1346 ( 1345 ) FreeWire = 96 ( 170 ) FreeEdge = 1061 ( 1061 ) SharedEdge = 9265 ( 9275 )
TOLERANCE : MaxTol = 0.8630766579 ( 1.367916315 ) AvgTol = 0.008032623547 ( 0.008257993798 )
LABELS : N0Labels = 27 ( 27 ) N1Labels = 2100 ( 6099 ) N2Labels = 0 ( 0 ) TotalLabels = 2127 ( 6126 ) NameLabels = 2127 ( 2596 ) ColorLabels = 2114 ( 6125 ) LayerLabels = 2114 ( 6125 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1346 ( 1345 ) Summary = 22209 ( 22292 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 1346 ( 1345 ) FreeWire = 96 ( 170 ) FreeEdge = 1061 ( 1061 ) SharedEdge = 9267 ( 9277 )
TOLERANCE : MaxTol = 0.8099726869 ( 1.367966665 ) AvgTol = 0.008047288197 ( 0.008376941947 )
LABELS : N0Labels = 27 ( 27 ) N1Labels = 2100 ( 6101 ) N2Labels = 0 ( 0 ) TotalLabels = 2127 ( 6128 ) NameLabels = 2127 ( 2596 ) ColorLabels = 2114 ( 6127 ) LayerLabels = 2114 ( 6127 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 11 ( 12 )
COLORS : Colors = BLUE1 CYAN1 CYAN2 DARKGOLDENROD GREEN MAGENTA1 PALEVIOLETRED1 RED TURQUOISE2 WHITE YELLOW ( BLUE1 CYAN1 CYAN2 DARKGOLDENROD GRAY53 GREEN MAGENTA1 PALEVIOLETRED1 RED TURQUOISE2 WHITE YELLOW )

View File

@ -11,9 +11,9 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 16 ( 3 ) Warnings = 46 ( 305 ) Summary = 62 ( 308 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 145 ( 145 ) Summary = 3869 ( 3869 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 145 ( 145 ) Summary = 3870 ( 3869 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 145 ( 145 ) FreeWire = 64 ( 64 ) FreeEdge = 617 ( 617 ) SharedEdge = 1627 ( 1627 )
TOLERANCE : MaxTol = 0.0521262172 ( 0.0521264751 ) AvgTol = 0.0004294496628 ( 0.0004227153137 )
TOLERANCE : MaxTol = 0.09719916174 ( 0.09719915743 ) AvgTol = 0.001636226349 ( 0.001630578185 )
LABELS : N0Labels = 2 ( 2 ) N1Labels = 346 ( 756 ) N2Labels = 0 ( 0 ) TotalLabels = 348 ( 758 ) NameLabels = 348 ( 478 ) ColorLabels = 347 ( 757 ) LayerLabels = 336 ( 744 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 2 ( 3 )

View File

@ -8,9 +8,9 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 5745 ( 31066 ) Summary = 5745 ( 31066 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 6500 ( 6500 ) Summary = 158092 ( 158092 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 6500 ( 6500 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 72654 ( 72654 )
TOLERANCE : MaxTol = 0.9560441943 ( 0.9560441934 ) AvgTol = 0.00182443883 ( 0.001822190978 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 6500 ( 6500 ) Summary = 158096 ( 158092 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 6500 ( 6500 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 72656 ( 72654 )
TOLERANCE : MaxTol = 0.9560441943 ( 0.9560441934 ) AvgTol = 0.001956426418 ( 0.001954522593 )
LABELS : N0Labels = 6500 ( 6500 ) N1Labels = 0 ( 25582 ) N2Labels = 0 ( 0 ) TotalLabels = 6500 ( 32082 ) NameLabels = 6500 ( 6500 ) ColorLabels = 6500 ( 32082 ) LayerLabels = 6500 ( 32082 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 42 ( 58 ) Summary = 42 ( 58 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 49 ( 0 ) Face = 49 ( 49 ) Summary = 579 ( 530 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 49 ( 0 ) Face = 49 ( 49 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 220 ( 218 )
TOLERANCE : MaxTol = 0.003591433268 ( 0.003591433268 ) AvgTol = 0.0002622543709 ( 0.0002642585768 )
TOLERANCE : MaxTol = 0.003591433268 ( 0.006121716429 ) AvgTol = 0.0002657130942 ( 0.0004625449099 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
puts "TODO CR23096 ALL: LABELS : Faulty"
@ -11,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 33 ( 32 ) Summary = 33 ( 32 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 8 ( 8 ) Shell = 8 ( 8 ) Face = 101 ( 101 ) Summary = 604 ( 604 )
STATSHAPE : Solid = 11 ( 11 ) Shell = 11 ( 11 ) Face = 134 ( 134 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 221 ( 221 )
TOLERANCE : MaxTol = 0.0002663670698 ( 0.0002663644067 ) AvgTol = 6.037718226e-006 ( 6.059069808e-006 )
TOLERANCE : MaxTol = 0.0002663644062 ( 0.004247215546 ) AvgTol = 6.0376793e-006 ( 9.943585154e-005 )
LABELS : N0Labels = 13 ( 13 ) N1Labels = 18 ( 23 ) N2Labels = 0 ( 5 ) TotalLabels = 31 ( 41 ) NameLabels = 27 ( 27 ) ColorLabels = 12 ( 12 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 3 ( 3 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 4 ( 40 ) Summary = 4 ( 40 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 3 ( 3 ) Shell = 36 ( 3 ) Face = 186 ( 186 ) Summary = 1404 ( 1371 )
STATSHAPE : Solid = 3 ( 3 ) Shell = 36 ( 3 ) Face = 186 ( 186 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 548 ( 548 )
TOLERANCE : MaxTol = 0.00767687178 ( 0.007676871778 ) AvgTol = 0.000146989591 ( 0.0001476364721 )
TOLERANCE : MaxTol = 0.007676795012 ( 0.01770527621 ) AvgTol = 0.0001484581256 ( 0.0002068814634 )
LABELS : N0Labels = 5 ( 5 ) N1Labels = 37 ( 37 ) N2Labels = 0 ( 0 ) TotalLabels = 42 ( 42 ) NameLabels = 9 ( 9 ) ColorLabels = 36 ( 36 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 3 ( 3 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 1 ( 0 ) Face = 1 ( 1 ) Summary = 11 ( 11 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 1 ( 0 ) Face = 1 ( 1 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 4 ( 4 )
TOLERANCE : MaxTol = 0.007328453216 ( 0.007328453217 ) AvgTol = 0.005461043908 ( 0.005461043909 )
TOLERANCE : MaxTol = 0.01553531324 ( 0.04002196131 ) AvgTol = 0.009251748359 ( 0.02246039438 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 1 ( 1 ) N2Labels = 0 ( 0 ) TotalLabels = 2 ( 2 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -1,6 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
puts "TODO CR23096 ALL: TOLERANCE : Faulty"
set filename PRO12761.stp
@ -9,9 +7,9 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 9 ( 3 ) Summary = 9 ( 3 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 2 ( 2 ) Face = 36 ( 36 ) Summary = 282 ( 262 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 2 ( 2 ) Face = 36 ( 36 ) FreeWire = 0 ( 2 ) FreeEdge = 19 ( 19 ) SharedEdge = 108 ( 107 )
TOLERANCE : MaxTol = 0.009538012231 ( 0.006059255816 ) AvgTol = 0.0006604275096 ( 0.0005391951287 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 2 ( 2 ) Face = 36 ( 36 ) Summary = 281 ( 262 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 2 ( 2 ) Face = 36 ( 36 ) FreeWire = 0 ( 2 ) FreeEdge = 19 ( 19 ) SharedEdge = 107 ( 107 )
TOLERANCE : MaxTol = 0.008665713529 ( 0.01506194194 ) AvgTol = 0.0006799119121 ( 0.001501244216 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 2 ( 2 ) N2Labels = 0 ( 0 ) TotalLabels = 5 ( 5 ) NameLabels = 5 ( 5 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: CHECKSHAPE : Faulty"
set filename trj10_b2-id-214.stp
@ -10,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 1 ) Summary = 0 ( 1 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 1 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 221 ( 221 ) Summary = 1398 ( 1397 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 221 ( 221 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 576 ( 576 )
TOLERANCE : MaxTol = 0.009952224089 ( 0.009952224089 ) AvgTol = 0.0006781202362 ( 0.0006785080306 )
TOLERANCE : MaxTol = 0.009952224089 ( 0.009952224089 ) AvgTol = 0.0007250477715 ( 0.000901206859 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 1 ( 1 ) Volume = 1 ( 1 ) Area = 1 ( 1 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
puts "TODO CR23096 ALL: LABELS : Faulty"
@ -11,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 6 ( 1 ) Summary = 6 ( 1 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 52 ( 52 ) Face = 52 ( 52 ) Summary = 1126 ( 942 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 52 ( 52 ) Face = 52 ( 52 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 484 ( 484 )
TOLERANCE : MaxTol = 0.002730674215 ( 0.002730674215 ) AvgTol = 0.0001713195092 ( 0.0002334494908 )
TOLERANCE : MaxTol = 0.002730674215 ( 0.0116718272 ) AvgTol = 0.000209395694 ( 0.001020276868 )
LABELS : N0Labels = 2 ( 2 ) N1Labels = 105 ( 53 ) N2Labels = 0 ( 0 ) TotalLabels = 107 ( 55 ) NameLabels = 3 ( 3 ) ColorLabels = 104 ( 53 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 1 ( 1 ) Volume = 1 ( 1 ) Area = 1 ( 1 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -8,7 +8,7 @@ set filename bm1_sy_exhaust.stp
set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 21 ( 12 ) Summary = 21 ( 12 )
CHECKSHAPE : Wires = 2 ( 0 ) Faces = 2 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
CHECKSHAPE : Wires = 6 ( 1 ) Faces = 6 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 4 ( 4 ) Shell = 4 ( 4 ) Face = 35 ( 35 ) Summary = 289 ( 266 )
STATSHAPE : Solid = 4 ( 4 ) Shell = 4 ( 4 ) Face = 35 ( 35 ) FreeWire = 0 ( 0 ) FreeEdge = 24 ( 24 ) SharedEdge = 103 ( 103 )
TOLERANCE : MaxTol = 6.104502198e-006 ( 1e-005 ) AvgTol = 9.28336616e-007 ( 2.903661931e-006 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
puts "TODO CR23096 ALL: STATSHAPE : Faulty"
@ -11,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 6 ( 1 ) Summary = 6 ( 1 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 5 ( 1 ) Face = 78 ( 78 ) Summary = 510 ( 506 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 5 ( 1 ) Face = 78 ( 78 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 206 ( 206 )
TOLERANCE : MaxTol = 0.005871790092 ( 0.005871790092 ) AvgTol = 0.0001195955053 ( 0.0001195955053 )
TOLERANCE : MaxTol = 0.005871790092 ( 0.01255641392 ) AvgTol = 0.0001232801436 ( 0.0004487678765 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 2 ( 2 ) N2Labels = 0 ( 0 ) TotalLabels = 5 ( 5 ) NameLabels = 5 ( 5 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 1 ( 1 ) Summary = 1 ( 1 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 58 ( 58 ) Face = 58 ( 58 ) Summary = 837 ( 475 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 58 ( 58 ) Face = 58 ( 58 ) FreeWire = 0 ( 16 ) FreeEdge = 16 ( 16 ) SharedEdge = 312 ( 165 )
TOLERANCE : MaxTol = 0.0008167207419 ( 0.000816761578 ) AvgTol = 5.200297581e-005 ( 9.917834779e-005 )
TOLERANCE : MaxTol = 0.0008167207419 ( 0.0009782609385 ) AvgTol = 5.20029758e-005 ( 0.0001030777287 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 60 ( 76 ) N2Labels = 0 ( 0 ) TotalLabels = 63 ( 79 ) NameLabels = 5 ( 5 ) ColorLabels = 58 ( 74 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -12,7 +12,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 9 ( 184 ) Summary = 9 ( 184 )
CHECKSHAPE : Wires = 2 ( 0 ) Faces = 2 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 236 ( 236 ) Summary = 1654 ( 1655 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 236 ( 236 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 653 ( 653 )
TOLERANCE : MaxTol = 0.9036712736 ( 0.004380869839 ) AvgTol = 0.002836223222 ( 0.0001546745731 )
TOLERANCE : MaxTol = 0.9036712736 ( 0.01854047103 ) AvgTol = 0.002851128061 ( 0.0005801792851 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 34 ( 34 ) N2Labels = 0 ( 0 ) TotalLabels = 35 ( 35 ) NameLabels = 1 ( 1 ) ColorLabels = 35 ( 35 ) LayerLabels = 1 ( 1 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 11 ( 11 )

View File

@ -11,7 +11,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) Summary = 369 ( 361 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) FreeWire = 0 ( 0 ) FreeEdge = 7 ( 7 ) SharedEdge = 145 ( 145 )
TOLERANCE : MaxTol = 0.002782235243 ( 0.002782235243 ) AvgTol = 0.0002755630596 ( 0.0002755632068 )
TOLERANCE : MaxTol = 0.002782235243 ( 0.008046428382 ) AvgTol = 0.0002755630596 ( 0.0008383168463 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 7 ( 9 ) N2Labels = 0 ( 0 ) TotalLabels = 10 ( 12 ) NameLabels = 5 ( 5 ) ColorLabels = 5 ( 5 ) LayerLabels = 5 ( 7 )
PROPS : Centroid = 1 ( 1 ) Volume = 1 ( 1 ) Area = 1 ( 1 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 2 ) Summary = 0 ( 2 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 9 ( 9 ) Summary = 73 ( 73 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 9 ( 9 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 31 ( 31 )
TOLERANCE : MaxTol = 0.004821884032 ( 0.004821883985 ) AvgTol = 0.0006277753383 ( 0.0006277753348 )
TOLERANCE : MaxTol = 0.004821884032 ( 0.2046977269 ) AvgTol = 0.0006277936905 ( 0.01292923854 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 14 ( 4 ) Summary = 14 ( 4 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 41 ( 41 ) Summary = 366 ( 345 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 41 ( 41 ) FreeWire = 0 ( 4 ) FreeEdge = 24 ( 24 ) SharedEdge = 147 ( 146 )
TOLERANCE : MaxTol = 0.07980045861 ( 0.07980045861 ) AvgTol = 0.005840669333 ( 0.005686183039 )
TOLERANCE : MaxTol = 0.07980045861 ( 0.07980045861 ) AvgTol = 0.006103158242 ( 0.006647466389 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 2 ( 2 ) N2Labels = 0 ( 0 ) TotalLabels = 5 ( 5 ) NameLabels = 5 ( 5 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 2 ( 2 ) Face = 103 ( 103 ) Summary = 748 ( 720 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 2 ( 2 ) Face = 103 ( 103 ) FreeWire = 0 ( 0 ) FreeEdge = 28 ( 28 ) SharedEdge = 275 ( 275 )
TOLERANCE : MaxTol = 0.07080255958 ( 0.07080255958 ) AvgTol = 0.001643516697 ( 0.001643516697 )
TOLERANCE : MaxTol = 0.07080255958 ( 0.07080255958 ) AvgTol = 0.001643516697 ( 0.002252531923 )
LABELS : N0Labels = 4 ( 4 ) N1Labels = 3 ( 3 ) N2Labels = 0 ( 0 ) TotalLabels = 7 ( 7 ) NameLabels = 7 ( 7 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -4,7 +4,7 @@ set filename bm1_ie_t4.stp
set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 1 ) Summary = 0 ( 1 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
CHECKSHAPE : Wires = 1 ( 1 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 15 ( 15 ) Face = 16 ( 16 ) Summary = 173 ( 173 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 15 ( 15 ) Face = 16 ( 16 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 62 ( 62 )
TOLERANCE : MaxTol = 0.005727453836 ( 0.005727453946 ) AvgTol = 0.001247002689 ( 0.001247002697 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: STATSHAPE : Faulty"
set LinuxDiff 2
set LinuxFaulties {STATSHAPE}
@ -8,9 +7,9 @@ set filename bm1_pe_t4.stp
set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 2 ) Warnings = 19 ( 27 ) Summary = 19 ( 29 )
CHECKSHAPE : Wires = 2 ( 3 ) Faces = 2 ( 3 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 13 ( 12 ) Face = 16 ( 15 ) Summary = 154 ( 151 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 13 ( 12 ) Face = 16 ( 15 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 59 ( 60 )
CHECKSHAPE : Wires = 2 ( 3 ) Faces = 3 ( 3 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 12 ( 12 ) Face = 15 ( 15 ) Summary = 151 ( 151 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 12 ( 12 ) Face = 15 ( 15 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 59 ( 60 )
TOLERANCE : MaxTol = 1562.051497 ( 1562.051497 ) AvgTol = 192.5735494 ( 206.7634854 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )

View File

@ -8,7 +8,7 @@ set filename bm1_sy_lever.stp
set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 11 ( 9 ) Summary = 11 ( 9 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
CHECKSHAPE : Wires = 1 ( 0 ) Faces = 1 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 2 ( 2 ) Shell = 2 ( 2 ) Face = 99 ( 99 ) Summary = 655 ( 656 )
STATSHAPE : Solid = 2 ( 2 ) Shell = 2 ( 2 ) Face = 99 ( 99 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 266 ( 266 )
TOLERANCE : MaxTol = 3.000180002 ( 3.000180002 ) AvgTol = 0.1203601833 ( 0.1203606739 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 7 ( 7 ) Summary = 7 ( 7 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 63 ( 63 ) Summary = 397 ( 397 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 63 ( 63 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 161 ( 161 )
TOLERANCE : MaxTol = 0.003354436772 ( 0.003354436766 ) AvgTol = 9.01049205e-005 ( 9.010492038e-005 )
TOLERANCE : MaxTol = 0.003354436772 ( 0.005782871451 ) AvgTol = 9.01049205e-005 ( 0.0002474592456 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 1 ( 3 ) Summary = 1 ( 3 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 63 ( 63 ) Summary = 397 ( 397 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 63 ( 63 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 161 ( 161 )
TOLERANCE : MaxTol = 0.003354570949 ( 0.003354570942 ) AvgTol = 9.013170155e-005 ( 9.013204232e-005 )
TOLERANCE : MaxTol = 0.003354570949 ( 0.004866377804 ) AvgTol = 9.013170155e-005 ( 0.0002225463723 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 7 ( 7 ) Summary = 7 ( 7 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 63 ( 63 ) Summary = 397 ( 397 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 63 ( 63 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 161 ( 161 )
TOLERANCE : MaxTol = 0.003354436772 ( 0.003354436766 ) AvgTol = 9.01049205e-005 ( 9.010492038e-005 )
TOLERANCE : MaxTol = 0.003354436772 ( 0.005782871451 ) AvgTol = 9.01049205e-005 ( 0.0002474592456 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 1 ( 4 ) Summary = 1 ( 4 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 63 ( 63 ) Summary = 397 ( 397 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 63 ( 63 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 161 ( 161 )
TOLERANCE : MaxTol = 0.003354570949 ( 0.003354570943 ) AvgTol = 9.015270484e-005 ( 9.015342029e-005 )
TOLERANCE : MaxTol = 0.003354570949 ( 0.004866377804 ) AvgTol = 9.015270484e-005 ( 0.000222559965 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -1,6 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
puts "TODO CR23096 ALL: TOLERANCE : Faulty"
set filename bm2_ie_lever-C.stp
@ -11,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 9 ( 7 ) Summary = 9 ( 7 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 51 ( 51 ) Summary = 333 ( 333 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 51 ( 51 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 135 ( 135 )
TOLERANCE : MaxTol = 1.823995648e-006 ( 2.885128872e-007 ) AvgTol = 1.410536468e-007 ( 1.021395759e-007 )
TOLERANCE : MaxTol = 2.885723252e-007 ( 0.005189489581 ) AvgTol = 1.021399653e-007 ( 0.0002274307219 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 12 ( 7 ) Summary = 12 ( 7 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 51 ( 51 ) Summary = 335 ( 335 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 51 ( 51 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 136 ( 136 )
TOLERANCE : MaxTol = 0.000304966156 ( 0.0003049661559 ) AvgTol = 4.358245067e-006 ( 4.319600685e-006 )
TOLERANCE : MaxTol = 0.000304966156 ( 0.005189422784 ) AvgTol = 4.319600685e-006 ( 0.0002258553417 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 3 ( 0 ) Summary = 3 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 73 ( 73 ) Summary = 469 ( 469 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 73 ( 73 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 194 ( 194 )
TOLERANCE : MaxTol = 0.2144663085 ( 0.2144663085 ) AvgTol = 0.003528428672 ( 0.003148222274 )
TOLERANCE : MaxTol = 0.2144663085 ( 0.2144663085 ) AvgTol = 0.003931550309 ( 0.01531627646 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 73 ( 73 ) Summary = 471 ( 471 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 73 ( 73 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 195 ( 195 )
TOLERANCE : MaxTol = 0.002772705081 ( 0.002772705081 ) AvgTol = 0.0001862241325 ( 0.0001862241325 )
TOLERANCE : MaxTol = 0.002772705081 ( 0.007671422015 ) AvgTol = 0.0001862241325 ( 0.0004076685863 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 73 ( 73 ) Summary = 471 ( 471 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 73 ( 73 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 195 ( 195 )
TOLERANCE : MaxTol = 0.002169065527 ( 0.002169065527 ) AvgTol = 0.0001558899524 ( 0.0001558899524 )
TOLERANCE : MaxTol = 0.002169065527 ( 0.004310633963 ) AvgTol = 0.0001558899524 ( 0.0002499195251 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 25 ( 27 ) Summary = 25 ( 27 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 5 ( 5 ) Face = 87 ( 87 ) Summary = 536 ( 536 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 5 ( 5 ) Face = 87 ( 87 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 220 ( 220 )
TOLERANCE : MaxTol = 0.001356543019 ( 0.001356543019 ) AvgTol = 0.000207749345 ( 0.0001980041425 )
TOLERANCE : MaxTol = 0.001640491495 ( 0.0154023028 ) AvgTol = 0.0003285396147 ( 0.001132378182 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 8 ( 8 ) N2Labels = 0 ( 0 ) TotalLabels = 11 ( 11 ) NameLabels = 5 ( 5 ) ColorLabels = 7 ( 7 ) LayerLabels = 5 ( 5 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 3 ( 3 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
set filename bm4_id_eye_a.stp
@ -10,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 8 ( 5 ) Summary = 8 ( 5 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 72 ( 72 ) Summary = 422 ( 422 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 72 ( 72 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 175 ( 175 )
TOLERANCE : MaxTol = 0.003734968074 ( 0.003734968077 ) AvgTol = 0.0003473000281 ( 0.000347321758 )
TOLERANCE : MaxTol = 0.003734968074 ( 0.009941326565 ) AvgTol = 0.0003603377154 ( 0.0006897182502 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 116 ( 116 ) N2Labels = 0 ( 0 ) TotalLabels = 117 ( 117 ) NameLabels = 1 ( 1 ) ColorLabels = 117 ( 117 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 2 ( 2 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
set filename bm4_id_eye_b.stp
@ -10,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 6 ( 5 ) Summary = 6 ( 5 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 72 ( 72 ) Summary = 422 ( 422 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 72 ( 72 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 175 ( 175 )
TOLERANCE : MaxTol = 0.003734968074 ( 0.003734968077 ) AvgTol = 0.0003472405838 ( 0.0003472786949 )
TOLERANCE : MaxTol = 0.003734968074 ( 0.008476378102 ) AvgTol = 0.0003702712832 ( 0.0009328150641 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 116 ( 116 ) N2Labels = 0 ( 0 ) TotalLabels = 117 ( 117 ) NameLabels = 1 ( 1 ) ColorLabels = 117 ( 117 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 2 ( 2 )

View File

@ -11,7 +11,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 9 ( 13 ) Summary = 9 ( 13 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 5 ( 5 ) Shell = 6 ( 6 ) Face = 186 ( 186 ) Summary = 1310 ( 1291 )
STATSHAPE : Solid = 5 ( 5 ) Shell = 6 ( 6 ) Face = 186 ( 186 ) FreeWire = 0 ( 0 ) FreeEdge = 6 ( 6 ) SharedEdge = 524 ( 524 )
TOLERANCE : MaxTol = 0.007713500664 ( 0.007713500658 ) AvgTol = 0.0007192934915 ( 0.0007194804808 )
TOLERANCE : MaxTol = 0.007713500664 ( 0.00997839292 ) AvgTol = 0.0007516875718 ( 0.001114041492 )
LABELS : N0Labels = 7 ( 7 ) N1Labels = 10 ( 6 ) N2Labels = 0 ( 0 ) TotalLabels = 17 ( 13 ) NameLabels = 13 ( 13 ) ColorLabels = 6 ( 4 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 3 ( 3 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 13 ( 0 ) Summary = 13 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 3 ( 3 ) Shell = 4 ( 4 ) Face = 182 ( 182 ) Summary = 1237 ( 1237 )
STATSHAPE : Solid = 3 ( 3 ) Shell = 4 ( 4 ) Face = 182 ( 182 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 500 ( 500 )
TOLERANCE : MaxTol = 0.0006834695356 ( 0.0006834695356 ) AvgTol = 1.670011327e-005 ( 1.670011329e-005 )
TOLERANCE : MaxTol = 0.009731472373 ( 0.01295381237 ) AvgTol = 0.0003805396289 ( 0.0007344871275 )
LABELS : N0Labels = 5 ( 5 ) N1Labels = 37 ( 37 ) N2Labels = 0 ( 0 ) TotalLabels = 42 ( 42 ) NameLabels = 9 ( 9 ) ColorLabels = 4 ( 4 ) LayerLabels = 33 ( 33 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 3 ( 3 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 4 ( 14 ) Summary = 4 ( 14 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 3 ( 3 ) Shell = 36 ( 36 ) Face = 186 ( 186 ) Summary = 1404 ( 1404 )
STATSHAPE : Solid = 3 ( 3 ) Shell = 36 ( 36 ) Face = 186 ( 186 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 548 ( 548 )
TOLERANCE : MaxTol = 0.00767687178 ( 0.007676871778 ) AvgTol = 0.0001470156168 ( 0.0001476665188 )
TOLERANCE : MaxTol = 0.007676795012 ( 0.01770527621 ) AvgTol = 0.0001484880722 ( 0.0002069115043 )
LABELS : N0Labels = 5 ( 5 ) N1Labels = 37 ( 37 ) N2Labels = 0 ( 0 ) TotalLabels = 42 ( 42 ) NameLabels = 9 ( 9 ) ColorLabels = 36 ( 36 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 3 ( 3 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 19 ( 5 ) Summary = 19 ( 5 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 40 ( 40 ) Face = 40 ( 40 ) Summary = 547 ( 527 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 40 ( 40 ) Face = 40 ( 40 ) FreeWire = 0 ( 0 ) FreeEdge = 20 ( 20 ) SharedEdge = 196 ( 196 )
TOLERANCE : MaxTol = 0.02294330394 ( 0.02294330394 ) AvgTol = 0.001135014538 ( 0.0011345786 )
TOLERANCE : MaxTol = 0.02294330394 ( 0.02748335355 ) AvgTol = 0.00118366439 ( 0.001785361613 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 84 ( 84 ) N2Labels = 0 ( 0 ) TotalLabels = 87 ( 87 ) NameLabels = 5 ( 5 ) ColorLabels = 82 ( 82 ) LayerLabels = 60 ( 60 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
set filename id_turbine-A.stp
@ -8,9 +7,9 @@ set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 21 ( 16 ) Summary = 21 ( 16 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 49 ( 49 ) Summary = 291 ( 290 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 49 ( 49 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 120 ( 119 )
TOLERANCE : MaxTol = 0.003591433268 ( 0.003591433268 ) AvgTol = 0.0004763290463 ( 0.0004798376538 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 49 ( 49 ) Summary = 290 ( 290 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 49 ( 49 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 119 ( 119 )
TOLERANCE : MaxTol = 0.003591433268 ( 0.006109109885 ) AvgTol = 0.0004792377666 ( 0.0008287050108 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 87 ( 87 ) N2Labels = 0 ( 0 ) TotalLabels = 90 ( 90 ) NameLabels = 5 ( 5 ) ColorLabels = 86 ( 86 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 5 ( 5 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
set filename id_turbine-B.stp
@ -10,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 11 ( 8 ) Summary = 11 ( 8 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 49 ( 49 ) Summary = 290 ( 290 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 49 ( 49 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 119 ( 119 )
TOLERANCE : MaxTol = 0.003591433268 ( 0.003591433268 ) AvgTol = 0.0004743087035 ( 0.00047548976 )
TOLERANCE : MaxTol = 0.003591433268 ( 0.006109109885 ) AvgTol = 0.000572321951 ( 0.001285201537 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 87 ( 87 ) N2Labels = 0 ( 0 ) TotalLabels = 90 ( 90 ) NameLabels = 5 ( 5 ) ColorLabels = 86 ( 86 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 5 ( 5 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
set filename ie_exhaust-A.stp
@ -10,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 23 ( 16 ) Summary = 23 ( 16 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 64 ( 64 ) Summary = 378 ( 378 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 64 ( 64 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 150 ( 150 )
TOLERANCE : MaxTol = 0.0002089967319 ( 0.0002089967128 ) AvgTol = 2.456943731e-005 ( 2.456943149e-005 )
TOLERANCE : MaxTol = 0.01644435227 ( 0.01670778143 ) AvgTol = 0.0005702798849 ( 0.0005790244062 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 16 ( 16 ) Summary = 16 ( 16 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 64 ( 64 ) Summary = 378 ( 378 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 64 ( 64 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 150 ( 150 )
TOLERANCE : MaxTol = 0.01522146251 ( 0.01522146254 ) AvgTol = 0.001034800881 ( 0.001034800878 )
TOLERANCE : MaxTol = 0.01574193348 ( 0.01692301518 ) AvgTol = 0.001069439088 ( 0.002489134762 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 22 ( 22 ) Summary = 22 ( 22 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 64 ( 64 ) Summary = 378 ( 378 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 64 ( 64 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 150 ( 150 )
TOLERANCE : MaxTol = 0.01522146251 ( 0.01522146254 ) AvgTol = 0.001034805072 ( 0.001034806062 )
TOLERANCE : MaxTol = 0.01574193348 ( 0.01692301518 ) AvgTol = 0.001069359917 ( 0.002489057452 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -10,7 +10,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 10 ( 4 ) Summary = 10 ( 4 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) Summary = 338 ( 338 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 144 ( 144 )
TOLERANCE : MaxTol = 0.03986265272 ( 0.1567489095 ) AvgTol = 0.01333022874 ( 0.02937515411 )
TOLERANCE : MaxTol = 0.03986265272 ( 0.1567489095 ) AvgTol = 0.01346429968 ( 0.02937515411 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 10 ( 10 ) Face = 10 ( 10 ) Summary = 125 ( 123 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 10 ( 10 ) Face = 10 ( 10 ) FreeWire = 0 ( 0 ) FreeEdge = 2 ( 2 ) SharedEdge = 44 ( 44 )
TOLERANCE : MaxTol = 8.886924154e-005 ( 8.886893947e-005 ) AvgTol = 2.639044129e-005 ( 2.639042883e-005 )
TOLERANCE : MaxTol = 0.018462436 ( 0.04645590147 ) AvgTol = 0.001814589324 ( 0.007120077124 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 4 ( 4 ) N2Labels = 0 ( 0 ) TotalLabels = 7 ( 7 ) NameLabels = 5 ( 5 ) ColorLabels = 2 ( 2 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
set filename trj3_s1-ct-203.stp
@ -10,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 20 ( 18 ) Summary = 20 ( 18 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 8 ( 8 ) Shell = 8 ( 8 ) Face = 132 ( 132 ) Summary = 801 ( 801 )
STATSHAPE : Solid = 11 ( 11 ) Shell = 11 ( 11 ) Face = 178 ( 178 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 316 ( 316 )
TOLERANCE : MaxTol = 0.06901335768 ( 0.06901335768 ) AvgTol = 0.0007935779827 ( 0.0007709981004 )
TOLERANCE : MaxTol = 0.06901335768 ( 0.07236095994 ) AvgTol = 0.0008239378267 ( 0.0008694243708 )
LABELS : N0Labels = 13 ( 13 ) N1Labels = 21 ( 21 ) N2Labels = 0 ( 0 ) TotalLabels = 34 ( 34 ) NameLabels = 27 ( 27 ) ColorLabels = 15 ( 15 ) LayerLabels = 8 ( 8 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 3 ( 3 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
set filename trj3_s1-ct-214.stp
@ -10,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 20 ( 18 ) Summary = 20 ( 18 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 8 ( 8 ) Shell = 8 ( 8 ) Face = 132 ( 132 ) Summary = 801 ( 801 )
STATSHAPE : Solid = 11 ( 11 ) Shell = 11 ( 11 ) Face = 178 ( 178 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 316 ( 316 )
TOLERANCE : MaxTol = 0.06901335768 ( 0.06901335768 ) AvgTol = 0.0007935779827 ( 0.0007709981004 )
TOLERANCE : MaxTol = 0.06901335768 ( 0.07236095994 ) AvgTol = 0.0008239378267 ( 0.0008694243708 )
LABELS : N0Labels = 13 ( 13 ) N1Labels = 21 ( 21 ) N2Labels = 0 ( 0 ) TotalLabels = 34 ( 34 ) NameLabels = 27 ( 27 ) ColorLabels = 15 ( 15 ) LayerLabels = 8 ( 8 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 3 ( 3 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 1 ( 1 ) Summary = 1 ( 1 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 58 ( 58 ) Face = 58 ( 58 ) Summary = 771 ( 425 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 58 ( 58 ) Face = 58 ( 58 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 296 ( 149 )
TOLERANCE : MaxTol = 0.0008167207419 ( 0.000816761578 ) AvgTol = 5.463653039e-005 ( 0.0001042055786 )
TOLERANCE : MaxTol = 0.0008167207419 ( 0.0009782609385 ) AvgTol = 5.463653037e-005 ( 0.000108302814 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) Summary = 336 ( 336 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 138 ( 138 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.005901949404 ) AvgTol = 0.0002996481304 ( 0.0002996481595 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.008046615145 ) AvgTol = 0.0002996481595 ( 0.0008772134802 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 1 ( 1 ) Summary = 1 ( 1 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 58 ( 58 ) Face = 58 ( 58 ) Summary = 837 ( 475 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 58 ( 58 ) Face = 58 ( 58 ) FreeWire = 0 ( 16 ) FreeEdge = 16 ( 16 ) SharedEdge = 312 ( 165 )
TOLERANCE : MaxTol = 0.0008167207419 ( 0.000816761578 ) AvgTol = 5.200297581e-005 ( 9.917834779e-005 )
TOLERANCE : MaxTol = 0.0008167207419 ( 0.0009782609385 ) AvgTol = 5.20029758e-005 ( 0.0001030777287 )
LABELS : N0Labels = 3 ( 3 ) N1Labels = 2 ( 2 ) N2Labels = 0 ( 0 ) TotalLabels = 5 ( 5 ) NameLabels = 5 ( 5 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
set filename trj5_k1-ec-214.stp
@ -10,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 12 ( 0 ) Summary = 12 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 47 ( 47 ) Face = 47 ( 47 ) Summary = 614 ( 614 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 47 ( 47 ) Face = 47 ( 47 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 240 ( 240 )
TOLERANCE : MaxTol = 8.726098798e-006 ( 8.726098798e-006 ) AvgTol = 5.150126454e-007 ( 5.150126454e-007 )
TOLERANCE : MaxTol = 0.0001716884488 ( 0.0009724780717 ) AvgTol = 5.387053125e-006 ( 7.074542139e-005 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) Summary = 336 ( 336 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 138 ( 138 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.005901949404 ) AvgTol = 0.0002996481304 ( 0.0002996481595 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.008046615145 ) AvgTol = 0.0002996481595 ( 0.0008772134802 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) Summary = 336 ( 336 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 138 ( 138 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.005901949404 ) AvgTol = 0.0002996481304 ( 0.0002996481595 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.008046615145 ) AvgTol = 0.0002996481595 ( 0.0008772134802 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 1 ( 1 ) Volume = 1 ( 1 ) Area = 1 ( 1 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 2 ( 2 ) Summary = 2 ( 2 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 70 ( 70 ) Summary = 427 ( 427 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 70 ( 70 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 176 ( 176 )
TOLERANCE : MaxTol = 0.006057322867 ( 0.006057322865 ) AvgTol = 0.001024669403 ( 0.0009677910598 )
TOLERANCE : MaxTol = 0.006057322867 ( 0.01790682739 ) AvgTol = 0.0009755900047 ( 0.002119269064 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) Summary = 335 ( 335 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 138 ( 138 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.005901949404 ) AvgTol = 0.0002996481304 ( 0.0002996481595 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.008046615145 ) AvgTol = 0.0002996481595 ( 0.0008772134802 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 1 ( 1 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) Summary = 335 ( 335 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 138 ( 138 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.005901949404 ) AvgTol = 0.0002996481304 ( 0.0002996481595 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.008046615145 ) AvgTol = 0.0002996481595 ( 0.0008772134802 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 1 ( 1 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) Summary = 335 ( 335 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 1 ( 1 ) Face = 52 ( 52 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 138 ( 138 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.005901949404 ) AvgTol = 0.0002996481304 ( 0.0002996481595 )
TOLERANCE : MaxTol = 0.005901949404 ( 0.008046615145 ) AvgTol = 0.0002996481595 ( 0.0008772134802 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 0 ( 0 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 1 ( 1 )
NCOLORS : NColors = 0 ( 0 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 4 ( 34 ) Summary = 4 ( 34 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 216 ( 216 ) Summary = 1421 ( 1421 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 216 ( 216 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 588 ( 588 )
TOLERANCE : MaxTol = 0.007909701545 ( 0.007909701545 ) AvgTol = 0.0006382364714 ( 0.000639377615 )
TOLERANCE : MaxTol = 0.007909701545 ( 0.01677199988 ) AvgTol = 0.0006487127928 ( 0.0008020095458 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 1 ( 1 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 78 ( 78 ) Summary = 456 ( 456 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 78 ( 78 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 191 ( 191 )
TOLERANCE : MaxTol = 0.008856670537 ( 0.008856670537 ) AvgTol = 0.001433109436 ( 0.001433109436 )
TOLERANCE : MaxTol = 0.03540333048 ( 0.03540333048 ) AvgTol = 0.01419078581 ( 0.01419078581 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 78 ( 78 ) Summary = 456 ( 456 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 78 ( 78 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 191 ( 191 )
TOLERANCE : MaxTol = 0.0007738160419 ( 0.0007738160417 ) AvgTol = 0.0001517257683 ( 0.0001517257683 )
TOLERANCE : MaxTol = 0.0008779939056 ( 0.002970920499 ) AvgTol = 0.0002392657978 ( 0.0003764865332 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
set filename boot.stp
@ -10,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 3 ( 1 ) Summary = 3 ( 1 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 54 ( 54 ) Summary = 346 ( 346 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 54 ( 54 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 143 ( 143 )
TOLERANCE : MaxTol = 0.0007675518072 ( 0.0007675518122 ) AvgTol = 4.47813254e-005 ( 4.493329741e-005 )
TOLERANCE : MaxTol = 0.0007675518072 ( 0.07502548071 ) AvgTol = 4.478132068e-005 ( 0.006388828005 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 34 ) Summary = 0 ( 34 )
CHECKSHAPE : Wires = 1 ( 1 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 216 ( 216 ) Summary = 1421 ( 1421 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 216 ( 216 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 588 ( 588 )
TOLERANCE : MaxTol = 0.0007520801154 ( 0.04372745817 ) AvgTol = 7.021641527e-005 ( 0.0008818813065 )
TOLERANCE : MaxTol = 0.0009115635861 ( 0.04372745817 ) AvgTol = 9.848185929e-005 ( 0.0009099184092 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 1 ( 1 )
PROPS : Centroid = 1 ( 1 ) Volume = 1 ( 1 ) Area = 1 ( 1 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 4 ( 34 ) Summary = 4 ( 34 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 216 ( 216 ) Summary = 1421 ( 1421 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 216 ( 216 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 588 ( 588 )
TOLERANCE : MaxTol = 0.007909701545 ( 0.007909701545 ) AvgTol = 0.0006382364714 ( 0.000639377615 )
TOLERANCE : MaxTol = 0.007909701545 ( 0.01677199988 ) AvgTol = 0.0006487127928 ( 0.0008020095458 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 1 ( 1 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -7,7 +7,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 0 ( 34 ) Summary = 0 ( 34 )
CHECKSHAPE : Wires = 1 ( 1 ) Faces = 1 ( 1 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 216 ( 216 ) Summary = 1421 ( 1421 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 216 ( 216 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 588 ( 588 )
TOLERANCE : MaxTol = 0.0007520801154 ( 0.04372745817 ) AvgTol = 7.021641527e-005 ( 0.0008818813065 )
TOLERANCE : MaxTol = 0.0009115635861 ( 0.04372745817 ) AvgTol = 9.848185929e-005 ( 0.0009099184092 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 1 ( 1 )
PROPS : Centroid = 1 ( 1 ) Volume = 1 ( 1 ) Area = 1 ( 1 )
NCOLORS : NColors = 1 ( 1 )

View File

@ -1,5 +1,4 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: TPSTAT : Faulty"
set filename ug_soapbox-A.stp
@ -10,7 +9,7 @@ TPSTAT : Faulties = 0 ( 0 ) Warnings = 8 ( 3 ) Summary = 8 ( 3 )
CHECKSHAPE : Wires = 0 ( 0 ) Faces = 0 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 94 ( 94 ) Summary = 570 ( 570 )
STATSHAPE : Solid = 1 ( 1 ) Shell = 1 ( 1 ) Face = 94 ( 94 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 232 ( 232 )
TOLERANCE : MaxTol = 0.008977613887 ( 0.008977613885 ) AvgTol = 0.001750900293 ( 0.001751252138 )
TOLERANCE : MaxTol = 0.008981237811 ( 0.03359184316 ) AvgTol = 0.001989925701 ( 0.00429652078 )
LABELS : N0Labels = 1 ( 1 ) N1Labels = 0 ( 0 ) N2Labels = 0 ( 0 ) TotalLabels = 1 ( 1 ) NameLabels = 1 ( 1 ) ColorLabels = 1 ( 1 ) LayerLabels = 0 ( 0 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 1 ( 1 )

Some files were not shown because too many files have changed in this diff Show More