G35 Linear Drilling Cycle
Format
G35 Xx Yy Id Jθ Kn
Description
- X, Y: the first position to be drilled (G90/G91 is influential)
- I: distance (d) between adjacent holes. If the value is minus, drilling holes in symmetry direction.
- J: angle θ, specifying the angle of the line holes to be drilled on.
- K: number of holes, within range -9999~9999. If the number is 0, an error report will be given. If the number is greater than 0, hole drilling direction is CW. If it is less than 0, hole drilling direction is CCW.
The tool moves from one hole to another one at G0 speed.
Programming Example
Sketch of angular straight line drilling cycle is as follows:
The machine tool moves from initial point to position 1, and then drills holes sequentially from position 1 to position 5.
Drilling actions are specified by G81 in program block N001.
N001 G91 G81 G99 Z5 R6 F500 K1
N002 G35 X-10 Y5 I10 J60 K8