Exact stop (G60/G360/G359)
Syntax: | ||
G60 | Exact stop | non-modal |
... or for exact stop across several blocks: | ||
G360 | Selecting exact stop | modal |
G359 | Deselecting exact stop | modal |
G60/G360 allow the exact approach to a target point within the exact stop limits. The feedrate is decreased to zero up to block end and decreases the following error.
The exact stop can be used if edges must be precision-machined or if the target point must be precisely reached in case of direction reversal. The motion is continued to the next position when a parameterisable control window is reached (P-AXIS-00236).
Programing Example
Examples of exact stop
N10 G1 F1000 X0 Y0
N20 G1 X10
N30 G60 ( Exact stop for this block end )
N40 G1 Y20
N50 G60 ( Exact stop for this block end )
N60 G1 X30
;...
By analogy, implementation with G360 and G359
N10 G1 F1000 X0 Y0
N20 G1 X10
N30 G360 ( Select exact stop )
N40 G1 Y20
N60 G1 X30
N70 G359 ( Deselect exact stop )
;..