Rockwell Automation 8520 9/Series CNC Lathe User Manual
Page 378

Axis Motion
Chapter 14
14-20
The control only cancels the mirror feature for those axes that are
programmed in the G50.1 block. Axes not programmed in the G50.1 block
remain mirrored. There is no significance to the values programmed with
the axis words in a G50.1 block. Axis values might not be required,
depending on how the way AMP was configured by your system installer.
In either case, the control ignores these values.
Example 14.8
Programmable Mirror Image
Main Program
Comment
(Mirror);
comment block, main program
G00G90;
rapid positioning, absolute mode
M98P8500;
call subprogram 8500
G51.1Z75.;
mirror active on X
M98P8500;
call subprogram 8500
G51.1X75.;
mirror active on Z (and X)
M98P8500;
call subprogram 8500
G50.1Z0;
cancel mirror on Z (active on X only)
M98P8500;
call subprogram 8500
G50.1X0;
cancel mirror on X (no mirroring)
M30;
Subprogram
Comment
O8500;
program number
G00G90Z60.X90.;
rapid to start point
G01X120.F.1;
move 1
G03Z30.X90.R30;
move 2
G01Z60.;
move 3
M99;
return from subprogram