Circular arc with a tangential transition

Cartesian coordinates

With the G06 NC function, you program a circular path with a tangential transition to the previous path function.

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.

 
Tip

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 G01 X+25 Y+30 F300

; Straight line

N120 G06 X+45 Y+20

; Circular path with tangential transition

G06 corresponds to the CT Klartext syntax.

Circular path CT

Polar coordinates

With the G16 NC function, you program a circular path with a tangential transition to the previous path function.

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.

 
Tip

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 G01 G42 X+0 Y+35 F300

; Straight line

N120 I+40 J+35

; Pole

N130 G16 R+25 H+120

; Circular path with tangential transition

The polar coordinate radius R corresponds to the PR Klartext syntax.

The polar coordinate angle H corresponds to the PA Klartext syntax.

G16 corresponds to the CTP Klartext syntax.

Circular path CTP