Motion commands
4.2 Travel commands with polar coordinates, polar angle, polar radius
Fundamentals
122 Programming Manual, 11/2006, 6FC5398-1BP10-2BA0
Parameters
G0
Rapid traverse movement
G1
Linear interpolation
G2
Circular interpolation clockwise
G3
Circular interpolation counter-clockwise
AP=
Polar angle, value range ±0…360°, the polar angle can be defined
both absolutely and incrementally.
RP=
Polar radius in mm or inches always in absolute positive values.
=AC(...)
Absolute dimensioning
=IC(...)
Incremental dimensioning
Example of making a hole pattern
The positions of the holes are specified in polar coordinates.
Each hole is machined with the same production sequence: Predrilling, drilling to size,
reaming, etc. The machining sequence is filed in the subroutine.
<
;
r
r
r
r
r
N10 G17 G54
;Working plane X/Y, workpiece zero
N20 G111 X43 Y38
;Define pole
N30 G0 RP=30 AP=18 Z5
;Approach starting point, position in ;cylindrical
coordinates
N40 L10
;Subprogram call
N50 G91 AP=72
;Approach next position in rapid traverse, ;polar
angle in incremental dimensions, polar radius
;from block N30 is still stored and does not need
;to be specified
N60 L10
;Subprogram call
N70 AP=IC(72)
;…
N80 L10
;…
N90 AP=IC(72)
N100 L10
;…
N110 AP=IC(72)