hexagon logo

Logic

Hey guys I was wondering if anyone had a quick line of code they could throw my way
for dmis to re-run a feature if it was out of tolerance.

Was thinking about adding it to my A0B0 calibration if it read anything above .0002
To automatically just re-run that tool until it got within the 0.000-.0002 range.
Also to add it to certain programs that if it read it out as it was measuring that it would
at least ask if i wanted to re-measure because it was out.

Thanks
Parents
  • I would try something like this :

    ASSIGN/V1=0
    DO/
    IF V1>0
    COMMENT/OPER,NO,FULL SCREEN=YES,AUTO-CONTINUE=NO,
                    CLEAN THE TIP AND THE SPHERE !
    END IF/
    AUTOCALIBRATE/PROBE, PARAMETER_SET=A0B0, QUALTOOL_MOVED=NO,
            SHOW_SUMMARY=NO, OVERWRITE_RESULTSFILE=NO
    ASSIGN/V2=PROBEDATA("STANDARDDEVIATION")
    ASSIGN/V1=V1+1
    UNTIL/V2<0.0002

Reply
  • I would try something like this :

    ASSIGN/V1=0
    DO/
    IF V1>0
    COMMENT/OPER,NO,FULL SCREEN=YES,AUTO-CONTINUE=NO,
                    CLEAN THE TIP AND THE SPHERE !
    END IF/
    AUTOCALIBRATE/PROBE, PARAMETER_SET=A0B0, QUALTOOL_MOVED=NO,
            SHOW_SUMMARY=NO, OVERWRITE_RESULTSFILE=NO
    ASSIGN/V2=PROBEDATA("STANDARDDEVIATION")
    ASSIGN/V1=V1+1
    UNTIL/V2<0.0002

Children