These functions allow you to calculate the center of a circle and the radius of the circle based on the coordinates of three or four points on the circle (e.g., the position and size of a circle segment).
The control provides the following functions:
Syntax | Meaning |
---|---|
D23 | Circle data from three points on the circle The control saves the determined values in three successive Q parameters so that you only need to program the number of the first variable. |
D24 | Circle data from four points on the circle The control saves the determined values in three successive Q parameters so that you only need to program the number of the first variable. |
NC programs contained in this User's Manual are suggestions for solutions. The NC programs or individual NC blocks must be adapted before being used on a machine.
- Change the following contents as needed:
- Tools
- Cutting parameters
- Feed rates
- Clearance height or safe position
- Machine-specific positions, e.g. with M91
- Paths of program calls
Some NC programs depend on the machine kinematics. Adapt these NC programs to your machine kinematics before the first test run.
In addition, test the NC programs using the simulation before the actual program run.
With a program test you determine whether the NC program can be used with the available software options, the active machine kinematics and the current machine configuration.
N110 D23 Q20 P01 Q30 | ; Circle data from three points on the circle |
NC programs contained in this User's Manual are suggestions for solutions. The NC programs or individual NC blocks must be adapted before being used on a machine.
- Change the following contents as needed:
- Tools
- Cutting parameters
- Feed rates
- Clearance height or safe position
- Machine-specific positions, e.g. with M91
- Paths of program calls
Some NC programs depend on the machine kinematics. Adapt these NC programs to your machine kinematics before the first test run.
In addition, test the NC programs using the simulation before the actual program run.
With a program test you determine whether the NC program can be used with the available software options, the active machine kinematics and the current machine configuration.
N110 D24 Q20 P01 Q30 | ; Circle data from four points on the circle |
D corresponds to the FN Klartext syntax.
The numbers of the ISO syntax correspond to the numbers of the Klartext syntax.
P01, P02 etc. are considered as placeholders (e.g., for arithmetic operators included in the Klartext syntax).