4.13.4 G10/G11: Parameter Settings Mode/Parameter Settings Mode Cancellation


Format:

G10 (P_R_L_)

G11


P_: Tool number

R_: Tool radius

L_: Tool length


G10 is the data setting command. In the data setting command line, only G10/G11 and G90/G91 are available. Other commands are not allowed. Typing the data in the program as an absolute coordinate value or relative increment value is based on the status of G90/G91 at that time.


Data setting mode G10 is a continuous valid command and must be closed with G11 command. Otherwise, the system will send an error message when other commands are to be executed.


The G10 can exist alone in one line to start the data setting mode for use by the subsequent setting instruction; it can also exist in the complete instruction line form. If it exists as a complete command line, P_ must be the specified data number that exists.


Example:

G90 G10 P1 R1. L10.    ;tool number 1,radius = 1.,length = 10.

G10 P2 R2. L20.        ;tool number 2,radius = 2.,length = 20.

G10 P3 R3. L30.        ;tool number 3,radius = 3.,length = 30.

G10 P4 R4. L40.        ;tool number 4,radius = 4.,length = 40.

G91 G10 P5 R-0.5       ;tool number 5,radius -0.5

G90 G11                ;Close data setting mode


Or,

G90 G10                ;Start data setting mode

P1 R1. L10.            ;tool number 1,radius = 1.,length = 10.

P2 R2. L20.            ;tool number 2,radius = 2.,length = 20.

P3 R3. L30.            ;tool number 3,radius = 3.,length = 30.

P4 R4. L40.            ;tool number 4,radius = 4.,length = 40.

G91                    ;Switch to incremental mode

P5 R-0.5               ;tool number 5,radius -0.5

G90 G11                ;Close data setting mode