Circular path C
Application
You use the circular path function C to program a circular path around a circle center point.
Related topics
- Programming a circular path with polar coordinates
Requirement
- Circle center point CC is defined
Description of function
The control moves the tool on a circular path from the current position to the defined end point. The starting point is the end point of the preceding NC block. You can use at most two axes to define the new end point.
If you want to program a full circle, then define the same coordinates for the starting and end point. These points must lie on the circular path.
In the machine parameter circleDeviation (no. 200901) you can define the permissible deviation of the circle radius. The maximum permissible deviation is 0.016 mm.
With the direction of rotation you define whether the control moves along the circular path in a clockwise or counterclockwise direction.
Definition of the direction of rotation:
- Clockwise: direction of rotation DR– (with radius compensation RL)
- Counterclockwise: direction of rotation DR+ (with radius compensation RL)
Input
11 C X+50 Y+50 LIN_Z-3 DR- RL F250 M3 | ; Circular path with linear Z-axis superimpositioning |
To navigate to this function:
Insert NC function All functions Path contour C
The NC function includes the following syntax elements:
Syntax element | Meaning |
---|---|
C | Syntax initiator for a circular path around a circle center |
X, Y, Z, A, B, C, U, V, W | End point of the circular path Fixed or variable number Entry: absolute or incremental Optional syntax element |
LIN_X, LIN_Y, LIN_Z, LIN_A, LIN_B, LIN_C, LIN_U, LIN_V or LIN_W | Axis and value of the linear superimposition Fixed or variable number Entry: absolute or incremental Linear superimpositioning of a circular path Optional syntax element |
DR | Rotational direction of the arc Optional syntax element |
R0, RL, RR | |
F, FMAX, FZ, FU, FAUTO | |
M |
Note
The Form column allows toggling between the syntaxes for Cartesian and polar coordinate input.
Example
5 CC X+25 Y+25 |
6 L X+45 Y+25 RR F200 M3 |
7 C X+45 Y+25 DR+ |