Can you report only the Min and Max of a bunch of points without reporting all of the points? 3.5 mr2 tia
Reporting Min/Max of a bunch of points
Collapse
X
-
Indeed you can!!! Create a Feature set from the 'bunch' then report on them in the required axis, Z for example. DON'T report this dimension!!! (OUTPUT=NONE)
Then create a GENERIC POINT as follows: (you need 1 generic point for the MAX and 1 generic point for the MIN)
SCN1 =FEAT/SET,RECT
THEO/0.05,0.3789,0.1289,0,0,1
ACTL/0.05,0.3789,0.1289,0,0,1
CONSTR/SET,BASIC,PNT1,PNT2,PNT3,PNT4,PNT5,,
DIM LOC1= LOCATION OF SET SCN1 UNITS=IN ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=NONE
AX MEAS NOMINAL +TOL -TOL DEV OUTTOL
X 0.0500 0.0500 0.0000 0.0000 0.0000 0.0000 #
Y 0.3789 0.3789 0.0000 0.0000 0.0000 0.0000 #
Z 0.1289 0.1289 0.0000 0.0000 0.0000 0.0000 #
END OF DIMENSION LOC1
F4 =GENERIC/POINT,DEPENDENT,RECT,$
NOM/XYZ,0,0,0,$
MEAS/XYZ,0,0,LOC1.Z.MAX,$
NOM/IJK,0,0,1,$
MEAS/IJK,0,0,1
F5 =GENERIC/POINT,DEPENDENT,RECT,$
NOM/XYZ,0,0,0,$
MEAS/XYZ,0,0,LOC1.Z.MIN,$
NOM/IJK,0,0,1,$
MEAS/IJK,0,0,1
DIM LOC2= LOCATION OF POINT F4 UNITS=IN ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=NONE
AX MEAS NOMINAL +TOL -TOL DEV OUTTOL
Z 0.1428 0.0000 0.0000 0.0000 0.1428 0.1428 >
END OF DIMENSION LOC2
DIM LOC3= LOCATION OF POINT F5 UNITS=IN ,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=NONE
AX MEAS NOMINAL +TOL -TOL DEV OUTTOL
Z 0.0800 0.0000 0.0000 0.0000 0.0800 0.0800 >
END OF DIMENSION LOC3
that'll do ya!!!Last edited by slinky1561; 06-14-2006, 05:38 AM.I am a Mushroom................Kept in the dark and fed on sh*t!!!!!
widgetinstance 190 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment