F1: Travel to fixed stop
6.2 General functionality
Basic Functions
Function Manual, 09/2011, 6FC5397-0BP40-2BA0
301
Examples
With machine axis identifiers:
References:
/PG/, "Programming Guide: Fundamentals"
Channel axis identifier with unambiguous machine axis assignment:
For the purpose of illustrating the differences in programming, channel axis X is programmed as the image of
machine axis AX1 [or X1 (Name in machine parameter:
MD10000 $MN_AXCONF_MACHAX_NAME_TAB)]
.
All four of the following programming lines have the same effect when the channel axis X is imaged on the
machine axis AX1, X1:
X250 Y100 F100 FXS[X1]=1
X250 Y100 F100 FXS[X1]=1 FXST[X1]=12.3
X250 Y100 F100 FXS[X1]=1 FXST[X1]=12.3 FXSW[X1]=2 ; mm
X250 Y100 F100 FXS[X1]=1 FXSW[X1]=2 ; mm
Programming with machine axis identifiers
FXS[X1] = 1 ; Selecting X1
FXST[X1] = 10 ; New torque for X1
FXSW[X1] = 5 ; New window for X1
Programming with channel axis identifiers
FXS[X] = 1 ; Selecting X ->X1
FXST[X] = 10 ; New torque X ->X1
FXSW[X] = 5 ; New window for X -> X1
Z250 F100 FXS[AX1]=1 FXST[AX1]=12.3 FXSW[AX1]=2000
Z250 F100 FXS[X1]=1 FXST[X1]=12.3 FXSW[X1]=2000
Z250 F100 FXS[X]=1 FXST[X]=12.3 FXSW[X]=2000
Z250 F100 FXS[X]=1 FXST[X1]=12.3 FXSW[AX1]=2000