Programming manual
CNC 8070
CANNED CYCLES
G87. Rectangular pocket canned cycle.
10.
(SOFT V02.0X)
203
10.8.1 Programming example
To machine a 80x40 pocket centered at (X60, Y35) and rotated 15º.
The pocket surface is at Z0 and is to be emptied down to Z-20. The
reference plane is located at Z2.
G90 G0 X60 Y35
G87 Z2 I-20 D2 A15 J40 K20 ·····
The pocket corners are to be rounded with a 10 mm radius.
G87 Z2 I-20 D2 A15 J40 K20 M1 Q10 ·····
The penetrating pass is 5 mm and it is carried out at a feedrate of 50
mm/min.
G87 Z2 I-20 D2 A15 J40 K20 M1 Q10 B5 ····· V50
The milling is carried out with a 5 mm wide roughing pass and at a
feedrate of 800 mm/min. Since the milling feedrate must be selected
before the execution of the cycle, it is defined in the previous block.
G90 G0 X60 Y35 F800
G87 Z2 I-20 D2 A15 J40 K20 M1 Q10 B5 C5 ····· V50
It will leave a finishing stock of 1 mm that will be machined at a feedrate
of 300 mm/min.
G87 Z2 I-20 D2 A15 J40 K20 M1 Q10 B5 C5 L1 H300 V50
We now show how to execute a pocket and repeated in several
positions (X200 Y135) and (X350 Y235).
Absolute programming:
T7 D1 M6
G0 G90 X0 Y0 Z25 S1000 M3 M8 M41 F800
N10 G99 X60 Y35
G87 Z2 I-20 D2 A15 J40 K20 M1 Q10 B5 C5 L1 H300 V50
N20 X200 Y135
N30 G98 X350 Y235
M30