G and M Programming For CNC Milling Machines (PDF - 231023 - 002718
G and M Programming For CNC Milling Machines (PDF - 231023 - 002718
G and M Programming For CNC Milling Machines (PDF - 231023 - 002718
G and M
Programming
for CNC
Milling Machines
Denford Limited
Birds Royd
Brighouse
West Yorkshire
England
HD6 1NB
Tel: +44 (0) 1484 712264
G AND MFax: +44FOR(0)
PROGRAMMING CNC 1484
MILLING M722160
ACHINES - 1
Email: [email protected]
NOTES.
BASIC PROGRAMMING.
Composition of a Part Program ........................ 9
Main Program Structure ................................. 10
Sub Program Structure .................................. 12
Sub Program Commands - General Notes ......... 13
Sub Program Repeat Command .......................14
Billet Definition ............................................. 15
Program Numbering and Saving ...................... 16
Program Block Numbering .............................. 17
Block Configuration ....................................... 18
G Codes (Preparatory Functions) ..................... 18
Tool Movement ............................................. 19
Feed Function ...............................................21
M Codes (Miscellaneous Functions) .................21
Spindle Speed Function (Cutting Speed) ...........22
Tool Function ................................................ 23
Tool Compensation (Tool Offset) ...................... 24
Absolute and Incremental Co-ordinates ............ 25
Optional Block Skip ....................................... 26
Tutorials and Comments ................................. 26
HUMAN COMPUTER
PROGRAMMING PROGRAMMING
(MDI - MANUAL DATA INPUT). (CAD/CAM).
G&M
CODES.
CONTROL
SIGNALS.
BASIC PROGRAMMING - 9
MAIN PROGRAM The part program can contain a number of separate
programs, which together describe all the operations
STRUCTURE.
required to manufacture the part.
The Main Program is the controlling program, ie, the
program first read, or accessed, when the entire part
program sequence is run. This controlling program can
then call a number of smaller programs into operation.
These smaller programs, called Sub Programs, are
generally used to perform repeat tasks, before
returning control back to the main program.
Normally, the controller operates according to one
program. In this case the main program is also the part
program.
Main Programs are written using I.S.O. address codes
listed below.
ADDRESSES -
N refers to the block number.
G refers to the G code (Preparatory function).
X refers to the absolute/incremental distance
travelled by the slide tool in the X axis direction.
Y refers to the absolute/incremental distance
travelled by the slide tool in the Y axis direction.
Z refers to the absolute/incremental distance
travelled by the slide tool in the Z axis direction.
F refers to the feed rate.
M refers to the M code (Miscellaneous function).
S refers to the spindle speed.
T refers to the tooling management.
10 - BASIC PROGRAMMING
MAIN PROGRAM The organisation of blocks of data within the program
follows a layout. Again, it is recommended that the
BASIC PROGRAMMING - 11
SUB PROGRAM A program which contains fixed sequences or
frequently repeated patterns may be entered into
STRUCTURE.
memory as a Sub Program, in order to simplify the
main program.
A sub program is entered into the machine controller
memory in Edit Mode, in the same manner as the main
program.
Differences between a sub and main program :
1) A sub program does not have a billet size definition
at the top of the program listing.
2) A sub program is ended by the M99 code.
The sub program can be called into operation when
the machine is set to run in Auto Mode. Sub programs
can also call other sub programs into operation.
When the main program calls one sub program into
operation, the process is called a one-loop sub
program call. It is possible to program a maximum four-
loop sub program call within the main program. Shown
below is an illustration of a two-loop sub program call.
NOTE 3.
To call a sub program the M98 code is used followed
by PØØØØ (the number of the sub program required).
For example,
M98 P2ØØØ
This command is read call program number 2ØØØ.
NOTE 4.
A sub program call command (M98 PØØØØ) can be
specified along with a move command in the same
block.
For example,
GØ1 X42.5 M98 P1ØØØ;
NOTE 5.
At the end of a sub program, the M99 code is entered.
This returns control to the main program.
The M99 code will return control to the next block
after the M98 sub program call block in the main
program.
If the code M99 PØØØØ is entered, control will pass
to the main program at a block with the N number
equal to that of the P number stated after the M99
code.
For example,
M99 PØ16Ø
This command is read return to the main program at
block number NØ16Ø.
BASIC PROGRAMMING - 13
SUB PROGRAM A call command can be set to call a sub program
repeatedly. This call can specify upto 999 repetitions
COMMAND.
format :
M98 PØØØ ØØØØ
Call Sub program
command. Number of times number.
the sub program
is to be repeated.
14 - BASIC PROGRAMMING
BILLET The Billet Definition is a feature which is only used in
the Denford programming system.
DEFINITION. It defines the size of the workpiece billet for use in the
simulation sections of the Denford machine software.
The billet definition command has no outcome on the
actual machining of the part.
The billet definition command is written at the start of
the main program. The previous block usually states
the units of measurement to be applied to the billet
dimensions, ie, G21 (Metric data input) or G2Ø
(Imperial data input).
For example,
NØØ1Ø G21;
[BILLET X1ØØ Y15Ø Z2Ø;
These two commands are read.
- program line number 1Ø states that all units are to be
measured in Metric,
- the billet is a rectangular piece of material, measuring
1ØØmm x 2ØØmm, with a thickness of 2Ømm.
NOTE 1.
A program that has been written on a Denford control
(or using Denford CAD/CAM post processor software)
will not operate directly on a genuine FANUC machine.
The simulation sections of the program are
incompatible with the FANUC control.
For the program to run successfully, lines referring to
the CAD/CAM software (at the beginning of the
program) and the billet definition block must be
deleted.
BASIC PROGRAMMING - 15
PROGRAM The Denford system of program numbering relies on
the programmer saving the program to disk or
AND SAVING.
Tutor keypad, the program number can range from 1
to 99999999.
Writing the program on an offline system with a qwerty
keyboard allows the programmer to save the program
using letters and/or numbers.
NOTE 1.
Sub program numbers must be saved between the
ranges ØØØ1 to 9999, ie, using a four digit number. It
is recommended that all programs saved have filenames
also between these numbers.
NOTE 2.
Before saving a program to disk or hard drive, check
that the program name you wish to use has not been
used on another file. If the program is saved using a
name identical to an old program file, the old program
file will be overwritten.
NOTE 3.
Programs that need to be used at a later date on
genuine FANUC controls must have their program
number stated on the first program block. The format
for inserting a FANUC compatible program number line
is as follows :
O ØØØØ
16 - BASIC PROGRAMMING
PROGRAM BLOCK A program is composed of several commands, each
command instructing the machine to carry out a
NUMBERING.
particular operation. Each command is a separate line
of data within the program, called a Block.
One block is separated from another block using an
end of block code, ie, effectively signifying the end of
a program line. The Denford programming system uses
a semicolon ( ; ) as the end of block code.
A four digit sequence number can be specified (ØØØ1
- 9999) following the address code N, at the start of
each block. The order of these block numbers is
arbitrary and need not be consecutive. Block numbers
can be specified for every program line, or just on
program lines requiring them.
NOTE 1.
The block number must be written at the start of a
program line when used.
NOTE 2.
It is recommended that all blocks are numbered using
a four digit number which rises between each block in
steps of 1Ø. This allows the program to be edited at a
later date, ie, new blocks can be inserted or deleted as
required.
For example :
N ØØ1Ø ....
N ØØ2Ø ....
N ØØ3Ø ....
N ØØ4Ø ....
etc....
NOTE 3.
Even when block numbering is not a priority, it is
useful to insert block numbers at important points in
the program, such as tool change commands. This will
help if a program search is used in the future.
BASIC PROGRAMMING - 17
BLOCK The sequence in which address codes appear in each
block should remain consistent throughout the program.
NOTE 1.
Each block may not necessarily contain all these items.
18 - BASIC PROGRAMMING
TOOL The tool moves along straight lines and arcs forming
the workpiece shape.
MOVEMENT.
A) TOOL MOVEMENT ALONG A STRAIGHT LINE.
Program command format:
GØ1 Y _ _ _ _ ; (P1 - P2)
X _ _ _ _ Y _ _ _ _ ; (P2 - P3)
X _ _ _ _ ; (P3 - P4)
+ Y AXIS DIRECTION.
TOOL MOVEMENT ALONG
A STRAIGHT LINE.
+ X AXIS DIRECTION.
BASIC PROGRAMMING - 19
TOOL A) TOOL MOVEMENT ALONG AN ARC.
Program command format:
MOVEMENT. GØ3 X _ _ _ _ Y _ _ _ _ R _ _ _ _ ; (P1 - P2)
+ Y AXIS DIRECTION.
TOOL MOVEMENT ALONG
AN ARC.
+ X AXIS DIRECTION.
NOTE 1.
On an actual machine, the table moves in relation to
the cutter. To make the command diagrams easier to
understand, this manual assumes the tool moves with
respect to the workpiece.
20 - BASIC PROGRAMMING
FEED The movement of the tool at a specified speed for
cutting is called the Feedrate.
BASIC PROGRAMMING - 21
SPINDLE SPEED The rotational speed of the tool, with respect to the
workpiece being cut, is called the spindle (or cutting)
FUNCTION speed.
The spindle speed is defined using the S address letter,
(CUTTING SPEED).
followed by a numerical value, signifying the spindle
RPM (revolutions per minute).
The spindle speed value specified must fall between
the machine tool RPM range for the command to be
effective.
NOTE 1.
When a move command and an S code are specified
in the same block, a simultaneous execution of the
commands is performed.
NOTE 2.
Only one S code is allowed in each program block.
22 - BASIC PROGRAMMING
TOOL 4 3
ATC CAROUSEL MAGAZINE
FUNCTION. 5 2
6
TOOL NUMBER 1
7 8
For example,
MØ6 TØ1
This command is read perform a tool change to tool
number Ø1.
NOTE 1.
The MØ6 code (automatic tool change) must im-
mediately precede the T code within the program block.
NOTE 2.
Only one T code is allowed in each program block.
NOTE 3.
If the machine control reads an MØ6 T _ _ command
when running in Automatic Mode, the three axes will
drive to the tool change position and the spindle will
stop. At this point, the tool change will be performed,
if an ATC is fitted. This will always happen, ir-
respective of the tool position when the tool change
command is read from the program.
BASIC PROGRAMMING - 23
TOOL Generally, several different tool profiles are required
to machine a workpiece, all of different diameters and
COMPENSATION lengths.
It would be very difficult to write a program that allowed
(TOOL OFFSET). for this difference in size between all the various tools.
To account for this, the difference in diameter and
length is measured, in advance, for all the tools that
will be used. Essentially, this means that the cutting
paths for all the tools now coincide. The values are
entered into the offset file.
This tool offset is also called tool compensation.
NOTE 1.
When a T code is read by the CNC, it will load the
offset length for that particular tool. The code G41 or
G42 (Tool Compensation Left or Right) must be pro-
grammed for the radius offset to used.
24 - BASIC PROGRAMMING
ABSOLUTE AND The addresses X, Y and Z within a program, when
G90 (Absolute co-ordinates) is active, relate to a co-
+ Y AXIS DIRECTION.
ABSOLUTE AND INCREMENTAL
CO-ORDINATES.
BASIC PROGRAMMING - 25
OPTIONAL When a forward slash mark ( / ) is followed by a block
number (at the beginning of a block) and the block
For example,
N3Ø X4Ø ;
/ N4Ø Y5Ø ;
/ N5Ø X7Ø ;
/ N6Ø Y9Ø ;
N7Ø .....
NOTE 1.
A "/" mark must be specified at the start of the block.
If it is placed elsewhere in the block, the information
from the "/" mark to the ";" mark (the end of block
mark) will be ignored, whilst the information before
the "/" mark will be effective.
AND COMMENTS.
inserted within the program.
Tutorial information appear in the Tutorial dialog box
of the machine controlling software (ie, the tutorial
message "Now performing pocket cutting cycle" could
be written to appear when the pocket cutting operation
starts in the program).
Comments information only appear in the text of the
program itself (ie, the comment "Tool 5 is 8mm slot
cutting tool" could be inserted in the program for use
as reference only).
26 - BASIC PROGRAMMING
G CODES Preparatory functions, called G codes, are used to
determine the geometry of tool movements and
FUNCTIONS) - commanded.
A non-modal G code is one-shot - it is effective only
within the block in which it is specified.
INTRODUCTION NOTE 2.
NOTES. It is not necessary to enter a modal G code in
repetitive blocks within a program.
For example :
If all movements are GØ1 (linear cutting command)
then GØ1 is entered on the first block and omitted
from all subsequent blocks. This G code will remain
active until an interpolation change is commanded
(using GØØ, GØ2 or GØ3).
NOTE 3.
The machine controller has the ability to interpret a
maximum of four G codes in one single block of data.
However, these G codes must be from separate modal
groups. When two or more G codes from the same
group are specified in the same block, the CNC will
only make the last stated G code from that modal group
effective.
SHOWN RIGHT.
vated.
NOTE 2.
G codes from group Ø are non-modal (they must be
programmed into every program block when required).
All other G codes are modal (they remain active through
subsequent program blocks, until replaced or cancelled
by a G code from their particular group).
GØØ
working area (operating under absolute co-
ordinate movement) or when a certain distance from a
previously stated position (under incremental co-
ordinate movement) is programmed.
A GØØ command is written in the following format:
(RAPID
GØØ X _ _ _ _ Y_ _ _ _ Z _ _ _ _ ;
POSITIONING/
Rapid Positioning/ X, Y and Z
Traverse code. co-ordinate values.
NOTE 1.
The rate of movement is set by the manufacturer of
the machine tool. The rate of movement can be
reduced from 1ØØ% to Ø%, but only in increments of
1Ø%, by using the feed override controls (see spe-
cific machine operating manual).
NOTE 2.
The GØØ code freezes the tool radius compensation,
codes G 41 and G42. If G41 or G42 are active when a
GØØ command is programmed, the tool radius com-
pensation will not function again until a GØ1, GØ2 or
GØ3 command is programmed.
NOTE 3.
The GØØ code is modal and is therefore incompatible
with GØ1, GØ2 and GØ3 codes in the same block.
NOTE 4.
The GØØ code can be written into a program in two
ways:
GØØ or GØ.
GØØ
On instruction to perform the GØØ command, the three
slides (the X, Y and Z axes) move completely
independant of each other at a maximum feedrate,
along a non-vector (sometimes called a non-linear) type
path.
+ Y AXIS DIRECTION.
(RAPID
POSITIONING/
GØØ - N ON -L INEAR
INTERPOLATION. + X AXIS DIRECTION.
TRAVERSE).
GØ1
A GØ1 command is written in the following format:
GØ1 X _ _ _ _ Y_ _ _ _ Z _ _ _ _ ;
GØ1
G9Ø GØ1 X1ØØ Y5Ø F15Ø ;
+ Y AXIS DIRECTION.
GØ1 - LINEAR
INTERPOLATION. + X AXIS DIRECTION.
(LINEAR
INTERPOLATION).
NOTE 1.
In the example shown above, G9Ø, GØ1 and the F
_ _ _ _ feedrate are modal and can be continued onto
the next block (without having to be restated) if re-
quired.
NOTE 2.
The programmed feedrate F _ _ _ _ can be varied in
Automatic Mode from Ø% to 15Ø% by using the feed
override controls (see specific machine operating
manual). 1ØØ% is the programmed feedrate.
NOTE 3.
When there is no feedrate programmed within the part
program, the CNC will set a feedrate of 1Ø
millimetres per minute in G21 Metric Data Mode, or
Ø.4 inches per minute in G2Ø Imperial Data Mode.
NOTE 4.
The GØ1 code is modal and is therefore incompatible
with GØØ, GØ2 and GØ3 codes in the same block.
NOTE 5.
The GØ1 code can be written into a program in two
ways:
GØ1 or G1.
GØ2
The GØ3 code executes a cutting movement
following a counterclockwise circular path, at a set
feedrate.
The definitions of clockwise (GØ2) and
counterclockwise (GØ3) are fixed according to the
GØ3
system of co-ordinates in the diagram below.
+Y
INTERPOLATION). the X and Y values describe the end point of the arc,
in relation to the datum position of the workpiece. The
arc end point is sometimes referred to as the target
position.
When programming arcs using incremental values
(G91), the X and Y values relate to the distance moved
along the X and Y axes, from the start point of the arc
to the end point of the arc. The sign of the X and Y
axis moves (+/-) will depend on the movement of the
machine slides in relation to their start position.
GØ2
To program an arc when only the arc centre is given
(the radius is unknown) use the address letters I and
J.
I relates to the address X and is the incremental value
and direction (+/-) from the start point of the arc in
the X axis to the arc centre (see diagram below).
GØ3
J relates to the address Y and is the incremental value
and direction (+/-) from the start point of the arc in
the Y axis to the arc centre (see diagram below).
GØ2/GØ3 - C IRCULAR
+ Y AXIS DIRECTION.
(CIRCULAR
INTERPOLATION USING I AND J.
INTERPOLATION).
+ X AXIS DIRECTION.
GØ2
There are four ways to program a clockwise circular
path using the GØ2 code:
G9Ø GØ2 X _ _ _ _ Y _ _ _ _ R _ _ _ F _ _ _ ;
G9Ø GØ2 X _ _ _ _ Y _ _ _ _ I _ _ _ J _ _ _ F _ _ _ ;
G91 GØ2 X _ _ _ _ Y _ _ _ _ R _ _ _ _ F _ _ _ _ ;
GØ3
G91 GØ2 X _ _ _ _ Y _ _ _ _ I _ _ _ J _ _ _ F _ _ _ ;
There are four ways to program an anticlockwise
circular path using the GØ3 code:
G9Ø GØ3 X _ _ _ _ Y _ _ _ _ R _ _ _ F _ _ _ ;
G9Ø GØ3 X _ _ _ _ Y _ _ _ _ I _ _ _ J _ _ _ F _ _ _ ;
G91 GØ3 X _ _ _ _ Y _ _ _ _ R _ _ _ _ F _ _ _ _ ;
where,
INTERPOLATION). GØ2 defines the clockwise direction circular
interpolation.
GØ3 defines the counterclockwise direction circular
interpolation.
G9Ø X _ _ _ _ Y _ _ _ _ defines the arc end point in the
work co-ordinate system.
G91 X _ _ _ _ Y _ _ _ _ defines the signed distance of
the arc end point from the arc start point.
I _ _ _ J _ _ _ defines the signed distance of the arc
start point from the centre point of the arc.
R _ _ _ defines the length of the arc radius.
F _ _ _ defines the feedrate along the arc.
GØ2
+ Y AXIS DIRECTION.
INTERPOLATION EXAMPLE.
+ X AXIS DIRECTION.
GØ3
(CIRCULAR
INTERPOLATION).
The above tool path can be programmed as follows (In
absolute mode, G9Ø):
GØ1 X1ØØ Y4Ø F125 ;
GØ3 X8Ø Y6Ø I-2Ø ;
GØ1 X6Ø ;
GØ2 X4Ø Y4Ø I-2Ø ;
or,
GØ1 X1ØØ Y4Ø F125 ;
GØ3 X8Ø Y6Ø R2Ø ;
GØ1 X6Ø ;
GØ2 X4Ø Y4Ø R2Ø ;
GØ2
whilst the other arc is greater than 18Ø degrees. When
an arc exceeding 18Ø degrees is commanded, the
radius value (R _ _ _ _) must be specified as a negative
signed (-) value.
+ Y AXIS DIRECTION.
GØ3
For example:
+ X AXIS DIRECTION.
GØ2/GØ3 - CIRCULAR
(CIRCULAR
INTERPOLATION ARC
DEFINITON.
INTERPOLATION).
The above tool path for an arc less than 18Ø degrees
(circle A) can be programmed as follows (In absolute
mode, G9Ø):
GØ2 X8Ø Y4Ø R5Ø F125 ;
GØ2
When programming arcs using the address R (arc
radius), the value of R must be equal to, or greater
than half the longest distance travelled by either axis.
NOTE 2.
IØ and JØ can be omitted from program lines.
GØ3 NOTE 3.
When X or Y are omitted from program lines, the arc
end point is located at the same position as the arc
start point and the arc centre is commanded by I or J,
an arc of 36Ø degrees (ie, a complete circle) is as-
(CIRCULAR sumed. When R is used, an arc of Ø degrees is as-
sumed and the cutter does not move.
INTERPOLATION). NOTE 4.
When I, J and R addresses are specified
simultaneously in the same program line, the address
R takes precedence and the other addresses are
ignored.
NOTE 5.
A GØ2 code can be written into a program in two
ways.
GØ2 or G2.
A GØ3 code can be written into a program in two
ways.
GØ3 or G3.
GØ4
A GØ4 command is written in the following format:
GØ4 X _ _ _ _ ;
or GØ4 P _ _ _ _ ;
where the dwell value is programmed using the
address letters X (time in seconds) or P (time in 1/
(DWELL). 1ØØØ seconds), followed by a number indicating this
dwell value.
For example :
GØ4 X1.5 ;
This command is read perform a dwell of 1.5 seconds
duration.
GØ4 P25ØØ ;
This command is read perform a dwell of 2.5 seconds
duration.
NOTE 1.
A decimal point cannot be used with the address P.
NOTE 2.
The dwell is performed at the start of the block in
which it is programmed.
NOTE 3.
The dwell begins when the commanded feedrate of
the previous block reaches zero.
NOTE 4.
The maximum value of a dwell time is 999 seconds.
NOTE 5.
GØ4 is a non-modal G code. It is only active in the
block in which it is programmed.
NOTE 6.
A GØ4 code can be written into a program in two
ways.
GØ4 or G4.
G2Ø
unit input (G21). The standard format for a CNC part
program is to write the G2Ø or G21 code in the first
block of the program.
G code. Type. Units. Lowest input value.
G2Ø Imperial Inch Ø.ØØØ1 inch
G21
G21 Metric Millimetre Ø.ØØ1 mm
DATA INPUT).
NOTE 1.
The status of G2Ø or G21 in the machine controller is
dependant on the option that is saved to the disc.
NOTE 2.
A G2Ø code must not be changed for a G21 code (or
vice versa) during the program.
NOTE 3.
When switching between G2Ø and G21, the offsets
must be set according to the units of measurement
being used.
NOTE 4.
G 2Ø and G21 are both modal G codes within the
same modal group.
G28
On machines fitted with Denford milling software, this
point is also used as the Home position, the point used
by the machine to set the limits of movement for the
X, Y and Z slides.
A G28 code instructs the tool to automatically move
(REFERENCE
to this reference point.
G28
The diagram below shows how the tool could collide
with the billet when manoeuvring towards the
reference point. This is a result of the non-vectored
movements forcing the tool to follow a path which
"cuts" through the edge of the billet.
G28 - POTENTIAL COLLISION THROUGH NOT
USING AN INTERMEDIATE POSITION.
(REFERENCE
+ Z AXIS.
POINT RETURN). + X AXIS.
NOTE - GRAPHIC
SHOWS ELEVATION
OF BILLET, NOT
PLAN.
+ X AXIS.
NOTE - GRAPHIC
SHOWS ELEVATION
OF BILLET, NOT
PLAN.
G28
In the diagram below, the tool is in a position (P1)
where no collision is possible. The intermediate point,
in this case, is not required, so the block can be
written as follows (In incremental mode, G91):
G91 G28 XØ YØ ZØ ;
The intermediate point co-ordinates are still stated, but
+ Z AXIS.
+ X AXIS.
NOTE - GRAPHIC
SHOWS ELEVATION
OF BILLET, NOT
PLAN.
NOTE 3.
G28 is a non-modal G code. It is only active in the
block in which it is programmed.
G4Ø
tapers on the billet, by compensating for the tool
radius.
Complex workpiece shapes are therefore programmed
with cutter compensation mode active. The radius of
the tool (the offset amount) is measured, then
G41
entered into the offset file in the machine controller.
Once set, the tool path can be offset by this value,
regardless of the program.
G42
WORK POSITION AND MOVEMENT COMMAND.
When tool nose radius compensation is required in a
CNC program, the position of the billet in respect to
the tool must be specified using the table below.
COMPENSATION). G41
G42
LEFT HAND
RIGHT HAND
MOVEMENT ON THE LEFT HAND SIDE OF THE PROGRAMMED PATH
G4Ø
The operation instructing a machine to switch to
cutter compensation mode is called the start-up block,
or ramping on block. The start-up block is used to al-
low the tool time to change from moving along the
programmed path line to following either side of the
programmed path line.
G41
The start-up block should satisfy the following points:
1) A G41 or G42 code must be contained in the block,
or specified in the previous block.
2) A GØ1 X, Y, or X and Y move is specified in the
block and the distance of the linear move must be
G42
greater than the tool radius.
3) The tool radius value, "R", entered into the tool
offsets table must not be ØØ.
(CUTTER NOTE 1.
A GØ2 or GØ3 circular interpolation command cannot
NOTE 2.
In cutter compensation start-up, two blocks are read
into the machine controller. The first block is performed
and the second block is entered and held in memory.
In subsequent compensation moves, two blocks are
read in advance, so the machine controller has the
block currently being performed and the next two
blocks in memory.
This is because cutter compensation always needs to
know what happens in the move following the one
being currently performed. The machine controller can
plan ahead to calculate the correct end position for
the current move, that will also be the correct start
position allowing for cutter compensation, for the next
move.
NOTE 3.
The codes G4Ø, G41 and G42 are modal, belonging to
the same modal family. They are incompatible with
each other on the same block.
G4Ø
(G4Ø).
The G4Ø code is used to cancel cutter compensation.
A G4Ø command can only be performed in a block in
which a linear move (ie, GØØ, GØ1, G28) is
programmed.
G41 NOTE 1.
Following the machining of an internal pocket, it is
recommended that the Z axis is withdrawn by using
G42
the GØ1 command, to a position clear of the
workpiece, before the cutter compensation mode is
cancelled.
NOTE 2.
(CUTTER The machine controller enters compensation cancel
mode automatically when :
1) the machine power is first switched on.
COMPENSATION). 2) the reset button on the CRT/MDI controller panel
is pressed.
3) a program is forced to end by performing an MØ2
or M3Ø command.
G4Ø
cancellation of cutter compensation :
+ Y AXIS DIRECTION.
EXAMPLE - USING
CUTTER COMPENSATION
G41
+ X AXIS DIRECTION. MODE.
G42
(CUTTER
COMPENSATION).
O ØØ1Ø
NØØ1Ø GØØ X-15 Y-15 ;
NØØ2Ø G41 XØ YØ F1ØØ ; (Start-Up Move)
NØØ3Ø Y4Ø ;
NØØ4Ø X3Ø Y8Ø ;
NØØ5Ø X6Ø ;
NØØ6Ø GØ2 X1ØØ Y4Ø R4Ø ;
NØØ7Ø GØ1 Y3Ø ;
NØØ8Ø GØ3 X7Ø YØ R3Ø ;
NØØ9Ø XØ ;
NØ1ØØ X-15 Y-15 ; (Cancellation Move)
G73-
blocks of information, with just one or two blocks.
G89
Operation 2 - Rapid traverse in the Z axis to the "R"
point.
Operation 3 - Hole machining procedure.
Operation 4 - Operation at bottom of hole.
(CANNED
Operation 5 - Retraction to R point.
Operation 6 - Rapid traverse in the Z axis to the Initial
level.
CYCLES).
+ Z AXIS DIRECTION.
G73-
1) Data Format (G9Ø and G91).
2) Return Point Level (G98 and G99).
3) Cycle Mode (G73 to G89).
G89
DATA FORMAT COMMAND MODES.
The data format used in canned cycles is specified by
the codes G9Ø and G91, as shown below:
+ Z AXIS DIRECTION.
G73-
The return point position of the tool (ie, to the Initial
Level, or the R Level) is specified by the codes G98
and G99, as shown below:
G89
(CANNED
CYCLES).
+ Z AXIS DIRECTION.
+ Z AXIS DIRECTION.
The Initial level refers to the absolute value of the Z
axis, at the time of change from the positioning mode
top the canned cycle mode.
G73-
(G9Ø) (G98)
or or G.... X.... Y.... Z.... R.... P.... Q.... K.... F.... ;
(G91) (G99)
where,
G89
G.... is defined as the canned cycle.
X.... Y.... is defined as the hole position, in absolute or
incremental value.
Z.... is defined as the distance from the R point to the
bottom of the hole in incremental mode, or the posi-
tion of the hole bottom in absolute mode.
(CANNED R.... is defined as the distance from the initial level to
the R point level in incremental mode, or the position
CYCLES). of the Z datum in relation to the R point level in abso-
lute mode.
P.... is defined as the dwell time to be performed at
the bottom of the hole (see the GØ4 code for more
details).
Q.... is defined as the cut-in distance value or shift
value (Note - this is always specified as an
incremental value).
K.... is defined as the number of repeats, for a series
of holes. When not specified, K=1.
F.... is defined as the feedrate for machining.
NOTE 1.
The addresses P and Q are omitted within some canned
cycles.
NOTE 2.
Once the drilling data has been specified and read into
the machine controller, it is retained until it is either
changed, or the canned cycle cancelled. All the re-
quired data must be specified when the canned cycle
is started and only the data to be changed has to be
specified during the cycle.
G73-
1Ømm deeper:
G9Ø G99 G81 X1Ø Y1Ø Z-15 R2 F1ØØ ;
X2Ø ; (X axis move)
X3Ø Z-25 ; (X and Z change)
G89
X4Ø Z-15 ; (X and Z change)
G8Ø ; (Cancel)
CYCLES).
+ Y AXIS DIRECTION.
+ X AXIS DIRECTION.
G73
(G9Ø) (G98)
or or G73 X.... Y.... Z.... Q.... F.... ;
(G91) (G99)
(HIGH SPEED
PECK DRILLING).
+ Z AXIS DIRECTION.
When machining, the drill is positioned at the co-ordi-
nate point of the first hole, for the X and Y axes and at
the initial level, for the Z axis. The G73 command is
then read into the machine controller and the cycle
begins. The drill will rapid traverse to the R point level
and begin to feed in, until a cut-in distance of Q is
attained. At this point, the drill will retract a small dis-
tance (set within the machine controller). A cut-in dis-
tance of Q at the same feedrate will begin again, fol-
lowed by a similar retraction. These movements will
continue until the total Z depth has been reached. The
drill will rapid traverse out to the Initial level, if a G98
code is programmed within the cycle, or to the R point
level, if a G99 code is programmed within the cycle.
At this point the next block is read into the machine
controller. If this block contains an X, Y or X and Y co-
ordinate the drill will position itself at that point and
the high speed peck drilling cycle will begin again.
G74
(G9Ø) (G98)
or or G74 X.... Y.... Z.... P.... R.... F.... ;
(G91) (G99)
(COUNTER
TAPPING).
+ Z AXIS DIRECTION.
Sequence of moves:
Op 1) Rapid position to X, Y and Z (the Initial level).
Op 2) Rapid traverse to R point level.
Op 3) Feed to Z depth.
Op 4) Dwell P (time for spindle stop and start CW
direction).
Op 5) Feed to R point level.
Op 6) Dwell P (time for spindle stop and start CCW
direction).
If the G98 code is programmed within the cycle, the
next move will be a rapid traverse to the Initial level. If
the G99 code is programmed within the cycle, there
will be no movement.
NOTE 1.
F (Feed) = RPM x Pitch.
G76
(G9Ø) (G98)
or or G76 X.... Y.... Z.... R.... P.... Q.... F.... ;
(G91) (G99)
(FINE BORING).
NOTE 1.
THIS CYCLE CAN ONLY BE USED ON A MACHINE
FITTED WITH A SPINDLE CAPABLE OF ORIENTATION.
BECAUSE THE TOOL MOVES WITHIN THE HOLE
AFTER SPINDLE STOP TO FACE THE OPPOSITE
DIRECTION.
G8Ø
retained in the machine controller memory after the
cycle has finished. The canned cycle must be can-
celled, automatically removing these modal values,
before the next canned cycle can be programmed into
the machine controller.
This is achieved by programming a G8Ø code,
(CANNED CYCLE, following the last block of the canned cycle within the
part program.
CANCEL).
NOTE 1.
The G8Ø code is active when:
1) the machine power is first switched on.
2) the reset button on the CRT/MDI controller panel
is pressed.
3) the Emergency Stop button is pressed.
G81
(G9Ø) (G98)
or or G81 X.... Y.... Z.... R.... F.... ;
(G91) (G99)
(DRILLING -
SPOT BORING).
G82
(G9Ø) (G98)
or or G82 X.... Y.... Z.... P.... R.... F.... ;
(G91) (G99)
(DRILLING -
COUNTER
BORING).
+ Z AXIS DIRECTION.
Sequence of moves:
Op 1) Rapid position to X, Y and Z (the Initial level).
Op 2) Rapid traverse to R point level.
Op 3) Feed to Z depth.
Op 4) Dwell for value P.
Op 5) Rapid traverse to Initial level (G98) or R point
level (G99).
G83
(G9Ø) (G98)
or or G83 X.... Y.... Z.... Q.... R.... F.... ;
(G91) (G99)
(DEEP HOLE
PECK DRILLING).
+ Z AXIS DIRECTION.
Sequence of moves:
Op 1) Rapid position to X, Y and Z (the initial level).
Op 2) Rapid traverse to R point level.
Op 3) Feed in to the value of Q.
Op 4) Rapid traverse out to R point. Rapid traverse back
to within 1mm of depth of Q cut. Operation
moves 2 and 4 are repeated until Z depth is
reached.
Op 5) Rapid traverse to Initial level (G98) or R point
level (G99).
G84
(G9Ø) (G98)
or or G84 X.... Y.... Z.... R.... P.... F.... ;
(G91) (G99)
(TAPPING).
+ Z AXIS DIRECTION.
Sequence of moves:
Op 1) Rapid position to X, Y and Z (the initial level).
Op 2) Rapid traverse to R point level.
Op 3) Feed to Z depth.
Op 4) Dwell P (time for spindle stop and start CCW
direction).
Op 5) Feed to R point level.
Op 6) Dwell P (time for spindle stop and start CW
direction).
If the G98 code is programmed within the cycle, the
next move will be a rapid traverse to the Initial level. If
the G99 code is programmed within the cycle, there
will be no movement.
NOTE 1.
F (Feed) = RPM x Pitch.
G85
(G9Ø) (G98)
or or G85 X.... Y.... Z.... R.... F.... ;
(G91) (G99)
(BORING).
+ Z AXIS DIRECTION.
Sequence of moves:
Op 1) Rapid position to X, Y and Z (the initial level).
Op 2) Rapid traverse to R point level.
Op 3) Feed in to the Z depth.
Op 4) Feed back to R point level.
If the G98 code is programmed within the cycle, the
next move will be a rapid traverse to the Initial level. If
the G99 code is programmed within the cycle, there
will be no movement.
G86
(G9Ø) (G98)
or or G86 X.... Y.... Z.... R.... F.... ;
(G91) (G99)
(BORING).
+ Z AXIS DIRECTION.
Sequence of moves:
Op 1) Rapid position to X, Y and Z (the initial level).
Op 2) Rapid traverse to R point level.
Op 3) Feed to Z depth and spindle stop.
Op 4) Rapid traverse to the initial level and spindle CW
for G98, or rapid traverse to R point level and
spindle CW for G99.
G87
(G9Ø) (G98)
or or G87 X.... Y.... Z.... P..... Q.... R.... F.... ;
(G91) (G99)
(BACK
BORING).
+ Z AXIS DIRECTION.
Sequence of moves:
Op 1) Rapid position to X, Y and Z (the initial level).
Op 2) Spindle stop and orientation. Move the value of Q.
Op 3) Rapid traverse to R point level.
Op 4) Spindle CW and move back the value of Q.
Op 5) Feed in to Z depth (positive direction) and dwell P.
Op 6) Spindle stop and orientate.
Op 7) Move the value of Q.
Op 8) Rapid traverse to R point level.
Op 9) Move back the value of Q and spindle CW.
NOTE 1.
THIS CYCLE CAN ONLY BE USED ON A MACHINE
FITTED WITH A SPINDLE CAPABLE OF ORIENTATION.
BECAUSE THE TOOL MOVES WITHIN THE HOLE
AFTER SPINDLE STOP TO FACE THE OPPOSITE
DIRECTION.
NOTE 2.
A G99 return to R point level is not possible within this
cycle.
G89
(G9Ø) (G98)
or or G86 X.... Y.... Z.... P.... R.... F.... ;
(G91) (G99)
(BORING).
+ Z AXIS DIRECTION.
Sequence of moves:
Op 1) Rapid position to X, Y and Z (the initial level).
Op 2) Rapid traverse to R point level.
Op 3) Feed to Z depth and dwell for value P.
Op 4) Feed out to R point and rapid traverse to initial
level for G98, or feed out to R point for G99.
G9Ø NOTE 1.
The G9Ø code is active when:
G91
are distance moved (including the +/- sign) from last
known programmed position.
(INCREMENTAL
COMMAND).
G94
program are defined in either millimetres per minute
when operating in G21 Metric Mode, or inches per
minute when operating in G2Ø Imperial Mode.
For example:
(G2Ø) F6 = 6 in/min.
(G21) F15Ø = 15Ø mm/min.
(FEED PER
MINUTE).
G CODES - PREPARATORY FUNCTIONS - 67
G CODES - When G95 is active, all feedrates stated within the
program are defined in either millimetres per
G95
revolution when operating in G21 Metric Mode, or
inches per revolution when operating in G2Ø Imperial
Mode.
G98
return the drill or boring bar back to the initial level
after machining a hole.
(RETURN TO
INITIAL LEVEL).
G99
return the drill or boring bar back to the R point level
after machining a hole.
(RETURN TO R
POINT LEVEL).
68 - G CODES - PREPARATORY FUNCTIONS
G CODES - The following canned cycles, when programmed
correctly, will machine either a circular pocket to any
G17Ø-
diameter and depth, or a rectangular pocket to any
side length and depth.
Both canned cycles require two blocks of information
each, with each block having its own G code:
G17Ø
G173
Circular pocket.
G171
G172
Rectangular pocket.
G173
(CIRCULAR/ NOTE 1.
Great care must be taken when using these canned
RECTANGULAR cycles, since each canned cycle can be written three
different ways.
G17Ø
G171
(CIRCULAR POCKET
CANNED NOTE 1.
CYCLE EXAMPLE A). The absolute zero datum position is set in the offset
file.
PROGRAM NUMBER ØØØ2 - ROUGHING PROGRAM - CIRCULAR POCKET - G17Ø AND G171.
[BILLET X75 Y9Ø Z3Ø ; ............................................. Billet size.
[EDGEMOVE X-37.5 Y-45 ; .......................................... Position of datum from the
bottom LH corner of billet.
[TOOLDEF T1 D6 ZØ ; ................................................ Tool no. dia. and position.
O ØØØ2 ; ................................................................. Program no.
NØØ4Ø G91 G28 XØ YØ ZØ ; ..................................... Metric, reference point.
NØØ5Ø MØ6 TØ1 ; ................................................... Tool no.
NØØ6Ø G9Ø GØØ XØ YØ Z1Ø S3ØØØ MØ3 ; ................ Absolute, rapid, tool 1Ømm
above surface, spindle speed
and start.
NØØ7Ø GØ1 ZØ F3ØØ ; ............................................. Tool to surface of job, feed set.
NØØ8Ø G17Ø RØ PØ Q3 XØ YØ Z-6 IØ JØ K-24 ; .......... Circular pocket canned cycle.
NØØ9Ø G171 P75 S3ØØØ R75 F25Ø B35ØØ J2ØØ ; ... Circular pocket canned cycle.
NØ1ØØ GØØ Z25 MØ5 ; ............................................ Rapid, tool to 25mm above
surface, spindle stop.
NØ11Ø G91 G28 XØ YØ ZØ ; ..................................... Incremental, return to
reference point.
NØ12Ø M3Ø ; .......................................................... Program reset.
G17Ø
ØØØ2 follows:
G171
For G17Ø block,
R defines the position of the tool to start cycle ie. Ø
(surface of job).
P defines when P is zero(Ø) the cycle is a roughing
cycle.
Q defines the peck increment, in program number
(CIRCULAR POCKET
ØØØ2, 2 pecks each of 3mm.
X defines the pocket centre in X axis (Ø).
Y defines the pocket centre in Y axis (Ø).
CANNED Z defines the pocket base (-6mm) from job surface.
I defines the side finish allowance (Ø as this is a
CYCLE EXAMPLE A). roughing cycle only).
J defines the base finish allowance (Ø as this is a
roughing cycle only).
K defines the radius of pocket (-24) negative value -
cut in CCW direction).
G17Ø
PROGRAM - CIRCULAR POCKET - G17Ø AND G171.
The difference between program numbers ØØØ2 and
ØØØ3 is that program ØØØ3 leaves a finishing
allowance on the diameter of the pocket and on the
base.
G171
[BILLET X75 Y9Ø Z3Ø ;
[EDGEMOVE X-37.5 Y-45 ;
[TOOLDEF T1 D6 ZØ ;
OØØØ3 ;
NØØ4Ø G91 G21 G28 XØ YØ ZØ ;
CYCLE EXAMPLE B). NØØ9Ø G171 P75 S3ØØØ R75 F25Ø B35ØØ J2ØØ ;
NØ1ØØ GØØ Z25 MØ5 ;
NØ11Ø G91 G28 XØ YØ ZØ ;
NØ12Ø M3Ø ;
G17Ø
ØØØ3 follows:
G171
For G17Ø block,
R defines the position of the tool to start cycle ie. Ø
(surface of job).
P defines when P is zero(Ø) the cycle is a roughing
cycle.
Q defines the peck increment, in program number
(CIRCULAR POCKET
ØØØ3, 2 pecks each of 3mm.
X defines the pocket centre in X axis (Ø).
Y defines the pocket centre in Y axis (Ø).
CANNED Z defines the pocket base (-6mm) from job surface.
I defines the side finish allowance (leaves a finishing
CYCLE EXAMPLE B). allowance of Ø.5).
J defines the base finish allowance (leaves a
finishing allowance of Ø.1).
K defines the radius of pocket (-24) negative value -
cut in CCW direction).
G17Ø
PROGRAM - CIRCULAR POCKET - G17Ø AND G171.
The difference between program numbers ØØØ3 and
ØØØ4 is that in program ØØØ4 the tool moves di-
rectly to the finish depth and executes a final fin-
ishing pass only.
G171
[BILLET X75 Y9Ø Z3Ø ;
[EDGEMOVE X-37.5 Y-45 ;
[TOOLDEF T1 D6 ZØ ;
OØØØ4 ;
NØØ4Ø G91 G21 G28 XØ YØ ZØ ;
(CIRCULAR POCKET
NØØ4Ø MØ6 TØ1 ;
NØØ4Ø G9Ø GØØ XØ YØ Z1Ø S3ØØØ MØ3 ;
CANNED
NØØ4Ø GØ1 ZØ F3ØØ ;
NØØ4Ø G17Ø RØ P1 Q3 XØ YØ Z-6 IØ.5 JØ.1 K-24 ;
G17Ø
ØØØ4 follows:
G171
For G17Ø block,
R defines the position of the tool to start cycle ie. Ø
(surface of job).
P defines when P is 1 (P1) the cycle is a finishing
cycle only.
Q is ignored when P=1.
CANNED
Z defines the pocket base (-6mm) from job surface.
I is ignored when P=1.
J is ignored when P=1.
CYCLE EXAMPLE C). K defines the radius of pocket (-24) negative value -
cut in CCW direction).
NOTE 1.
Although characters are ignored by the program when
run, in certain modes the characters must be pro-
grammed and given a value so that the sequential con-
trol of the program is maintained and errors avoided.
G172
G173
(RECTANGULAR
POCKET CANNED NOTE 1.
CYCLE EXAMPLE A). The absolute zero datum position is set in the offset
file.
PROGRAM NUMBER ØØØ5 - ROUGHING PROGRAM - RECTANGULAR POCKET - G172 AND G173.
[BILLET X75 Y9Ø Z3Ø ; ................................................... Billet size.
[EDGEMOVE X-37.5 Y-45 ; ................................................ Position of datum from the
bottom LH corner of billet.
[TOOLDEF T1 D6 ZØ ; ...................................................... Tool no. dia. and position.
O ØØØ5 ; ....................................................................... Program no.
NØØ4Ø G91 G21 G28 XØ YØ ZØ ; .................................... Metric, reference point.
NØØ5Ø MØ6 TØ1 ; ......................................................... Tool no.
NØØ6Ø GØØ XØ YØ Z1Ø S3ØØØ MØ3 ; ............................. Absolute, rapid, tool 1Ømm
above surface, spindle
speed and start.
NØØ7Ø GØ1 ZØ F3ØØ ; ................................................... Tool to surface of job, feed
set.
NØØ8Ø G172 I-5Ø KØ PØ Q3 RØ X-25 Y-25 Z-6 ; ............... Rectangular pocket cycle.
NØØ9Ø G173 IØ KØ P75 T1 S3ØØ R75 F25Ø B35ØØ J2ØØ Z5 ; Rectangular pocket cycle.
NØ1ØØ GØØ Z25 MØ5 ; .................................................. Rapid, tool to 25mm above
surface, spindle stop.
NØ11Ø G91 G28 XØ YØ ZØ ; ........................................... Incremental, return to
reference point.
NØ12Ø M3Ø ; ................................................................ Program reset.
G172
ØØØ5 follows:
G173
For G172 block,
I defines the pocket X length (-5Ø).
J defines the pocket Y length (-5Ø)
K defines the radius of corner roundness (not
applicable to Denford software).
P defines that Ø = roughing cycle.
(RECTANGULAR
Q defines the pocket Z increment (peck increments in
above cycle 2-3mm pecks).
R defines the Absolute Z 'R' point.
POCKET CANNED X defines the pocket corner X (Absolute position
relative to the X datum position).
G172
- The I and J are signed according to the direction of
travel +/positive being CW and -/negative being
CCW.
- K must be programmed as Ø (zero). For Denford
software, the corner radius is the cutter radius.
- X and Y relate to an absolute zero on the
G173
workpiece, ie, the centre of the workpiece. In
program number ØØØ5, the zero is set in the
centre of the workpiece so the distance to the
bottom LH corner is Y -25 and X -25, as shown
below.
(RECTANGULAR
POCKET CANNED
CYCLE EXAMPLE A).
G172
PROGRAM - RECTANGULAR POCKET - G172 AND G173.
[BILLET X75 Y9Ø Z3Ø ;
[EDGEMOVE X-37.5 Y-45 ;
[TOOLDEF T1 D6 ZØ ;
G173
OØØØ6 ;
NØØ4Ø G91 G21 G28 XØ YØ ZØ ;
NØØ5Ø MØ6 TØ1 ;
NØØ6Ø G9Ø GØØ XØ YØ Z1Ø S3ØØØ MØ3 ;
NØØ7Ø GØ1 ZØ F3ØØ ;
G172
ØØØ6 follows:
G173
For G172 block,
I defines the pocket X length (-5Ø).
J defines the pocket Y length (-5Ø)
K defines the radius of corner roundness (not
applicable to Denford software).
P defines that Ø = roughing cycle.
(RECTANGULAR
Q defines the pocket Z increment (peck increments in
above cycle 2-3mm pecks).
R defines the Absolute Z 'R' point.
POCKET CANNED X defines the pocket corner X (Absolute position
relative to the X datum position).
G172
PROGRAM - RECTANGULAR POCKET - G172 AND G173.
[BILLET X75 Y90 Z30 ;
[EDGEMOVE X-37.5 Y-45 ;
[TOOLDEF T1 D6 Z0 ;
G173
O0007 ;
NØØ4Ø G91 G21 G28 X0 Y0 Z0 ;
NØØ4Ø M06 T01 ;
NØØ4Ø G90 G00 X0 Y0 Z10 S3000 M03 ;
NØØ4Ø G01 Z0 F300 ;
G172
ØØØ7 follows:
G173
For G172 block,
I defines the pocket X length (-5Ø).
J defines the pocket Y length (-5Ø)
K defines the radius of corner roundness (not
applicable to Denford software).
P defines that 1 = finishing cycle only.
(RECTANGULAR
Q defines the pocket Z increment (peck increments in
above cycle 2-3mm pecks). This is ignored for a
one step finishing cycle.
NOTE 1.
Although characters are ignored by the program when
run, in certain modes the characters must be pro-
grammed and given a value so that the sequential con-
trol of the program is maintained and errors avoided.
CONTROLS. MØ5*
MØ6
Spindle Stop
Automatic Tool Change
MØ8 Coolant On
MØ9* Coolant Off
M1Ø Vice/Work Clamp Open
M11 Vice/Work Clamp Close
M13 Spindle Forward and Coolant On
M14 Spindle Reverse and Coolant On
M19 Spindle Orientation
M2Ø ATC Arm In
M21 ATC Arm Out
M22 ATC Arm Down
M23 ATC Arm Up
M24 ATC Drawbar Unclamp
M25 ATC Drawbar Clamp
M27 Reset Carousel to Pocket One
M3Ø* Program Reset and Rewind
M32 Carousel CW
M33 Carousel CCW
M38 Door Open
M39 Door Close
M62 Auxiliary Output 1 On
M63 Auxiliary Output 2 On
CONTROLS. M71
M76
Mirror in Y On
Wait for Auxiliary Output 1 Off
M77 Wait for Auxiliary Output 2 Off
M8Ø Mirror in X Off
M81 Mirror in Y Off
M98 Sub Program Call
M99 Sub Program End and Return
Code listing full and correct at the time of printing.
NOTE 3.
The M codes listed between M19 to M27 inclusive
and M32 to M33 inclusive are used for maintenance
only. They are entered through the MDI panel on the
machine tool and do not appear in a CNC part
program.
MØØ
When the machine controller reads the code MØØ
within a block, it halts the program. The [CYCLE
START] key must be pressed to allow the program to
continue.
(PROGRAM STOP).
MØ1
The MØ1 code performs the same function as the MØØ
code, except the machine controller only recognises
the signal to halt the program if the optional [STOP]
input key is activated.
(OPTIONAL STOP).
MØ2
This code indicates the end of a program and
performs a general reset function on the machine
controller, ie, the CNC reverts to its initial state. The
code also acts as an MØ5.
(PROGRAM RESET).
MØ3
The clockwise direction of the spindle is determined
by viewing from the back of the machine headstock,
along the Z axis towards the tailstock.
The spindle start command is activated at the
beginning of the block in which it is programmed, ie,
before any axis movement occurs.
(SPINDLE FORWARD).
MØ4
An MØ4 code acts in the same way as an MØ3 code,
only the spindle rotates in the opposite direction.
(SPINDLE REVERSE).
MØ5
The MØ5 code, to stop the spindle rotating, is
activated at the end of the block in which it is
programmed, ie , after any axis movement.
(SPINDLE STOP).
MØ6
This code activates the machine turret and is followed
by the code T_ _ _ _, instructing it to move to the
stated tool number.
For example :
MØ6 TØ3Ø3 ;
This command is read change automatically from the
(AUTOMATIC current tool number to tool number 3.
TOOL CHANGE).
MØ8
This code switches the coolant pump on.
(COOLANT ON).
MØ9
This code switches the coolant pump off.
(COOLANT OFF).
M1Ø
This code will open the jaws of a power vice.
(VICE OPEN).
M11
This code will close the jaws of a power vice.
(VICE CLOSE).
M13
This code combines the functions of MØ3 and MØ8
together. The MØ5 code will stop both the spindle and
coolant.
(SPINDLE FORWARD
AND COOLANT ON).
M14
This code performs the same function as M13 but the
spindle rotates in the opposite direction.
(SPINDLE REVERSE
AND COOLANT ON).
M19
This code will orientate the machine spindle - see your
machine specification.
(SPINDLE
ORIENTATION).
M2Ø
(beneath the spindle).
M21
This code moves the Automatic Tool Changer arm
out (away from the spindle).
M22
This code moves the Automatic Tool Changer in a
downwards direction.
(ATC ARM
DOWN).
M23
This code moves the Automatic Tool Changer in an
upwards direction.
M24
This code unclamps the tool collet currently held in the
spindle.
(ATC DRAWBAR
UNCLAMP).
M25
This code clamps a tool collet in the spindle.
(ATC DRAWBAR
CLAMP).
M27
This code is used to reset the carousel back to
position one.
(RESET CAROUSEL
TO POCKET ONE).
M3Ø
end of the program. Control is then reset back to the
beginning of this program.
If the M3Ø code is followed by a block number, the
program will be reset back to the stated block number.
For example :
M32
This code is used to rotate the carousel in a clockwise
direction (viewed in plan view).
(CAROUSEL CW).
M33
This code is used to rotate the carousel in a counter
clockwise direction (viewed in plan view).
(CAROUSEL CCW).
M38
(DOOR OPEN).
M39
This code closes the machine door.
(DOOR CLOSE).
M62
M63 - Auxiliary Output 2 On.
M64 - Auxiliary Output 1 Off.
M65 - Auxiliary Output 2 Off.
M66* - Wait for Auxiliary Output 1 On.
M63
M67* - Wait for Auxiliary Output 2 On.
M76 - Wait for Auxiliary Output 1 Off.
M77 - Wait for Auxiliary Output 2 Off.
M64
These codes allow a signal to be sent from the
machine controller to a different device, such as a
robot, then wait for a return signal instructing that
the device has completed its function.
M65
M66
M67
M76
M77
(AUXILIARY OUTPUT
FUNCTIONS).
M7Ø
This code changes the sign of X within a program
around the datum.
For example:
GØ1 X25.5 ;
M7Ø
GØ1 X25.5 ; (Tool would move to X-25.5).
(MIRROR IN
X ON).
M71
This code performs the same function as G7Ø, but
affects the Y axis.
(MIRROR IN
Y ON).
M8Ø
This code cancels the mirror image in the X axis.
(MIRROR IN
X OFF).
M81
This code cancels the mirror image in the Y axis.
(MIRROR IN Y
OFF).
M98
This code will cause the machine controller to jump
across from the main program to read a different
program in its memeory (called a sub program).
(SUB PROGRAM
CALL).
M99
On the last line of a sub program, the code M99 is
entered. This reverts control back to the main
program.
END AND
RETURN).
M CODES - MISCELLANEOUS FUNCTIONS - 97
98 - M CODES - MISCELLANEOUS FUNCTIONS