Programming manual.
CNC 8070
PATH CONTROL.
8.
Linear interpolation (G01).
·139·
(REF: 1709)
8.2 Linear interpolation (G01).
Function G01 activates the linear movement, according to the active "F" feedrate, for the
following programmed movements. If auxiliary or rotary axes are programmed in the linear
interpolation block, the CNC will calculate the feedrate for those axes so their movement
begins and ends simultaneously with the main axes.
Programming.
The function G01 may be programmed alone in the block or it may be added to a movement
block. The function G01 is modal; after it has been programmed, it remains active until an
incompatible function is programmed (G00, G02, G03, G33 or G63).
Programming format.
The programming format is the following; the arguments appear between curly brackets and
the optional ones, between angle brackets.
G01 <X..C{postion}> <F{feedrate}>
End point of the movement.
• For cartesian coordinates, defining the coordinates of the end point (X..C) on the various
axes. All the axes need not be programmed, only the ones to move.
X..C{position} Optional. End point of the movement.
Units: Millimeters, inches or degrees.
F{feedrate} Optional. Feedrate.
Units: Units are dependent on the active function.
- If G93, seconds.
- If G94, Millimeters/minute, inches/minute or degrees/minute.
- If G95, Millimeters/minute, inches/minute or degrees/turn.
G01
(Activate function G01 without moving).
G01 X600 Y400 F150
(Movement in cartesian coordinates, using feedrate programming).
G01 R600 Q20 F200
(Movement in polar coordinates, using feedrate programming).
G00 G90 X20 Y20
G01 X-20 F350
G01 Y-20
G01 X20
G01 Y20
M30