Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Prior to Kinetic Control, continuous 5-axis machining operations had to be programmed relative to the center of rotation of the machine. Let’s say one of the machining operations begin at A45 B0 and the lead in move is positioned at X2, Y1.5, Z2 when A is 0 and B is 0. To be at the same point on your part when at A45, the physical X, Y and Z axes would need to at X2, Y.3536, Z1.7678. The posted code would generally look something like:

Code Block
; Without rotated work offsetsTCPC, G54 offsets should all set to 0
G53 G0 Z0      ; Retract to safe position
G53 X2.5 Y2.5 ; Position X and Y to safe position
G54
G43 H1
G0 A45 B0 ; Initial orientation
G0 X2 Y.3536  ; Initial X and Y axis move
G1 Z1.7678     ; Plunge to initial Z axis position
; ... Machining operation about center of rotation

...