10
Motion-Synchronous Action 08.97
10.4 Actions within s
nchronized actions
10
840D
NCU 571
840D
NCU 572
NCU 573
FM-NC
810D
840Di
ï›™
Siemens AG 2000. All rights reserved
10-374
SINUMERIK 840D/840Di/810D/FM-NC Programming Guide Advanced (PGA) – 04.00 Edition
10.4.14 Positioning movements
Function
Axes can be positioned completely asynchronizedly with
respect to the part program from synchronized actions.
The programming of positioning axes from
synchronized actions is advisable for cyclic sequences
or operations that are strongly dependent on events.
Axes programmed from synchronized actions are called
command axes
.
In SW 5 and higher, G codes G70/G71/G700/G710 can
be programmed in synchronized actions. They can be
used for defining the measuring system for positioning
tasks in synchronized actions.
References:
/PG/ Chapter 3 "Specifying Paths"
/FBSY/ "Starting Command Axes"
The measuring system is defined using
G70/G71/G700/G710.
By programming the G functions in the synchronized
action, the INCH/METRIC evaluation for the
synchronized action can be defined independently of
the part program context.
Example 1
N100 R1=0
N110 G0 X0 Z0
N120 WAITP(X)
N130 ID=1 WHENEVER $R==1 DO POS[X]=10
N140 R1=1
N150 G71 Z10 F10
Z=10 mm X=10 mm
N160 G70 Z10 F10
Z=254 mm X=254 mm
N170 G71 Z10 F10
Z=10 mm X=10 mm
N180 M30