Control HNC MANUAL DE PROGRAMACION
Control HNC MANUAL DE PROGRAMACION
Control HNC MANUAL DE PROGRAMACION
Programming Guide
V3.3
November, 2007
Preface
Organization of documentation
1. General
2. Preparatory Function
3. Interpolation Function
4. Feed Function
5. Coordinate System
6. Spindle Speed Function
7. Tool Function
8. Miscellaneous Function
9. Functions to Simplify Programming
10. Comprehensive Programming Example
11. Custom Macro
Applicability
This Programming Guide is applicable to the following CNC system:
HNC-18iT/19iT v4.0
HNC-18xp/T
HNC-19xp/T
HNC-21TD/22TD v05.62.07.10
Internet Address
http://www.huazhongcnc.com/
i
Table of Contents
Table of Contents
Preface...............................................................................................................................................i
1 General.....................................................................................................................................1
1.1 CNC Programming.......................................................................................................2
1.2 Interpolation.................................................................................................................4
1.2.1 Linear Interpolation..........................................................................................4
1.2.2 Circular Interpolation.......................................................................................5
1.2.3 Thread Cutting.................................................................................................5
1.3 Feed Function...............................................................................................................6
1.4 Coordinate System.......................................................................................................7
1.4.1 Reference Point................................................................................................7
1.4.2 Machine Coordinate System............................................................................8
1.4.3 Workpiece Coordinate System.........................................................................9
1.4.4 Setting Two Coordinate Systems at the Same Position.................................10
1.4.5 Absolute Commands......................................................................................11
1.4.6 Incremental Commands.................................................................................12
1.4.7 Diameter/Radius Programming.....................................................................13
1.5 Spindle Speed Function..............................................................................................14
1.6 Tool Function.............................................................................................................15
1.6.1 Tool Selection.................................................................................................15
1.6.2 Tool Offset......................................................................................................15
1.7 Miscellaneous Function.............................................................................................18
1.8 Program Configuration...............................................................................................19
1.8.1 Structure of an NC Program..........................................................................19
1.8.2 Main Program and Subprogram.....................................................................20
2 Preparatory Function (G code)...............................................................................................21
2.1 G code List.................................................................................................................22
3 Interpolation Functions..........................................................................................................24
3.1 Positioning (G00).......................................................................................................25
3.2 Linear Interpolation (G01).........................................................................................26
3.3 Circulation Interpolation (G02, G03)........................................................................31
3.4 Chamfering and Rounding (G01, G02, G03)............................................................37
3.4.1 Chamfering (G01)..........................................................................................37
3.4.2 Rounding (G01).............................................................................................38
3.4.3 Chamfering (G02, G03).................................................................................40
3.4.4 Rounding (G02, G03)....................................................................................41
3.5 Thread Cutting with Constant Lead (G32)................................................................43
3.6 Tapping (G34)............................................................................................................46
4 Feed Function.........................................................................................................................49
4.1 Rapid Traverse (G00).................................................................................................50
4.2 Cutting Feed (G94, G95)...........................................................................................51
4.3 Dwell (G04)................................................................................................................52
5 Coordinate System.................................................................................................................53
5.1 Reference Position Return (G28)...............................................................................54
5.2 Auto Return from Reference Position (G29).............................................................55
5.3 Setting a Workpiece Coordinate System (G92).........................................................57
5.4 Selecting a Machine Cooridinate System (G53)........................................................58
5.5 Selecting a Workpiece Coordinate System (G54~G59)............................................59
5.6 Origin of a Workpiece Coordinate System (G51, G50).............................................61
5.7 Absolute and Incremental Programming (G90, G91)................................................62
5.8 Diameter and Radius Programming (G36, G37).......................................................64
5.9 Inch/Metric Conversion (G20, G21)..........................................................................66
ii
Table of Contents
6 Spindle Speed Function..........................................................................................................67
6.1 Limit of Spindle Speed (G46)....................................................................................68
6.2 Constant Surface Speed Control (G96, G97).............................................................69
7 Tool Function..........................................................................................................................71
7.1 Tool Selection and Tool Offset (T code)....................................................................72
7.2 Tool Radius Compensation (G40, G41, G42)............................................................74
8 Miscellaneous Function..........................................................................................................76
8.1 M code List.................................................................................................................77
8.2 CNC M-Function.......................................................................................................78
8.2.1 Program Stop (M00)......................................................................................78
8.2.2 Optional Stop (M01)......................................................................................78
8.2.3 End of Program (M02)...................................................................................78
8.2.4 End of Program with return to the beginning of program (M30)..................78
8.2.5 Subprogram Control (M98, M99)..................................................................79
8.3 PLC M Function.........................................................................................................81
8.3.1 Spindle Control (M03, M04, M05)................................................................81
8.3.2 Coolant Control (M07, M08, M09)...............................................................81
9 Functions to Simplify Programming......................................................................................82
9.1 Canned Cycles............................................................................................................83
9.1.1 Internal Diameter/Outer Diameter Cutting Cycle (G80)...............................83
9.1.2 End Face Turning Cycle (G81)......................................................................88
9.1.3 Thread Cutting Cycle (G82)..........................................................................91
9.1.4 End Face Peck Drilling Cycle (G74).............................................................94
9.1.5 Outer Diameter Grooving Cycle (G75).........................................................96
9.2 Multiple Repetitive Cycle..........................................................................................98
9.2.1 Stock Removal in Turning (G71)...................................................................98
9.2.2 Stock Removal in Facing (G72)..................................................................104
9.2.3 Pattern Repeating (G73)..............................................................................108
9.2.4 Multiple Thread Cutting Cycle (G76)..........................................................111
10 Comprehensive Programming......................................................................................114
10.1 Example 1.................................................................................................................114
10.2 Example 2.................................................................................................................116
10.3 Example 3.................................................................................................................118
10.4 Example 4.................................................................................................................119
11 Custom Macro......................................................................................................................120
11.1 Variables...................................................................................................................121
11.1.1 Type of Variables..........................................................................................121
11.1.2 System Variables..........................................................................................122
11.2 Constant....................................................................................................................129
11.3 Operators and Expression........................................................................................130
11.4 Assignment...............................................................................................................131
11.5 Selection statement IF, ELSE,ENDIF......................................................................132
11.6 Repetition Statement WHILE, ENDW....................................................................133
11.7 Macro Call................................................................................................................134
11.8 Example....................................................................................................................136
iii
1. General
1 General
This chapter is to introduce the basic concepts in Computerized Numerical Control (CNC)
system: HNC-21T/22T, HNC-18iT/19iT, HNC-18xp/T, HNC-19xp/T.
1
1. General
2
1. General
1. Read drawing
40
150
4. Manufacture a part
X
3
1. General
1.2 Interpolation
Interpolation refers to an operation in which the machine tool moves along the workpiece
parts. There are five methods of interpolation: linear, circular, helical, parabolic, and cubic.
Most CNC machine can provide linear interpolation and circular interpolation. The other
three methods of interpolation (helical, parabolic, and cubic interpolation) are usually used
to manufacture the complex shapes, such as aerospace parts. In this manual, linear and
circular interpolation are introduced.
4
1. General
Note:
In this manual, it is assumed that tools are moved against workpieces.
5
1. General
Tool
Chuck
For example:
F2.0 //feed the tool 2mm, while the workpiece makes one turn
6
1. General
Tool post
Chuck
Reference
position
7
1. General
In general, three basic linear coordinate axes of motion are X, Y, Z. Moreover, X, Y, Z axis
of rotation is named as A, B, C correspondently. Due to different types of turning machine,
the axis direction can be decided by following the rule – “three finger rule” of the right
hand.
+Y +B +Z '
+X +Y +Z
+Y
+X'
+X
+C +A
+Z +A +B
+Y '
+C
+X
+Z
8
1. General
Y+
Z- X+
90°
W 90° 90°
X- Z+
Y-
X
P4
P3 P2 Φ60
P1 Φ40
Φ25
7.5 Z
15
25
35
9
1. General
X X
40
150
30
80
100
Figure 1.13 The coordinate zero point set at the end face of workpiece
10
1. General
X
P4
P3 P2 Φ60
P1 Φ40
Φ25
7.5 Z
15
25
35
11
1. General
X
P4
P3 P2 Φ60
P1 Φ40
Φ25
10 10 7.5 7.5 Z
12
1. General
X
B
A
Z
60
80
X
B
A
Z
60
80
13
1. General
V: Cutting speed
Chuck v m/min
N·min-1
1000 v
The formula to get the spindle speed is: N
D
N: the spindle speed
v: cutting speed
D: diameter value of the workpiece
Example: When the diameter of workpiece is 200mm, and the cutting speed is 300m/min,
The constant surface speed refers to the cutting speed even when the workpiece diameter is
changed, and the CNC changes the spindle speed.
14
1. General
Tool number
01 06
02 05
Tool post
03 04
Rough Thread
Standard cutting Finishing Grooving cutting
tool tool tool tool tool
workpiece
15
1. General
Tool Length Compensation
There are two kind of ways to specify the value of tool length compensation.
- Absolute value of tool length compensation (the distance between tool tip and
machine reference point)
- Incremental value of tool length compensation (the distance between tool tip and
the standard tool)
As it is shown in Figure 1.21, L1 is the tool length on X axis. L2 is the tool length on Z axis.
It should be noted that the tool wear values on X axis or Z axis are also contained in the tool
length compensation.
R S
P L1
P=Tool tip
R=Radius
S=Cutting edge center
L2
P
Tool nose radius center
Imaginary tool nose
16
1. General
The direction of imaginary tool nose is determined by the tool direction during cutting.
Figure 1.23 and Figure 1.24 show the relation between the tool and the imaginary tool tip.
4 8 3
● ● ●
0●9 Z 7
5 ● ●
X
● ● ●
1 6 2
1 6 2
● ● ●
0●9 Z 7
5 ● ●
X
● ● ●
4 8 3
17
1. General
When a move command and M code are specified in the same block, there are two ways to
execute these commands:
1) Pre-M function
M command is executed before the completion of move command
2) Post-M function
M command is executed after the completion of move command.
The sequence of the execution depends on the specification of the machine tool builder.
18
1. General
Program
Program number
%1000
N01 G91 G00 X50 Y60
block
Figure 1.25 Structure of an NC Program
- Format of program name
The program name must be specified in the format OXXXX (X could be letters or
numbers).
- Format of program number
The program number should be started with %XXXX or OXXXX (X could be numbers
only).
- Format of blocks
A block starts with the program block number.
Program block
Spindle function
Miscellaneous function
Feed Function
Coordinate - Dimension word
Preparatory function
Program block number
Figure 1.26 Structure of Block
19
1. General
- Format of end of program
The last block should contain M02 or M03 to indicate the end of program.
- Format of Comments
All information after the “;” is regarded as comments.
All information between “( )” is regarded as comments.
Instruction 1 Instruction 1
Instruction 2 Instruction 2
Instruction n
Instruction n+1
Note:
Main program and its subprogram must be written in a same file with a different program
codes.
20
2. Preparatory Function
One-shot G code The G code is only effective in the block in which it is specified
21
2. Preparatory Function
22
2. Preparatory Function
G71 Stock Removal in Turning
G72 Stock Removal in Facing
G73
G74 Pattern repeating
G75 Front drilling cycle
G76
G80 06 Side drilling cycle
G81 Multiple thread cutting cycle
Internal diameter/Outer diameter cutting cycle
G82 End face turning cycle
Thread cutting cycle
◣G90 Absolute programming
13
G91 Incremental programming
G92 00 Setting a coordinate system
◣G94 Feedrate per minute
14
G95 Feedrate per revolution
G96 Constant cutting speed
16
◣G97 Constant cutting speed cancel
Explanation:
1) G codes in 00 group are one-shot G code, while the other groups are modal G
code.
2) ◣ means that it is default setting.
23
3. Interpolation Function
3 Interpolation Functions
This chapter would introduce:
6) Tapping (G34)
24
3. Interpolation Function
Function
The tool is moved at the highest possible speed (rapid traverse). If the rapid traverse
movement is required to execute simultaneously on several axes, the rapid traverse speed is
decided by the axis which takes the most time. The operator can use this function to position
the tool rapidly, to travel around the workpiece, or to approach the tool change position.
Example
Move tool from P1 (45, 90) to P2 (10, 20) at the rapid traverse speed.
P1
P2
M W
Z
Absolute programming:
G00 X10 Z20
Incremental programming:
G00 U30 W70
25
3. Interpolation Function
Function
The tool is moved along the straight line at the specified feedrate.
26
3. Interpolation Function
Example 1
Use G01 command to rough machining and finish machining the simple cylinder part.
50
27
Example 2
Use G01 command to rough machining and finish machining simple conical part.
50
Use G01 command to rough machining and finish machining the part.
2×45°
20
50
%3308
N1 T0101
N2 M03 S450
N4 G00 X31 Z3
N6 G00 X36
N7 Z3
N8 X25
N11 Z3
N12 X15
N16 T0202
N20 Z-20
N21 X28
N24 M05
N25 M30
3.3 Circulation Interpolation (G02, G03)
Programming
G02 I_K_
X(U ) _Z(W ) _ F_
G03 R_
U, W Coordinate values of the circle end point with reference to the circle starting point
in incremental command.
I, K Coordinate values of the circle center point with reference to the circle starting
F Feedrate
+X
z z w k
w k
+Z
A
A
R
u/2 i R
x/2 u/2 i
B
B
x/2 Circle center point
Circle center point
+Z +X
Function
R15
Φ 22
Φ 26
%3309
N1 T0101
N2 G00 X40 Z5
N3 M03 S400
N4 G00 X0
N5 G01 Z0 F60
N8 G01 Z-40
N9 X40 Z5
N10 M30
Example 2
R15
35
N1 T0101 N1 T0101
N8 X36 N8 X36
R4
R10
Φ20
Φ24
24
40
R2
20
40
D B u/2
C
K H
c G
z x/2
+Z
Function
A chamfer can be inserted between two blocks which intersect at a right angle (point
A→B→C).
D r u/2
C B
G
z x/2
+Z
Function
A corner can be inserted between two blocks which intersect at a right angle (point
A→B→C).
70 10
3 36
22
R3
Φ70
Φ26
Φ65
%3314
N1 M03 S460
N2 G00 U-70 W-10
N3 G01 U26 C3 F100
N4 W-22 R3
N5 U39 W-14 C3
N6 W-34
N7 G00 U5 W80
N8 M30
B r
D C
RL= G
z
+Z
Function
A chamfer can be inserted between two blocks which intersect at a right angle (point
A→B→C).
r
B u/2
rc=
D
C G
z x/2
+Z
Function
A corner can be inserted between two blocks which intersect at a right angle (point
A→B→C).
70 10
4 36
21
Φ70
Φ26
Φ56
R15
+X
z w
δ
e α
B u/ 2
x/ 2 r A
+Z
L
Function
Cylindrical thread, taper thread and face thread can be machined with G32.
Note:
1) The spindle speed should remain constant during rough cutting and finish cutting.
2) The feed hold function is ineffective during the thread cutting. Even though the
“feed hold” button is pressed, it is effective until the thread cutting is done.
3) It is not recommended to use the constant surface speed control during the thread
cutting.
4) Allowant amount must be specified to avoid the error.
Example
Given that F=1.5mm, =1.5mm, =1mm, cutting for four times and each cutting depth
is separately: 0.8mm, 0.6 mm, 0.4mm, 0.16mm. It is diameter programming.
100
M30×1.5
80
Function
With this command, the operator can rigid tap a thread.
In general, there is overshoot of the tap at the bottom of the thread during the spindle-
braking portion of the tapping cycle. It can be set by PMC parameters (Table 3-1) to
eliminate the overshoot errors.
Table 3-3 PMC parameters
Optional dwelled unit for tapping is only effective when “dwelled unit for tapping” is
assigned to “0”. Moreover, it is not necessary to restart the system.
Since the workpiece is chucked on the spindle, the spindle decceleration time of turning
machine is more than a milling machine’s. The quicker the spindle rotates, the quicker the
feedrate on Z axis is, and then the more time the decceleration time takes. Thus, the spindle
speed should be set accoording to the thread length.
Example
The following is a tested data for tapping when the thread lead is 1.25mm.
%0034
T0101
S100
G90G1X0Z0F500
G34K-10F1.25P2
S200
G90G1X0Z0F500
G34K-10F1.25P2
S300
G90G1X0Z0F500
G34K-10F1.25P2
S400
G90G1X0Z0F500
G34K-20F1.25P2
S500
G90G1X0Z0F500
G34K-30F1.25P3
S600
G90G1X0Z0F500
G34K-40F1.25P3
S700
G90G1X0Z0F500
G34K-50F1.25P3
S800
G90G1X0Z0F500
G34K-50F1.25P2
S1000
G90G1X0Z0F500
G34K-60F1.25P3
M30
4 Feed Function
There are two kinds of feed functions:
1. Rapid Traverse
The tool is moved at the rapid traverse speed set in CNC.
2. Cutting Feed
The tool is moved at the programmed cutting feedrate.
This rapid traverse speed can be controlled by the machine control panel. For more detailed
information, please refer to turning operation manual.
4.2 Cutting Feed (G94, G95)
Programming
G94 [F_ ]
G95 [F_ ]
Note:
1) G94 is the default setting
2) G95 is only used when there is spindle encoder.
Function
The feedrate can be set by G94 or G95.
4.3 Dwell (G04)
Programming
G04 P_
Function
It can be used to interrupt machining to get the smooth surface. It can be used to control the
groove cutting, drilling, and turning path.
5. Coordinate System
5 Coordinate System
This chapter would introduce:
1) Reference Position Return (G28)
2) Auto Return from Reference Position (G29)
3) Setting a Workpiece Coordinate System (G92)
4) Selecting a Machine Coordinat System (G53)
5) Selecting a Workpiece Coordinate System (G54~G59)
6) Origin of a Workpiece Coordinate System (G51, G50)
7) Absolute and Incremental Programming (G90, G91)
8) Diameter and Radius Programming (G36, G37)
9) Inch/Metric Conversion (G20, G21)
5. Coordinate System
Function
The tool is moved to the intermediate point rapidly, and then returned to the reference point.
Intermediate position
X
Reference position
Function
The tool is moved rapidly from the intermediate point defined in G28 to the end point. Thus,
G29 is generally used after G28 is defined.
Note:
G29 is one-shot G code.
5. Coordinate System
Example
Use G28, G29 command to program the track shown in. It moves from the starting point A
to the intermediate point B, and then returns to the reference point R. At last, it moves from
the reference point R to the end point C through the intermediate point B.
+X
200
R
100
B
A C
Φ50
Φ40
Φ80
+Z
250
%3317
N1 T0101
N2 G00 X50 Z100
N3 G28 X80 Z200
N4 G29 X40 Z250
N5 G00 X50Z100
N6 M30
5. Coordinate System
Functions
G92 can set a workpiece coordinate system based on the current tool position (X_ Z_).
Example
Use G92 to set a workpiece coordinate system.
+X
254
44
Φ180
+Z
Origin on Origin on
left end face right end face
Function
A machine coordinate system is selected, and the tool moves to the position at the rapid
traverse speed.
Note:
1) Absolute values must be specified in G53. The incremental values would be
ignored by G53.
2) G53 is one-shot G code.
5. Coordinate System
X_ Z_
G 55
G 56
G 57
G 58
G 59
Function
There are six workpiece coordinate system to be selected. If one coordinate system is
selected, the tool is moved to a specified point.
Note:
1) The workpiece coordinate system must be set before these commands (G54~G59)
are used. The workpiece coordinate system can be set by using the MDI panel. For
detailed information, please refer to the turning operation manual.
2) Reference position must be returned before these commands (G54~G59) are
executed.
3) G54 is the default setting.
5. Coordinate System
Example
Select one of workpiece coordinate system, and the tool path is Current point→A→B.
X
30 B
X
40 A
G59 O 30 Z
G54 O 30 Z
Machine Zero Point
Function
The origin of workpiece coordinate system can be moved.
Note:
1) G51 is only effective when T command or G54~G59 is defined in the program.
2) G50 is only effective when T command or G54~G59 is defined in the program.
Example
%1234
G51 U30 W10
M98 P1111 L4
G50
T0101
G01 X30 Z14
M30
%1111
T0101
G01 X32 Z25
G01 X34.444 Z99.123
M99
5. Coordinate System
Function
The tool is moved to the specified position.
Example
Move the tool from point 1 to point 2 through point 3, and then return to the current point.
3
1 30
2
4 40
1
2
Programming
G36
G37
Function
The coordinate value on X axis is specified in two ways: diameter or radius. It allows to
Note:
1) In all the examples of this book, we always use diameter programming if the
programming is the default setting. However, G36 and G37 can be used to
the default setting. However, G36 and G37 can be used to exchange. The system
Use Diameter programming and Radius programming for the same path
+X 254
160 44
Φ 180
Φ 50
Φ 20
Figure 5.53 Diameter and Radius Programming – Example
Function
Depending on the part drawing, the workpiece geometries can be programmed in metric
measures or inches.
6. Spindle Speed Function
S is modal G code command; it is only available when the spindle is adjustable. Spindle
speed programmed by S code can be adjusted by overrides on the machine control panel.
Function
G46 command can set the minimum of spindle speed, and the maximum of spindle speed.
Note:
It can only used with G96 (constant surface speed control command).
6. Spindle Speed Function
Function
G96 and G97 commands are to control the constant surface speed.
Note:
1) The spindle speed must be controlled automatically when the constant surface
cutting command is executed.
2) The maximum of spindle speed can be set by the axis parameter.
6. Spindle Speed Function
Example
Use the constant surface control command
40
31
27
R5
R15
Φ 22
Φ 26
%3318
N1 T0101
N2 G00 X40 Z5
N3 M03 S460
N4 G96 S80
N5 G46 X400 P900
N5 G00 X0
N6 G01 Z0 F60
N7 G03 U24 W-24 R15
N8 G02 X26 Z-31 R5
N9 G01 Z-40
N10 X40 Z5
N11 G97 S300
N12 M30
7. Tool Function
7 Tool Function
This chapter would introduce:
1) Too selection and Tool offset (T code)
2) Tool radius compensation (G40, G41, G42)
7. Tool Function
Functions
To select the desired tool, T command makes the turret turn, selects a cutter, and calls the
compensation value.
Note:
1) T command is only effective when it is used with tool move command, such as
G00
2) When T command and tool move command are in the same program block, T
command is executed at first.
3) The same tool can have different compensation values. For example, T0101,
T0102, T0103 are possible.
4) Different tool can have same compensation values. For example, T0101, T0201,
and T0301 are possible.
7. Tool Function
Example
%0012
N01 T0101
N02 M03 S460
N03 G00 X45 Z0
N04 G01 X10 F100
N05 G00 X80 Z30
N06 T0202
N07 G00 X40 Z5
N08 G01 Z-20 F100
N09 G00 X80 Z30
N10 M30
7. Tool Function
G42
G41
Function
These commands can control the tool radius compensation to get the equidistant tool paths
for different tools.
Note:
1) G40, G41, and G42 must be used with G00 or G01.
2) The tool radius compensation value is assigned in T code.
7. Tool Function
Example
Use the tool radius compensation, and program for the part shown in Figure 7.2
40
31
27
R5
R15
Φ 22
Φ 26
8 Miscellaneous Function
As it is mentioned in Chapter 1.8, there are two ways of execution when a move command
and M code are specified in the same block.
1) Pre-M function
M command is executed before the completion of move command.
2) Post-M function
M command is executed after the completion of move command
There are two types of M code: one-shot M code, and modal M code.
Table 8-5 Type of M code
Type Meaning
One-shot M code The M code is only effective in the block in which it is specified
◣: default setting
8. Miscellaneous Function
button ( ) on the machine control panel. Otherwise, the program would not be stopped
even if there is M01 code in the program.
Φ14.77
Φ21.2
R60
Φ24
R8
4.923
R40
44.8
73.436
%3111
N1 G92 X32 Z1
N2 G00 Z0 M03 S46
N3 M98 P0003 L5
N4 G36 G00 X32 Z1
N5 M05
N6 M30
%0003
N1 G37 G01 U-12 F100
N2 G03 U7.385 W-4.923 R8
N3 U3.215 W-39.877 R60
N4 G02 U1.4 W-28.636 R40
N5 G00 U4
N6 W73.436
N7 G01 U-5 F100
N8 M99
8. Miscellaneous Function
+X
z w
D
4R A
3R 1R u/2
2F
C B
x/2
+Z
Function
This command can implement the straight cutting. The machining path is
A→B→C→D→A.
9. Functions to Simplify Programming
Taper Cutting Cycle
Programming
G80 X(U)_ Z(W)_ I_ F_
+X z w
D
4R A
3R 1R u/2
C
2F i
x/2 B
+Z
Function
This command can implement the taper cutting. The machining path is A→B→C→D→A.
9. Functions to Simplify Programming
Example 1
Use G80 command to machine the cylindrical part in two steps – rough machining and finish
machining.
30 35
50
%3320
N1 T0101
N2 M03 S460
N3 G00 X90Z20
N4 X40 Z3
N5 G80 X31 Z-50 F100
N6 G80 X30 Z-50 F80
N7 G00X90 Z20
N8 M30
9. Functions to Simplify Programming
Example 2
Use G80 command to machine the tapered part in two steps – rough machining and finish
machining.
50
%3321
N1 T0101
N2 G00 X100Z40 M03 S460
N3 G00 X40 Z5
N4 G80 X31 Z-50 I-2.2 F100
N5 G00 X100 Z40
N6 T0202
N7 G00 X40 Z5
N8 G80 X30 Z-50 I-2.2 F80
N9 G00 X100 Z40
N10 M05
N11 M30
9. Functions to Simplify Programming
Example 3
Use G80 command to machine the tapered part in two steps – rough machining and finish
machining.
2×45°
20
50
B
1R A
2F 4R
u/2
3F D
C
x/2
+Z
z
Function
This command can implement the end face cutting. The machining path is
A→B→C→D→A.
Taper Face Cutting Cycle
Programming
G81 X(U)_ Z(W)_ K_ F_
+X w
B
1R A
2F 4R u/2
3F
k C D
x/2
z
+Z
Function
This command can implement the taper face cutting. The machining path is
A→B→C→D→A.
Example
Use G81 to program. The dashed line stands for the roughcast.
33.5
3 8
Φ55
Φ25
%3323
N1 T0101
N2 G00 X60 Z45
N3 M03 S460
N4 G81 X25 Z31.5 K-3.5 F100
N5 X25 Z29.5 K-3.5
N6 X25 Z27.5 K-3.5
N7 X25 Z25.5 K-3.5
N8 M05
N9 M30
9.1.3 Thread Cutting Cycle (G82)
Cylindrical Thread Cutting Cycle
Programming
G82 X(U)_ Z(W)_ R_ E_ C_ P_ F(J)_
+X z w
D
4R A
3R 1R u/2
e 2F
C B
x/2 r
+Z
L
Function
This command can implement the cylindrical thread cutting. The machining path is
A→B→C→D→A. Moreover, this command is same as G32 (Thread cutting with constant
lead).
Taper Thread Cutting Cycle
Programming
G82 X(U)_ Z(W)_ I_ R_ E_ C_ P_ F(J)_
+Z
L
Function
This command can implement the taper thread cutting. The machining path is
A→B→C→D→A.
Example
Use G82 command to program. The screw’s pitch is 1.5, and the number of thread head is 2.
100
80
Φ30
Figure 9.68 Thread Cutting Cycle - Example
%3324
N1 G54 G00 X35 Z104
N2 M03 S300
N3 G82 X29.2 Z18.5 C2 P180 F3
N4 X28.6 Z18.5 C2 P180 F3
N5 X28.2 Z18.5 C2 P180 F3
N6 X28.04 Z18.5 C2 P180 F3
N7 M30
9.1.4 End Face Peck Drilling Cycle (G74)
Programming
G74 Z(W)_ R(e) Q(△K) F_
△K e
Function
This command can drill a hole on end face.
Example
Use G74 to drill a hole on a workpiece.
60 10
%1234
T0101
M03S500
G01 X0 Z10
G74 Z-60R1Q5F1000
M30
9.1.5 Outer Diameter Grooving Cycle (G75)
Programming
G75 X(U)_ R(e) Q(△K) F_
Z
K
△
2
U/
Function
This command can be used for grooving.
Example
Use G75 to groove a hole on a workpiece.
Φ80
50
%1234
T0101
M03S500
G01 X50 Z50
G75 X10R1Q5F1000
M30
9.2 Multiple Repetitive Cycle
Multiple repetitive cycle command can only use one command to finish the rough
machining and the finish machining.
r 1 △d
△d
A’●
△x/2
+Z
Note
1) G00 or G01 must be used in the finishing program – between P(ns) and Q(nf).
Otherwise, there is an alarm message.
2) G71 can not be used in MDI mode.
3) G98 and G99 can not used in the finishing program – between P(ns) and Q(nf).
4) The direction of △x and △z is shown in the following figure.
A B B A A B B A
X(-) Z(-) X(-)Z(+)
X(+) Z(-) X(+) Z(+)
+Z
A′ +X
A′ A′ A′
A′ A′
A′ +X A′
+Z
Φ20
Φ34
Φ44
Φ10
R7
R5 2×45°
%3325
T0101
N1 G00 X80 Z80
N2 M03 S400
N3 G01 X46 Z3 F100
N4 G71U1.5R1P5Q13X0.6 Z0.1
N5 G00 X0
N6 G01 X10 Z-2
N7 Z-20
N8 G02 U10 W-5 R5
N9 G01 W-10
N10 G03 U14 W-7 R7
N11 G01 Z-52
N12 U10 W-10
N13 W-20
N14 X50
N15 G00 X80 Z80
N16 M05
N17 M30
Example 2
The initial point A is (6, 3). The depth of cut is 1.5mm (radius designation). The retraction
amount is 1mm. The finishing allowance in the X direction is 0.6mm, and the finishing
allowance in the Z direction is 0.1mm. The dashed line stands for the original part.
82
62
52
35
25
R5
Φ20 R7
Φ34
Φ44
Φ10
Φ8
2×45
°
%3326
N1 T0101
N2 G00 X80 Z80
N3 M03 S400
N4 X6 Z5
G71U1R1P8Q16X-0.6Z0.1 F100
N5 G00 X80 Z80
N6 T0202
N7 G00 G41X6 Z5
N8 G00 X44
N9 G01 Z-20 F80
N10 U-10 W-10
N11 W-10
N12 G03 U-14 W-7 R7
N13 G01 W-10
N14 G02 U-10 W-5 R5
N15 G01 Z-80
N16 U-4 W-2
N17 G40 X4
N18 G00 Z80
N19 X80
N20 M30
Stock Removal in Turning with Groove
Programming
G71 U(△d) R(r) P(ns) Q(nf) E(e) F(f) S(s) T(t)
B 1
A
r
△d
B’ e
A’
Function
This command can do a stock removal in facing with groove. The machining path
A→A'→B’→B.
Example
Use G71 to program.
61.5
10 5 32.5
17
(8) 12
Φ22.66
Φ26.66
Φ30.6
Φ40
Φ28
Φ20
Φ18
6
R10 2×45°
45° R4
30°
%3327
N1 T0101
N2 G00 X80 Z100
M03 S400
N3 G00 X42 Z3
N4G71U1R1P8Q19E0.3F100
N5 G00 X80 Z100
N6 T0202
N7 G00 G42 X42 Z3
N8 G00 X10
N9 G01 X20 Z-2 F80
N10 Z-8
N11 G02 X28 Z-12 R4
N12 G01 Z-17
N13 U-10 W-5
N14 W-8
N15 U8.66 W-2.5
N16 Z-37.5
N17 G02 X30.66 W-14 R10
N18 G01 W-10
N19 X40
N20 G00 G40 X80 Z100
N21 M30
9.2.2 Stock Removal in Facing (G72)
Programming
G72 W(Δd) R(r) P(ns) Q(nf) X(Δx) Z(Δz) F(f) S(s) T(t)
+X
A’
r A r
△x/2
B
+Z
O
Figure 9.79 Stock Removal in Facing (G72)
Function
This command can do a stock removal in facing. The machining path is A→A'→B
Note
1) G00 or G01 must be used in the finishing program – between P(ns) and Q(nf).
Otherwise, there is an alarm message.
2) G72 can not be used in MDI mode.
3) G98 and G99 can not used in the finishing program – between P(ns) and Q(nf).
4) The direction of △x and △z is shown in the following figure.
A A A A' A' A
A' A' X(+) Z(+)
X(+) Z(-) X(-) Z(-) X(-) Z(+)
X Z
B B
B B
B B B B
Z X
Φ10
Φ30
Φ54
Φ74
R4 2×45°
R2
%3328
N1 T0101
N2 G00 X100 Z80
N3 M03 S400
N4 X80 Z1
N5 G72W1.2R1P8Q17X0.2Z0.5F100
N6 G00 X100 Z80
N7 G42 X80 Z1
N8 G00 Z-53
N9 G01 X54 Z-40 F80
N10 Z-30
N11 G02 U-8 W4 R4
N12 G01 X30
N13 Z-15
N14 U-16
N15 G03 U-4 W2 R2
N16 G01 Z-2
N17 U-6 W3
N18 G00 X50
N19 G40 X100 Z80
N20 M30
Example 2
Use G72 to program. The initial point A is (80, 1). The depth of cutting is 1.2mm. The
retraction amount is 1mm. The finishing allowance in the X direction is 0.2mm, and the
finishing allowance in the Z direction is 0.5mm. The dashed line stands for the original part.
60
11 34
10 10
Φ30
Φ10
Φ54
Φ74
Φ8
2×45° R2 R4
%3329
N1 T0101
N2 G00 X100 Z80
N3 M03 S400
N4 G00 X6 Z3
N5 G72W1.2R1P5Q15X-0.2Z0.5F100
N6 G00 Z-61
N7 G01 U6 W3 F80
N8 W10
N9 G03 U4 W2 R2
N10 G01 X30
N11 Z-34
N12 X46
N13 G02 U8 W4 R4
N14 G01 Z-20
N15 U20 W10
N16 Z3
N17 G00 X100 Z80
N18 M30
9.2.3 Pattern Repeating (G73)
Programming
G73 U(ΔI) W(ΔK) R(r) P(ns) Q(nf) X(Δx) Z(Δz) F(f) S(s) T(t)
B ●
A1
’ ●
Δz Δx/2
O
Figure 9.83 Pattern Repeating (G73)
Function
G73 command can cut a wokpiece at a fixed pattern repeatedly.
The machining path is A→A'→B.
Note
1) G00 or G01 must be used in the finishing program – between P(ns) and Q(nf).
Otherwise, there is an alarm message.
2) G73 can not be used in MDI mode.
3) G98 and G99 can not used in the finishing program – between P(ns) and Q(nf).
4) The depth for each cutting on X axis = △I/r
The depth for each cutting on Z axis = △K/r
5) The direction of △I and △K, and the direction of △x and △z should be noted.
Example
Use G73 to program. The initial point A is (60, 5). The total roughing allowance on X and Z
axis are 3mm, 0.9mm, respectively. The times of rough cutting is 3. The finishing allowance
on X and Z axis are 0.6mm, 0.1mm respectively. The dash-dot-line is the part’s blank.
62
52
35
25
Φ44
Φ34
Φ20
Φ10
R7 R5 2×45°
Note
1) The signs of U and W is defined by the direction of AC and CD respectively.
2) The cutting depth in 1st cut is Δd, the cutting depth in nth cut is d n . The bite
Δd
1st k
2nd Δd
d nth
6 (18)
(1.79°) (12)
ZM60×2
(Φ59.25)
(Φ60)
Φ90
Figure 9.87 Multiple Thread Cutting Cycle - Example
%3331
N1 T0101
N2 G00 X100 Z100
N3 M03 S400
N4 G00 X90 Z4
N5 G80 X61.125 Z-30 I-1.063 F80
N6 G00 X100 Z100 M05
N7 T0202
N8 M03 S300
N9 G00 X90 Z4
N10 G76C2R-3E1.3A60X58.15Z-24I-0.875K1.299U0.1V0.1Q0.9F2
N11 G00 X100 Z100
N12 M05
N13 M30
10. Comprehensive Programming
10 Comprehensive Programming
10.1 Example 1
Program for the part shown in the figure. The processing condition: material: #45 steel, or
aluminum; diameter of the part is Φ54mm, length of the part is 200mm. Tool selection:
number 1 face tool is used to machine the part face, number 2 face cylindrical tool is used to
rough turning the contour, number 3 face cylindrical tool is used to finish turning the
contour, and number 4 cylindrical triple screw is used to machine the thread whose lead is
3mm, pitch is 1mm.
133
50 10 12 20 33
11 10 26
R15
M20×1
Φ54
Φ52
Φ30
Φ36
Φ42
Φ3
Φ4
6
6
2×45°
R2
R25 R6
1×45°
24
%3365
N1 T0101
N2 M03 S500
N3 G00 X100 Z80
N4 G00 X60 Z5
N5 G81 X0 Z1.5 F100
N6 G81 X0 Z0
N7 G00 X100 Z80
N8 T0202
N9 G00 X60 Z3
10. Comprehensive Programming
N10 G80 X52.6 Z-133 F100
N11 G01 X54
N12 G71 U1 R1 P16 Q32 E0.3
N13 G00 X100 Z80
N14 T0303
N15 G00 G42 X70 Z3
N16 G01 X10 F100
N17 X19.95 Z-2
N18 Z-33
N19 G01 X30
N20 Z-43
N21 G03 X42 Z-49 R6
N22 G01 Z-53
N23 X36 Z-65
N24 Z-73
N25 G02 X40 Z-75 R2
N26 G01 X44
N27 X46 Z-76
N28 Z-84
N29 G02 Z-113 R25
N30 G03 X52 Z-122 R15
N31 G01 Z-133
N32 G01 X54
N33 G00 G40 X100 Z80
N34 M05
N35 T0404
N36 M03 S200
N37 G00 X30 Z5
N38G82X19.3Z-26R-3E1C2P120F3
N39G82X18.9Z-26R-3E1C2P120F3
N40G82X18.7Z-26R-3E1C2P120F3
N41G82X18.7Z-26R-3E1C2P120F3
N42 G76C2R-3E1A60X18.7Z-26 K0.65U0.1V0.1Q0.6P240F3
N43 G00 X100 Z80
N44 M30
10. Comprehensive Programming
10.2 Example 2
Program for the part shown in the figure. The processing condition: material: #45 steel, or
aluminum; diameter of the part is Φ26mm, length of the part is 70mm. Tool selection:
number 1 cylindrical tool is used to rough turning the contour, number 2 cylindrical tool is
used to finish turning the contour, number 3 cylindrical thread tool is used to machine the
thread. The pitch is 2mm. At last, number 4 parting-off tool is used to cut off the part.
2×45°
M24×2
Φ20
Φ25
R10 R10
18
38
45
%3368
N1 T0101
N2 M03 S600
N3 G00 X100 Z30
N4 G00 X27 Z3
N5 G71 U1 R1 P9 Q E0.2 F100
N6 G00 X100 Z30
N7 T0202
N8 G00 G41 X27 Z3
N9 G00 X14 Z3
N10 G01 X24 Z-2 F80
N11 Z-18
N12 G02 X20 Z-24 R10
N13 G01 Z-31.39
10. Comprehensive Programming
N14 G02 X25 W-6.61 R10
N15 G01 Z-45
N16 G00 X30
N17 G40 X100 Z30
N18 T0303
N19 G00 X27 Z3
N20 G82 X23.1 Z-22 F2
N21 G82 X22.5 Z-22 F2
N22 G82 X21.9 Z-22 F2
N23 G82 X21.5 Z-22 F2
N24 G82 X21.4 Z-22 F2
N25 G82 X21.4 Z-22 F2
N26 G00 X100 Z30
N27 T0404
N28 G00 X30 Z-45
N29 G01 X3 F50
N30 G00 X100
N31 Z30
N13 M30
10. Comprehensive Programming
10.3 Example 3
Program for the tapered thread ZG2″ shown in the figure. According to the standard, the
pitch is 2.309mm(25.4/11), the thread height is 1.479mm. Other sizes are shown in the
figure. The depth of cut at each time is separately(diameter designation) 1mm, 0.7 mm,
0.6mm , 0.4mm and 0.26mm, and the angle of tool tip is 55° (tan1.79=0.031).
40 4
4 (26)
(16)
(Φ56.659)
(Φ55.659)
(1.79°)
Φ90
ZG2″
10.4 Example 4
Program for the M40×2 inner thread shown in the figure. According to the standard, the
pitch is 2.309mm(25.4/11), thread height is 1.299mm. Other sizes are shown in the figure.
The depth of cut at each time(diameter designation) is 0.9mm, 0.6mm, 0.6mm, 0.4mm and
0.1mm. The angle of tool tip is 60°.
38
30
M40×2
Φ36
%3367
N1 T0101
N2 M03 S300
N3 G00 X100 Z100
N4 X20 Z4
N5 G80 X37.35 Z-38 F80
N6 G00 X100 Z100
N7 T0202
N8 G00 X20 Z4
N9 G82 X38.25 Z-30 R-4 E-1.3 F2
N10 G82 X38.85 Z-30 R-4 E-1.3 F2
N11 G82 X39.45 Z-30 R-4 E-1.3 F2
N12 G82 X39.85 Z-30 R-4 E-1.3 F2
N13 G82 X39.95 Z-30 R-4 E-1.3 F2
N14 G00 X100 Z100
N15 M30
10. Comprehensive Programming
11Custom Macro
Similarly to subprogram, the custom macro function allows operators to define their own
program. The way of calling the custom macro is same as subprogram’s.
The difference is that custom macro allows use of variables, arithmetic and logic operations,
selection and repetition.
11.1 Variables
Format and Explanation
#_ Variable is composed of a number sign (#) and a number.
Example
#1
#1=#2+100
Note:
1) The operator can only use the #0~#599 local variables for programming.
2) Variables after #599 can only be used by the system programmer for reference.
11.1.2System Variables
#1000 “current position X in machine coordinate system”
#1001 “current position Y in machine coordinate system”
#1002 “current position Z in machine coordinate system”
#1003 “current position A in machine coordinate system”
#1004 “current position B in machine coordinate system”
#1005 “current position X in machine coordinate system”
#1006 “current position U in machine coordinate system”
#1007 “current position V in machine coordinate system”
#1008 “current position W in machine coordinate system”
#1009 “diameter programming”
#1010 “position X – machine coordinate system in programming”
#1011 “position Y – machine coordinate system in programming”
#1012 “position Z – machine coordinate system in programming”
#1013 “position A – machine coordinate system in programming”
#1014 “position B – machine coordinate system in programming”
#1015 “position C – machine coordinate system in programming”
#1016 “position U – machine coordinate system in programming”
#1017 “position V – machine coordinate system in programming”
#1018 “position W – machine coordinate system in programming”
#1019 reserved
#1020 “position X – workpiece coordinate system in programming”
#1021 “position Y – workpiece coordinate system in programming”
#1022 “position Z – workpiece coordinate system in programming”
#1023 “position A – workpiece coordinate system in programming”
#1024 “position B – workpiece coordinate system in programming”
#1025 “position C – workpiece coordinate system in programming”
#1026 “position U – workpiece coordinate system in programming”
#1027 “position V – workpiece coordinate system in programming”
#1028 “position W – workpiece coordinate system in programming”
#1029 reserved
#1030 “origin X in workpiece coordinate system”
#1031 “origin Y in workpiece coordinate system”
#1032 “origin Z in workpiece coordinate system”
#1033 “origin A in workpiece coordinate system”
#1034 “origin B in workpiece coordinate system”
#1035 “origin C in workpiece coordinate system”
#1036 “origin U in workpiece coordinate system”
#1037 “origin V in workpiece coordinate system”
#1038 “origin W in workpiece coordinate system”
#1039 “axis of the coordinate system”
#1040 “origin X of G54”
#1041 “origin Y of G54”
#1042 “origin Z of G54”
#1043 “origin A of G54”
#1044 “origin B of G54”
#1045 “origin C of G54”
#1046 “origin U of G54”
#1047 “origin V of G54”
#1048 “origin W of G54”
#1049 reserved
#1050 “origin X of G55”
#1051 “origin Y of G55”
#1052 “origin Z of G55”
#1053 “origin A of G55”
#1054 “origin B of G55”
#1055 “origin C of G55”
#1056 “origin U of G55”
#1057 “origin V of G55”
#1058 “origin W of G55”
#1059 reserved
#1060 “origin X of G56”
#1061 “origin Y of G56”
#1062 “origin Z of G56”
#1063 “origin A of G56”
#1064 “origin B of G56”
#1065 “origin C of G56”
#1066 “origin U of G56”
#1067 “origin V of G56”
#1068 “origin W of G56”
#1069 reserved
#1070 “origin X of G57”
#1071 “origin Y of G57”
#1072 “origin Z of G57”
#1073 “origin A of G57”
#1074 “origin B of G57”
#1075 “origin C of G57”
#1076 “origin U of G57”
#1077 “origin V of G57”
#1078 “origin W of G57”
#1079 reserved
#1080 “origin X of G58”
#1081 “origin Y of G58”
#1082 “origin Z of G58”
#1083 “origin A of G58”
#1084 “origin B of G58”
#1085 “origin C of G58”
#1086 “origin U of G58”
#1087 “origin V of G58”
#1088 “origin W of G58”
#1089 reserved
#1090 “origin X of G59”
#1091 “origin Y of G59”
#1092 “origin Z of G59”
#1093 “origin A of G59”
#1094 “origin B of G59”
#1095 “origin C of G59”
#1096 “origin U of G59”
#1097 “origin V of G59”
#1098 “origin W of G59”
#1099 reserved
#1100 “break point X”
#1101 “break point Y”
#1102 “break point Z”
#1103 “break point A”
#1104 “break point B”
#1105 “break point C”
#1106 “break point U”
#1107 “break point V”
#1108 “break point W”
#1109 “axis of the coordinate system”
#1110 “middle point X of G28”
#1111 “middle point Y of G28”
#1112 “middle point Z of G28”
#1113 “middle point A of G28”
#1114 “middle point B of G28”
#1115 “middle point C of G28”
#1116 “middle point U of G28”
#1117 “middle point V of G28”
#1118 “middle point W of G28”
#1119 “shield of G28”
#1120 “mirror-image position X”
#1121 “mirror-image position Y”
#1122 “mirror-image position Z”
#1123 “mirror-image position A”
#1124 “mirror-image position B”
#1125 “mirror-image position C”
#1126 “mirror-image position U”
#1127 “mirror-image position V”
#1128 “mirror-image position W”
#1129 “shield of mirror image”
#1130 “rotational axis 1”
#1131 “rotational axis 2”
#1132 “rotation angle”
#1133 “shield of rotational axis”
#1134 reserved
#1135 “scale axis 1”
#1136 “scale axis 2”
#1137 “scale axis 3”
#1138 “scaling”
#1139 “shield of scale axis”
#1140 “code 1 of changing a coordinate system”
#1141 “code 2 of changing a coordinate system”
#1142 “code 3 of changing a coordinate system”
#1143 reserved
#1144 “number of tool length compensation”
#1145 “number of tool radius compensation”
#1146 “linear axis 1”
#1147 “linear axis 2”
#1148 “shield of virtual axis”
#1149 “specified feedrate”
#1150 “modal value of G code – 0”
#1151 “modal value of G code – 1”
#1152 “modal value of G code – 2”
#1153 “modal value of G code – 3”
#1154 “modal value of G code – 4”
#1155 “modal value of G code – 5”
#1156 “modal value of G code – 6”
#1157 “modal value of G code – 7”
#1158 “modal value of G code – 8”
#1159 “modal value of G code – 9”
#1160 “modal value of G code – 10”
#1161 “modal value of G code – 11”
#1162 “modal value of G code – 12”
#1163 “modal value of G code – 13”
#1164 “modal value of G code – 14”
#1165 “modal value of G code – 15”
#1166 “modal value of G code – 16”
#1167 “modal value of G code – 17”
#1168 “modal value of G code – 18”
#1169 “modal value of G code – 19”
#1170 “residual CACHE”
#1171 “spare CACHE”
#1172 “residual buffer storage”
#1173 “spare buffer storage”
#1174 reserved
#1175 reserved
#1176 reserved
#1177 reserved
#1178 reserved
#1179 reserved
#1180 reserved
#1181 reserved
#1182 reserved
#1183 reserved
#1184 reserved
#1185 reserved
#1186 reserved
#1187 reserved
#1188 reserved
#1189 reserved
#1190 “customized input”
#1191 “customized output”
#1192 “customized output shield”
#1193 reserved
#1194 reserved
2) Conditional operator
EQ(=), NE(≠), GT(>), GE(≥), LT(<), LE(≤)
3) Logic operator
AND, OR, NOT
4) Function
SIN Sine
COS Cosine
TAN Tangent
ATAN Arctangent
ATAN2 Arctangent2
ABS Absolute value
INT Integer
SIGN Sign
SQRT Square root
EXP Exponential function
5) Expression
The expressions are composed of constants, operators and variables.
Example:
175/SQRT[2] * COS[55 * PI/180 ];
#3*6 GT 14;
11.4 Assignment
Assignment refers to assign a variable value to a constant or expression.
Format:
Variable=constant or expression
Example
#2 = 175/SQRT[2] * COS[55 * PI/180]
#3 = 124.0
11.5 Selection statement IF, ELSE,ENDIF
Format (i)
IF Conditional expression
…
ELSE
…
ENDIF
Explanation (i)
If the specified conditional expression is satisfied, the statements between IF and ELSE are
executed. If the specified conditional expression is not satisfied, the statements between
ELSE and ENDIF are executed.
Format (ii)
IF Conditional expression
…
ENDIF
Explanation (ii)
If the specified conditional expression is satisfied, the statements between IF and ENDIF are
executed. If the specified conditional expression is not satisfied, the system would proceed
to the blocks after ENDIF.
11.6 Repetition Statement WHILE, ENDW
Format
WHILE Conditional expression
…
ENDW
Explanation
When the conditional expression is satisfied, the statements between WHILE and ENDW
are executed. If the conditional expression is not satisfied, the system would proceed to the
blocks after ENDW.
11.7 Macro Call
The following table shows the local variable and the corresponding system variable when it
is macro call.
Table 11-8 Transmission of Macro Call
Local
System variables in macro call
variables
#0 A
#1 B
#2 C
#3 D
#4 E
#5 F
#6 G
#7 H
#8 I
#9 J
#10 K
#11 L
#12 M
#13 N
#14 O
#15 P
#16 Q
#17 R
#18 S
#19 T
#20 U
#21 V
#22 W
#23 X
#24 Y
#25 Z
#26 Mode value of Z-plane in canned cycle
#27 Unavailable
#28 Unavailable
#29 Unavailable
#30 Absolute coordinate of 0-axis when subprogram call
#31 Absolute coordinate of 1-axis when subprogram call
#32 Absolute coordinate of 2-axis when subprogram call
#33 Absolute coordinate of 3-axis when subprogram call
#34 Absolute coordinate of 4-axis when subprogram call
#35 Absolute coordinate of 5-axis when subprogram call
#36 Absolute coordinate of 6-axis when subprogram call
#37 Absolute coordinate of 7-axis when subprogram call
#38 Absolute coordinate of 8-axis when subprogram call
Explanation
1) To check whether the variable is defined in the program, the format is as follows:
AR [#Variable number]
Return:
0 – the variable is not defined
90 – the variable is defined as absolute command G90
91 – the variable is defined as incremental command G91
2) When it is macro call (subprogram or canned cycle) with G code, the system
would copy the system variables (A~Z) to local variables #0-#25 in the macro.
Meanwhile, the system can copy the axis position (machine coordinate value in
absolute command) of nine channels to local variables #30-#38.
3) When calling a subprogram, the subprogram can modify the system mode.
4) When calling a canned cycle, the canned cycle does not modify the system mode.
11.8 Example
Example 1
Program the parabola B in interval [0, 8] shown in Figure 11.1. The parabola B A 2 / 2
A
8
Ф16
32 B
Ф32
%3401
N1 T0101
N2 G37
N3 #10=0;
N4 M03 S600
N5 WHILE #10 LE 8
N6 #11=#10*#10/2
N7 G90 G01 X[#10] Z[-#11] F500
N8 #10=#10+0.08
N9 ENDW
N10 G00 Z0 M05
N11 G00 X0
N12 M30
Example 2
Program the parabola B in interval [0, 8] shown in Figure 11.2. The parabola B A 2 / 2
A
Φ20
Φ16
32 B
32
40
Figure 11.93 Custom Macro Example 2
%3402
T0101
G00 X21 Z3
M03 S600
#10=7.5
WHILE #10 GE 0
4
#11=#10*#10/2
G90 G01 X[2*#10+0.8] F500
Z[-#11+0.05]
U2
Z3
0
#10=#10-0.6
ENDW
#10=0
WHILE #10 LE 8
#11=#10*#10/2
G90 G01 X[2*#10] Z[-#11] F500
#10=#10+0.08
ENDW
G01 X16 Z-32
Z-40
G00 X20.5 Z3
M05
M30
Example 3
Program the parabola B in interval [12, 32] shown in Figure 11.3. The parabola
B A2 / 2
A
8
Φ20
Φ16
B
20 12
28
%3403
N1 T0101
N2 G00 X20.5 Z3
N3 #11=12
2
N4 M03 S600
N5 WHILE #11 LE 32
N6 #10=SQRT[2*[#11]] 8
N7 G90 G01 X[2*#10] Z[-[#11-12]] F500
N8 #11=#11+0.05
N9 ENDW
N10 G01 X16 Z-20
N11 Z-28
N12 G00 X20.5 Z3 M05
N13 M30
Example 4
Program the parabola B in interval [12, 32] shown in Figure 11.4. The parabola
B A2 / 2
A
8
Φ30
Φ22
32 12 B
Φ10
Φ6
4
28 8
38
%3404
N1 T0101
N2 G00 X25 Z3
N3 #11=12
N4 M03 S600
N5 WHILE #11 LE 32
N6 #10=SQRT[2*[#11]]
N7G90G01X[2*#10+6]Z[-[#11-4]]F500
N8 #11=#11+0.06
N9 ENDW
N10 G01 X22 Z-28
N11 Z-36
N12 X30
N13 Z-40
N12 G00 X25 Z3 M05
N13 M30
Example 5
Program the part shown in Figure 11.5.
A
B
U V C
%3405
N1 T0101
N2 G00 X90 Z30
N3 U10 V50 W80 A20 B40 C3 M98 P01(#20=10, #21=50, #22=80, #0=20, #1=40, #2=3)
N4 M30
%01
N1 G00 Z[-#22+#21+#20]
N2 X[#1+5]
N3 #10=#2
N4 WHILE #10 LE #21
N5 G00 Z[-#22+#21+#20-#10]
N6 G01 X[#0]
N7 G00 X[#1+5]
N8 #10=#10+#2-1
N9 ENDW
N10 G00 Z[-#22+#20]
N11 G01 X[#0]
N12 G00 X[#1+5]
N13 G00 X90 Z30
N14 M99