Programming example
Programing Example
Deep hole drilling
; Deep hole drilling
(--------------------------------------------------------------------------------)
T2 D2 ( Tool data )
M6 ( Tool change )
G00 G17 G90 F250 M03 S400 ( Technology data )
G00 Z100 ( Go to z start position )
G00 Y20 X0 ( 1st drilling position )
( drill first deep hole in three steps with chip evacuation, final depth absolute )
L CYCLE [NAME=SysDrillDeepHole.cyc @P49=20 @P1=0 \
@P13=5 @P22=-25 @P47=1 @P30=3 @P79=0.5 \
@P52=2 @P78=-1]
G00 Y60 X0 ( 2nd drilling position )
( drill second deep hole in two steps with chip breaking, final depth relative )
L CYCLE [NAME=SysDrillDeepHole.cyc @P49=20 @P1=0 \
@P13=5 @P45=-25 @P47=1 @P30=2 @P79=0.5 \
@P52=1 @P78=-1]
G00 Z200 M5 ( Final position )
(--------------------------------------------------------------------------------)
M30