Structure of a DIN 66025 program
The DIN 66025 program consists of individual motion blocks. The block number is located at the beginning of each block.
['%' <program name>]
<block>{<block>}
The blocks can be structured as follows:
N<block number> G<number> <G code words>
N<block number> <G code words> (the G<number> of the previous block applies)
N<block number> M<number> <G code words>
The following applies: <block>::= N<block number> G<number>? <G code word>* | N<block number> M<number> <G code word>*
Example
Positioning and path element
% MyProgram
N10 G01 X100 Y100 E100 F100 E-200
N20 G01 Z40 F20
N30 G03 X-100 R200 F100
['%' <program name>] |
Header Optional Starts with %, followed by the program name separated by a space or TAB |
<Block> |
The block is processed word by word from right to left. |
/ |
Step suppression If a block starts with / and the command CNC ‣ Step suppression is selected, then the block is not executed. |
N<block number> |
The block number is used as a marker for defining jump targets. Example: N01 |
G<number> |
Travel command
|
<G code word> |
G code word
|
() |
Comment
|
Interpolation between two consecutive blocks |
The velocity when transitioning two adjacent objects is determined by the following rules:
|
Travel commands and corresponding path elements
Travel command |
Description |
Path element |
G0 |
Direct movement without tool operation; linear motion |
|
G1 |
Linear movement with tool operation |
|
G2 |
Circular segment or circle, clockwise |
|
G3 |
Circle segment or circle, counterclockwise |
|
G4 |
Dwell time |
|
G5 |
Point of a 2D cardinal spline |
|
G6 |
Parabola |
|
G8 |
Ellipse segment or ellipse, clockwise |
|
G9 |
Ellipse segment or ellipse, counterclockwise |
|
G10 |
Point of a 3D cardinal spline |
|
G15 |
Switch to 2D |
|
G16 |
Switch to 3D by activating 3D mode with normal vector I/J/K to the plane |
|
G17 |
Switch to 3D by activating 3D mode in X/Y plane |
|
G18 |
Switch to 3D by activating 3D mode in Z/X plane |
|
G19 |
Switch to 3D by activating 3D mode in Y/Z plane |
|
G20 |
Conditional jump to L, if K <> 0 |
|
G36 |
Write value D to variable O |
|
G37 |
Increment variable O by value D |
|
G40 |
End of tool radius compensation |
|
G41 |
Start of tool radius compensation, left of travel direction |
|
G42 |
Start of tool radius compensation, right of travel direction |
|
G43 |
Starts tool length compensation. |
|
G50 |
End of angle rounding/smoothing |
|
G51 |
Start of angle rounding |
|
G52 |
Start of angle smoothing |
|
G53 |
End the coordinate transformation and resets the decoder coordinate system to the original position (= machine coordinate system). |
|
G54 |
Absolute transformation of the coordinates. |
|
G55 |
Relative transformation of the coordinates. |
|
G56 |
Sets the current orientation, position, and scaling of the DCS is set as a reference point. |
|
G60 |
End of loop suppression |
|
G61 |
Start of loop suppression |
|
G70 |
End of smoothing additional axes. (see SMC_SmoothAddAxes) |
|
G71 |
Start of smoothing additional axes. (see SMC_SmoothAddAxes) |
|
G75 |
Timing synchronization with interpolator |
|
G90 |
The coordinates (X/Y/Z/A/B/C/P/Q/U/V/W) are interpreted as absolute values. (This is the default setting.) |
|
G91 |
The coordinates (X/Y/Z/A/B/C/P/Q/U/V/W) are interpreted as values relative to the current position. |
|
G92 |
Positioning by jump |
|
G98 |
The axis midpoints (I/J/K) are interpreted as absolute values. |
|
G99 |
The axis midpoints (I/J/K) are interpreted as values relative to the start position. (This is the default setting.) |
A |
Target position of the additional spline axis. For a coordinate transformation in the decoder coordinates system, the word contains an angle. |
B |
|
C |
|
D |
|
E |
Maximum path acceleration/deceleration in [u/sec2]. Value > 0: acceleration; value < 0: deceleration |
EF |
Path acceleration/deceleration for G0 motion. |
E<axis> |
Individual acceleration/deceleration (>0/<0) of the specified additional axis <axis>. Additional axes are A, B, C, P, Q, U, V, W, and also Z in 2D mode. If this G code is used, then the path processing block SMC_ExtendedVelocityChecks must be used for restricting the velocity. |
F |
Velocity (in [u/sec]). "Feed" |
FF |
Velocity for G0 movements |
F<axis> |
Individual velocity of specified additional axis <axis>. Additional axes are A, B, C, P, Q, U, V, W, and also Z in 2D mode. If this G code is used, then the path processing block SMC_ExtendedVelocityChecks must be used for restricting the velocity. |
G |
Path condition |
H |
Switch point (H function). Positive: Switch on. Negative: Switch off. |
I |
|
J |
|
K |
|
L |
|
M |
Additional option for machinery; also M function |
O |
|
P |
Target position of the additional linear axis P. |
P<axis><period> |
Configuration of the modulo axes. If Period = 0 applies (example: PA0), then the behavior of the axis is linear. (modes). |
Q |
Target position of the additional linear axis Q |
R |
|
S |
S profile for linear axes. Positive: Switch on. Negative: Switch off. Axis
|
T |
Command-specific parameter |
U |
Target position of the additional linear axis U |
V |
Target position of the additional linear axis V |
W |
Target position of the additional linear axis W |
X |
X-coordinate of the target position |
Y |
Y-coordinate of the target position |
Z |
Z-coordinate of the target position |