hexagon logo

View number of measured dimensions, dimensions in tollerance and out tolerance


Hello everybody.
Please anyone know how I can view immediately after the report header, the number of measured dimensions, those of the dimensions in tolerance and those of the dimensions out of tolerance? It's possible?
Thank very much.
Parents
  • This is how I would do it.

    What you do with the values & how you format the report is up to you.


    ! Set tolerance utilisation for OOT report at the beginning (here 75%)
    SET (NAM=WARN$FAC, RVL=75, GRP=3)

    ! Get number of OOT features
    TESTMBR (REA=OutTol, QUE=$WRN)
    CVREACHS (NAM=~OutTol, VAL=OutTol, FM2=0, INT=N, ANG=N, SPZ=N, RLS=Y, RTZ=Y)
    CONCAT (NAM=~OutTol, STR=('Number of OOT Features: ',~OutTol), INI=Y)
    ! Get number of in tol features
    TESTMBR (REA=InTol, QUE=$RPO)
    InTol = InTol - OutTol
    CVREACHS (NAM=~InTol, VAL=InTol, FM2=0, INT=N, ANG=N, SPZ=N, RLS=Y, RTZ=Y)
    CONCAT (NAM=~InTol, STR=('Number of in Tol. Features: ',~InTol), INI=Y)
Reply
  • This is how I would do it.

    What you do with the values & how you format the report is up to you.


    ! Set tolerance utilisation for OOT report at the beginning (here 75%)
    SET (NAM=WARN$FAC, RVL=75, GRP=3)

    ! Get number of OOT features
    TESTMBR (REA=OutTol, QUE=$WRN)
    CVREACHS (NAM=~OutTol, VAL=OutTol, FM2=0, INT=N, ANG=N, SPZ=N, RLS=Y, RTZ=Y)
    CONCAT (NAM=~OutTol, STR=('Number of OOT Features: ',~OutTol), INI=Y)
    ! Get number of in tol features
    TESTMBR (REA=InTol, QUE=$RPO)
    InTol = InTol - OutTol
    CVREACHS (NAM=~InTol, VAL=InTol, FM2=0, INT=N, ANG=N, SPZ=N, RLS=Y, RTZ=Y)
    CONCAT (NAM=~InTol, STR=('Number of in Tol. Features: ',~InTol), INI=Y)
Children
No Data