- You are here:
- AM.CO.ZABuythisCNC Utilities Homepage
- PowerRoute-CNC-Router
- Mill Programming Manual.pdf
- Page 140 of 151

1. G Function Description
1.2.51 G136: ARC TYPE HOLE CYCLE
Command form:
G136 X Y I J P K ;
X, Y: center coordinate of arc, effective by G90/91.
I: radius of arc, unit is specified by G70/G71, present in positive value.
J: angle of the first drilling hole, positive in CCW.
P: interval of angle, positive in CCW.
K: number of holes.
Description:
Use the point make between X axis and a angle to be starting
point ,and drill a hole every angular. The hole is drilling in the arc that
specified (X,Y) is center and “r” is radius.
Example:
n = 6
Interval 15°
Starting angle 10°
300.0
G91;//use incremental mode
G81 Z-10.0 R5.0 K0 F100;
//execute drilling cycle, cutting feedrate 100mm/min, depth of each
holes 10 mm, and return the initial point
G136 X300.0 Y100.0 I300.0 J10.0 P15000 K6;
//execute arc type hole cycle, X=300mm,Y=100mm to be the center of
the arc, radius 300mm, starting angle value10∘, interval angle15∘, 6
holes
135


































































































