Synchronising an axis in coordinated motion (SYNC IN / OUT)
![]() | This function is available as of CNC Build V2.11.2013.22 |
Some specific processes require a synchronised motion of a single axis (slave axis) in combination with a coordinated motion. At certain programmed positions it is required that the slave axis is located at a specific position and moves at a specific velocity. The slave axis then moves at the synchronised velocity until synchronisation is cancelled.
Typical application examples include machines with the continuous throughput of endless material. The material must then be cut at a specific place during the coordinated motion. At a specific master position (workpiece length) the rotating knife must be placed in cutting position. The knife then moves at constant velocity until the cut is finished.


Restrictions:
An axis cannot be synchronized if:
- the axis is moving in coordinated motion at the time.
Configuration:
To use this function, the following setting must be made in the start-up list ([STUP]):
configuration.channel[0].path_preparation.function FCT_DEFAULT | FCT_SYNC
configuration.channel[0].interpolator.function FCT_IPO_DEFAULT | FCT_SYNC
Syntax of Programming synchronous motions: |
<axis_name> [ SYNC IN | OUT G90 | G91 G00 | G01 FEED=.. FEED_MAX_WEIGHT=.. POS=.. DIST=.. { \ } ] |
<axis_name> | Name of the axis to be synchronised |
SYNC | Identifier for synchronised axis motion. Must always be programmed as the first keyword. |
IN | Identifier to mark the start of synchronised motion. |
OUT | Identification to mark the end of synchronised motion. |
G90 / G91 | Absolute/relative dimension |
G00 / G01 | Rapid traverse/linear interpolation |
FEED=.. | Axis-specific feedrate in [mm/min, m/min, inch/min] |
FEED_MAX_WEIGHT=.. | Weighting factor in [%], referred to axis-specific maximum feed P-AXIS-00212. Only weighting values less than 100% are permitted (as per G194). |
POS=.. | Axis position in [mm, inch] at which the synchronous velocity is reached. |
DIST=.. | Distance in [mm, inch] at which the synchronous velocity is moved.. |
\ | Separator ("backslash") for clear programming of the command over multiple lines. |
Programming Example
Synchronising an axis in coordinated motion