0 BEGIN PGM 8260_EN MM 1 ;NC program for measuring and checking a 2 ;standard tolerance in the uniform shaft 3 ;and uniform hole systems to verify that 4 ;the measurement result is within the 5 ;tolerance. The control subsequently 6 ;displays the workpiece status, the 7 ;measurement result, and the tolerance 8 ;dimensions in a window on the screen. 9 ;In this NC program, you define all of 10 ;the parameters required for program run. 11 ;The control subsequently calls another 12 ;NC program in which it calculates the 13 ;dimensions, performs the measuring 14 ;process, and displays the results on 15 ;the screen. 16 ;You can copy the contents of this 17 ;NC program, for example, to the point 18 ;in a machining program where you would 19 ;like to perform the measuring process. 20 ; 21 ; 22 ; 23 ;Parameter input 24 Q1 = 50 ;SIZE OF FIT 25 QS1 = "H7" ;TOLERANCE 26 Q11 = 0 ;MEASURING CENTER IN X 27 Q21 = 0 ;MEASURING CENTER IN Y 28 Q31 = - 5 ;MEASURING HEIGHT IN Z 29 Q41 = 45 ;ANGLE OF 1ST MEASUREMENT 30 Q51 = 2 ;LATERAL SAFETY CLEARANCE 31 ;End of parameter input 32 ; 33 ;Program call for measuring and displaying 34 ;the values on the screen. 35 CALL PGM 82601_en.H 36 ; 37 ; 38 STOP 39 ;End of program 40 END PGM 8260_EN MM