PROGRAMMING EXAMPLES
23996-8000
June 1999
EXAMPLE    G13 multiple-pass using I, K, and Q:
This example will complete a three-inch diameter hole, one inch deep, with a cutter overlap of .100 thousandths
of an inch.
PROGRAM EXAMPLE DESCRIPTION
%
O3000 (.500 entered in the Radius/Diameter offset column)
T1   M06 (Tool #1 is a .500 diameter end mill)
G00   G90   G54   X0   Y0   S4000   M03
G43   H01   Z.1   M08
G13   Z-1.0   F20.   D01   I.400   K1.5   Q.400
G00   Z1.0   M09
G28   G91   Y0   Z0
M30
%
EXAMPLE    G13 Multiple-pass using I, K, Q, L, and G91:
This program uses G91 and an L count of 4. This cycle will execute a total of four times. The Z depth incre-
ment is .500. This is multiplied by the L count, making the total depth of this hole 2.000.
The G91 and L count can also be used in G13 "I only" line.
Note: If the geometry column of the offsets display page has a value inserted within,
the circular pocket milling cycle will automatically read the data, regardless of
the D01 being present or not. The only effective way to cancel the cutter
compensation for the pocket milling is to insert a D00 in the program line. This
will bypass the value in the geometry column.
PROGRAM EXAMPLE DESCRIPTION
%
O4000 (.500 entered in the Radius/Diameter offset column)
T1   M06 (Tool #1 is a .500 diameter end mill)
G00   G90   G54   X0   Y0   S4000   M03
G43   H01   Z.1   M08
G01   Z0   F10.
G13   G91   Z-.5   F20.   D01   I.400   K2.0   Q.400   L4
G00   G90   Z1.0  M09
G28   G91   Y0   Z0
M30
%