System-Defined CGT @ Section Reference

The following presents an alphabetical list of the system-defined CGT @ sections.

Alphabetical Table of CGT Sections

[  A B C D E F G H I L M N O P R S T W X Y Z  ]

A [To Top]
Section @ABSI
Description Matching lookup table for output of codes by #ABSI.
Sample table:
@ABSI
0,G90
1,G91
@
Section @ADIR
Description Matching lookup table for output of codes by #ADIR.
Sample table:
@ADIR
0,+
1,-
@
Section @ARC
Description Processed when an arc is encountered in, or generated, by the process model.
See Also Arcs

Example:

@ARC
< #MOV>< X#XPOS>< Y#YPOS> <I#XCTR>< J#YCTR>< F#FEED>
@

Section @ATTCHMT
Description Processed in punch/fab machines for specialty attachment operations such as a plasma cutter.
Related SMF Questions 68

The call for this section is made from the last position before the attachment tool.

B [To Top]
Section @BDIR
Description Matching lookup table for output of codes by #BDIR.
Sample table:
@BDIR
0,+
1,-
@
Section @BHC
Description Processed when a BHC Machine Event (Create-Machine Events-BHC) is encountered in the process model.
Intended for machines that have a bolt hole cycle command.
C [To Top]
Section @CANNED_BEGIN
Description Used to format the output for the start of the canned cycle part profile.
Supported Applications Turning
See Also @CANNED_END , @CONTOUR_ROUGH , @GROOVE_ROUGH , @LINEAR_ROUGH
Section called after a canned cycle header section is called, for example @LINEAR_ROUGH. Standard @LINE and @ARC sections arc called following this section.

Example:

// Increment the block number by one to account for the call to the @RAPID section for the initial cycle start position.

#EVAL(#BLK=#BLK+1)

// The call to #SETBLK(0) replaces the placemarker created in canned cycle header section by #GETBLK(0).

#SETBLK(0)

// Perform preparatory actions.

#RESET(#MOV, #XPOS, #ZPOS)

Section @CANNED_END
Description Is used to control output for the canned cycle profile end.
Supported Applications Turning
See Also @CANNED_BEGIN , @CONTOUR_ROUGH , @GROOVE_ROUGH , @LINEAR_ROUGH
Section called after a canned cycle profile has been processed with @LINE and @ARC sections.

Example:

// The call to #SETBLK(1) replaces the placemarker created in canned cycle header section by #GETBLK(1).

#SETBLK(1)

Section @CATCH_ADV
Description Processed when the @CATCH_ADV (parts catcher advance) User Command is encountered in the process model.
Supported Applications Turning
Called by a User Command, to output part catcher advance commands or operator instructions when performing a Parting process.

Example:

@CATCH_ADV

< #MOV>< X#XPOS>< Z#ZPOS>

M10

G04 P1000

@

Section @CATCH_RET
Description Processed when @CATCH_RET (parts catcher return) user command is encountered in the process model.
Supported Applications Turning
Used to output parts catcher retract commands or operator instructions.

Example:

@CATCH_RET

< #MOV>< X#XPOS>< Z#ZPOS>

M11

G04 P1000

@

Section @CDIR
Description Matching lookup table for output of codes by #CDIR.
Sample table:
@CDIR
0,+
1,-
@
Section @CENG
Description Matching lookup table for output of codes by #CENG.
Sample table:
@CENG
0,M154
1,M155
@
Section @CMP[RLX]
Description Processed when comp right, left and off machine events are encountered in the process model.
The Comp Codes CGT sections (@CMPR, @CMPL, @CMPX) are enabled by turning on the "Comp Codes" switch in supported Process operations. When enabled, generated toolpath will create a @CMP[LR] (either @CMPL or @CMPR) command appropriate for the profile offset, at the start of the selected profile.

Section @CONTOUR_ROUGH
Description Processed when defining the Contour Rough canned cycle header.
Supported Applications Turning
See Also @CANNED_BEGIN, @CANNED_END
This section is called first when processing a Contour Rough process container element. If the section is not found, the elements within the container are processed normally using the conventional (@LINE, @ARC, etc) sections.

All parameters related to the Contour Rough process are available for output, and can be accessed with the DSYS, ISYS, and SSYS functions using the same parameter names as the Contour Rough macro command.

Example:( ** Note: The #rgh_ user vars must be declared in the @DECLARE section)

#EVAL(#rgh_NumPasses = ISYS( PMEL(), "NP", 0. ))

#EVAL(#rgh_ClrDst = DSYS( PMEL(), "CD", 0. ))

#EVAL(#rgh_XFnshAlw = DSYS( PMEL(), "XF", 0. ))

#EVAL(#rgh_ZFnshAlw = DSYS( PMEL(), "ZF", 0. ))

// The calls to GETBLK() create placemarkers in the buffered output.

G73 P#GETBLK(0) Q#GETBLK(1) D#rgh_NumPasses R#rgh_ClrDst U#rgh_XFnshAlw W#rgh_ZFnshAlw F#FEED

// The @CANNED_BEGIN section is called next.

Note: Conditional output of canned cycles is not supported. If the canned roughing section is exited early the corresponding part profile will still be processed and output.

For more information on DSYS, ISYS, and SSYS refer to the Reference: Macro Functions topic, in Learning SmartCAM, under Automation/Customization - MCL Reference. For more information on PMEL() see the Learning SmartCAM - Code Generation - Advanced Variable Usage section.

Section @COOLNT
Description Matching lookup table for output of codes by #COOLNT.
Sample table:
@COOLNT
0,M09
1,M08
2,M07
3,M88
4,M83
@
Section @CORNER
Description Called prior to sharp corners for machines that require special corner rounding comp vectors.
Related SMF Questions 129
Section @CTRLOC
Description Matching lookup table for output of codes by #CTRLOC.
Sample table:
@CTRLOC
0,-
1,+
@
Section @CUTC
Description Matching lookup table for output of codes by #CUTC.
Sample table:
@CUTC
0,M19
1,M18
2,M19
3,M17
@
Section @CYCLCHG
Description Called prior to all system-defined cgt section calls. Can be used to check for upcoming section and set variables accordingly.

Nothing is output from this section, however, anything can be evaluated (#EVAL()).

This feature can give you limited look-ahead capability. There are two special CGT words that can be used in this section, they allow you to find out what @ section will be called next. These CGT words are #SECNAME and #SECNUM.

Section @@CYCLE
Supported Applications All
Table section used to hold cycle codes output by the CGT word #CYCLE.
D [To Top]
Section @DCOMP
Description Matching lookup table for output of codes by #DCOMP.
Sample table:
@DCOMP
0,G40
1,G41
2,G42
@
Section @DECLARE
Description Called prior to beginning of coding to declare user variables, and establish cgt wide numeric formats.
See Also CGT Variables , Format Classes

Notes for Advanced Turning: All variables must be specified in the @DECLARE section of the Turret1 Turn CGT, regardless in which CGT they are used. An @DECLARE section with corresponding #FMT statements should be defined in each CGT.

Sample section:
@DECLARE
#INT #myIntVar
#FMT(#myDecVar, D4.3)
@
E [To Top]
Section @ENDDEF
Description Called at the end of a subprogram definition sequence, for output of subprogram end codes.
Section @ENDPROF
Description Called at the end of profile processing, to output end of profile related codes.

For more information on profiles, see the "Profiles and Geometry" section of the "Important Contents" topic.

This section usually contains tool retract, cancel cutter compensation, and end cutting cycle (turn torch off) commands.

Example Section:
@ENDPROF
< #MOV>< #DCOMP D0>< Z#ZPOS>
@
F [To Top]
Section @FDADJ
Description Matching lookup table for output of codes by #FDADJ.
Sample table:
@FDADJ
0,fdadj.0
1,fdadj.1
@
Section @FDMODE
Description Matching lookup table for output of codes by #FDMODE.
Sample table:
@FDMODE
0,G94
1,G95
2,G93
@
Section @FXD1 (deprecated) See @OP_ sections.
Mill Replacements @OP_DRL, @OP_REAM, @OP_SPEC
Turn Replacements @OP_THD
Section @FXD2 (deprecated) See @OP_ sections.
Mill Replacements @OP_SPDRL, @OP_CDRL, @OP_CBORE, @OP_SPFACE, @OP_CSINK
Turn Replacements @OP_TURN
Section @FXD3 (deprecated) See @OP_ sections.
Mill Replacements @OP_TAP
Turn Replacements @OP_FACE
Section @FXD4 (deprecated) See @OP_ sections.
Mill Replacements @OP_BORE
Turn Replacements @OP_TAP
Section @FXD5 (deprecated) See @OP_ sections.
Mill Replacements @OP_PDRL
Turn Replacements @OP_PDRL
Section @FXD6 (deprecated) See @OP_ sections.
Turn Replacements @OP_GRV
Section @FXD7 (deprecated) See @OP_ sections.
Turn Replacements @OP_FGRV
Section @FXDDEF
Description Called at the beginning of a hole subprogram definition.
G [To Top]
Section @GOSUB
Description Called at the beginning of a sub-program definition.
Section @GRID
Description Call generated from processing @GRID user command, defined in machine events, for a grid of holes.
Only used on machines that use a special G code for this operation.
Section @GROOVE_ROUGH
Description Called to output Groove Rough canned cycle header definition when processing a Groove Rough process container element.
Supported Applications Turning
See Also @CANNED_BEGIN, @CANNED_END
If the section is not found, the elements within the container are processed normally using the conventional (@LINE, @ARC, etc) sections.

All parameters related to the Groove Rough process are available for output, and can be accessed with the DSYS, ISYS, and SSYS functions using the same parameter names as the Groove Rough macro command.

Example:( ** Note: The #rgh_ user vars must be declared in the @DECLARE section)

#EVAL(#rgh_PDpth = DSYS( PMEL(), "DP", 0. ))

#EVAL(#rgh_ClrDst = DSYS( PMEL(), "CD", 0. ))

#EVAL(#rgh_XFnshAlw = DSYS( PMEL(), "XF", 0. ))

#EVAL(#rgh_ZFnshAlw = DSYS( PMEL(), "ZF", 0. ))

// The calls to GETBLK() create placemarkers in the buffered output.

G75 P#GETBLK(0) Q#GETBLK(1) D#rgh_PDpth R#rgh_ClrDst U#rgh_XFnshAlw W#rgh_ZFnshAlw F#FEED

// The @CANNED_BEGIN section is called next.

Note: Conditional output of canned cycles is not supported. If the canned roughing section is exited early the corresponding part profile will still be processed and output.

For more information on DSYS, ISYS, and SSYS refer to the Reference: Macro Functions topic, in Learning SmartCAM, under Automation/Customization - MCL Reference. For more information on PMEL() see the Learning SmartCAM - Code Generation - Advanced Variable Usage section.

H [To Top]
Section @HELIX
Definition Called when processing a helix.
Related SMF Questions 280

Used with controls that support helix canned cycles, as set with machine file question 280.

Example:

@HELIX
< #PLANE>< #MOV>< X#XPOS>< Y#YPOS>< Z#ZPOS>< I#XCTR>< J#YCTR>< F#FEED>
@

I [To Top]
Section @$INIT
Definition Automatically called at the beginning of CGT processing to initialize variables.

Example:

@$INIT
// initialize the #U var set to 999
#REPEAT(#U[])< #EVAL(#U[#RCNT] = 999) >
@

L [To Top]
Section @LAA
Description Call generated from processing @LAA user command, defined in machine events for line of holes at angle.
Only used for machines that use a special G code for this operation.
Section @LINE
Description Called when processing a linear profile move.
See Also Lines

Example:

@LINE
< #PLANE>< #MOV>< #DCOMP#EXC D#DOFF> < X#XPOS>< Y#YPOS>< Z#ZPOS>< F#FEED>
@

Section @LINEAR_ROUGH
Description Called to output Linear Rough canned cycle header definition when processing a Linear Rough process container element.
Supported Applications Turning
See Also @CANNED_BEGIN, @CANNED_END
If the section is not found, the elements within the container are processed normally using the conventional (@LINE, @ARC, etc) sections.

All parameters related to the Linear Rough process are available for output, and can be accessed with the DSYS, ISYS, and SSYS functions using the same parameter names as the Linear Rough macro command.

Example:( ** Note: The #rgh_ user vars must be declared in the @DECLARE section)

#EVAL(#rgh_PDpth = DSYS( PMEL(), "DP", 0. ))

#EVAL(#rgh_ClrDst = DSYS( PMEL(), "CD", 0. ))

#EVAL(#rgh_XFnshAlw = DSYS( PMEL(), "XF", 0. ))

#EVAL(#rgh_ZFnshAlw = DSYS( PMEL(), "ZF", 0. ))

#EVAL(#rgh_Pangl = DSYS( PMEL(), "AN", 0. ))

#EVAL(#CYCLE = ISYS( PMEL(), "FC", 0 ))

// The calls to GETBLK() create placemarkers in the buffered output.

#CYCLE P#GETBLK(0) Q#GETBLK(1) D#rgh_PDpth R#rgh_ClrDst U#rgh_XFnshAlw W#rgh_ZFnshAlw F#FEED

// The @CANNED_BEGIN section is called next.

@@CYCLE

0,G71

1,G72

@

Note: Conditional output of canned cycles is not supported. If the canned roughing section is exited early the corresponding part profile will still be processed and output.

For more information on DSYS, ISYS, and SSYS refer to the Reference: Macro Functions topic, in Learning SmartCAM, under Automation/Customization - MCL Reference. For more information on PMEL() see the Learning SmartCAM - Code Generation -Advanced Variable Usage section.

M [To Top]
Section @MOV
Description Matching lookup table for output of codes by #MOV.
Sample table:
@MOV
0,G00
1,G01
2,G02
3,G03
45,G02
46,G03
N [To Top]
Section @NBLMD
Description Matching lookup table for output of codes by #NBLMD.
Sample table:
@NBLMD
0,nblmd.0
1,nblemd.1
@
Section @NAV5X
Description Processed when a NAV5X machine event is encountered in the process model.
Related SMF Questions 292, 294
Supported Applications Milling

Applicable for machines with tilting head rotary axis configurations.

Section @NURBS
Description Called when processing NURBS data.
Related SMF Questions 86, 87, 88, 89, 107
Supported Applications All

Example:

@NURBS
#REPEAT (#NUMKNOT)<
< K#KNOTVAL>
#GETKNOT>
#REPEAT(#NUMNODE)<
< #MOV> < X#XNODE>< Y#YNODE>< Z#ZNODE> < W#NODEWGT>
#GETNODE>
@

O [To Top]
Section @OP_BORE
Description Processed when Type=Boring on the Step-Operation tab of the Planner.
Used for Boring operations. Use G85, G86, G87, or G88, based on JOF settings.

#CYCLE can equal 0, 1, 2, or 3 and gets command string from the @@CYCLE section.

Example:

@OP_BORE
< #RTNLVL #CYCLE>< X#XPOS>< Y#YPOS>< Z#ZDPTH>< R#ZCHK>#IF(#CYCLE=3)<< P#DWELL>>< F#FEED>

// local cycle table for #CYCLE when in @OP_BORE
@@CYCLE
0,G85
1,G86
2,G87
3,G88

Section @OP_CBORE
Description Processed when Type=Counterboring on the Step-Operation tab of the Planner.
Section @OP_CDRL
Description Processed when Type=Center Drilling on the Step-Operation tab of the Planner.
Section @OP_CSINK
Description Processed when Type=Countersinking on the Step-Operation tab of the Planner.
Section @OP_DRL
Description Processed when Type=Drilling on the Step-Operation tab of the Planner.
Section @OP_FACE
Related SMF Questions 180, 182
Supported Applications Turning
Section used for canned facing cycle.
Section @OP_FGRV
Related SMF Questions
Supported Applications Turning
Section used for turning Face Grooving.
Section @OP_GRV
Related SMF Questions
Supported Applications Turning
Section used for turning OD or ID groove cycle.
Section @OP_HOLEwMILLOP
Related SMF Questions
Supported Applications Milling, Aturn
Used for processing a hole whose step has a milling op instead of a hole op.
When this section is not present in the CGT, the hole code is output long hand with individual feeds and rapids.
Section @OP_PDRL
Description Processed when Type=Peck Drilling on the Step-Operation tab of the Planner.

Example:

@OP_PDRL
< #RTNLVL #CYCLE>< X#XPOS>< Y#YPOS>< Z#ZDPTH>< R#ZCHK Q#PECK>< F#FEED>

// local cycle table for #CYCLE when in @OP_PDRL
@@CYCLE
0,G83
1,G73

Section @OP_REAM
Description Processed when Type=Reaming on the Step-Operation tab of the Planner.
Section @OP_SPDRL
Description Processed when Type=Spot Drilling on the Step-Operation tab of the Planner.
Section @OP_SPEC
Description Processed when Type=Form Hole Making on the Step-Operation tab of the Planner.
Section @OP_SPFACE
Description Processed when Type=Spot Facing on the Step-Operation tab of the Planner.
Section @OP_TAP
Description Processed when Type=Tapping on the Step-Operation tab of the Planner.
Use G74 or G84, based on JOF settings.

Uses a user-defined Tap Cycle table to get command string, based on the JOS tl(ccw) value.

Example:

@DECLARE
#TBL #tapCycle
. . .
. . .
@OP_TAP
// set user defined var to JOS data
#EVAL(#tapCycle=jos(ccw))
#IFCHG(#CYCLE)<#RESET(#tapCycle)> // Make sure the
// cycle code gets output after a G80.
< #RTNLVL #tapCycle>< X#XPOS>< Y#YPOS>< Z#ZDPTH>< R#ZCHK>< Q#FEED F#FEED>

@tapCycle
0,G84
1,G74

Section @OP_THD
Related SMF Questions 185-195
Supported Applications Turning
Section used for turning Thread cycles.

Example:

SMF #185 <0> Cycle command for thread pass only, rapid moves added

@OP_THD
G33< X#XPOS> Z#ZPOS F#FTHRD< #COOLNT>
@


Example:

SMF #185 <1> Cycle command for each thread pass, no rapid moves added

@OP_THD
G92< X#XPASS>< Z#ZPASS>< F#FTHRD>< #COOLNT>
@


Example:

SMF #185 <2> Single cycle command generates entire thread cycle

Note: The following example is only applicable to thread elements created in v19.5 or higher. All non-coordinate parameters related to the Thread element are available for output, and can be accessed with the DSYS, ISYS, and SSYS functions using the same parameter names as the THREAD2 and THREAD2_PARAMS macro commands.

@DECLARE
...
#FMT(#thd_SprPsCnt, F2.0) // spring pass count
#CALCFMT(#thd_PlOutRevs, F1.1) // number of pullout revs
#FMT(#thd_InFdAng, L2.0) // in feed angle
#DEC #thd_OutFdAng // out feed angle
#DEC #thd_FrstDpth // first depth
#DEC #thd_LstDpth // last depth
#DEC #thd_MinDpth // minimum depth
#CALCDEC #thd_Hght // thread height
...
@

@OP_THD
#CALL($pullThdElParams)
G76 P#thd_SprPsCnt#thd_PlOutRevs#thd_InFdAng Q#thd_MinDpth R#thd_LstDpth
G76< X#XPASS> Z#ZPASS R#XOV P#thd_Hght Q#thd_FrstDpth F#FTHRD< #COOLNT>
@

// calc @section that pulls the thread element params
@$pullThdElParams
#EVAL(#thd_SprPsCnt=DSYS( PMEL(), "NSP", 0. ))
#EVAL(#thd_InFdAng=DSYS( PMEL(), "IA", 0. ))
#EVAL(#thd_OutFdAng=DSYS( PMEL(), "OA", 0. ))
#EVAL(#thd_FrstDpth=DSYS( PMEL(), "DS", 0. ))
#EVAL(#thd_LstDpth=DSYS( PMEL(), "FPD", 0. ))
#EVAL(#thd_MinDpth=DSYS( PMEL(), "MPD", 0. ))
@

// calculate thread height - this is for radius output
@$thd_Hght
#RETNUM(#THD_Crest-#XCTR)
@

// calculate pull out revolutions
@$thd_PlOutRevs
#RETNUM(ABS((TAN(#thd_OutFdAng)*#thd_Hght)/#FTHRD))
@

For more information on DSYS, ISYS, and SSYS refer to the Reference: Macro Functions topic, in Learning SmartCAM, under Automation/Customization - MCL Reference. For more information on PMEL() see the Learning SmartCAM - Code Generation - Advanced Variable Usage section.

Section @OP_TURN
Related SMF Questions 180, 181
Supported Applications Turning
Section used for canned turning cycle.
P [To Top]
Section @PADLINE
Related SMF Questions 7
Supported Applications All
Used in conjunction with SMF question #7. Used to pad code output files out to a required number of lines. The @PADLINE section should include only a single padding line, which is called repeatedly to pad out the number of lines.

@PADLINE
						
@
Section @PNCHTL
Description Called when changing to a punch tool after using an attachment that is not commanded by a tool number.
Supported Applications Fabrication

It is useful for outputting a punch offset number (example: E00).

Section @PLANE
Description Matching lookup table for output of codes by #PLANE.
Sample table:
@PLANE
0,G17
1,G18
2,G19
@
Section @PRMRY
Description Matching lookup table for output of codes by #PRMRY.
Sample table:
@PRMRY
0,prmry.0
1,prmry.1
@
Section @PROLOGUE
Description
Related SMF Questions 30-33, 36, 37, 98, 299-302
Supported Applications All
Section typically used in conjunction with the #SMFCHANGE function. The section is called for every move, prior to the formatting of CGT words.

It is useful for conditionally changing the axis or sign associated with coordinate words.

Example:

@PROLOGUE

#IF(#SPNDLNUM=1)<#SMFCHANGE(299,-1)>

@

Section @PUNCH
Description Matching lookup table for output of codes by #PUNCH.
Sample table:
@PUNCH
0,punch.0
1,punch.1
2,punch.2
@
R [To Top]
Section @RAP
Description Called when processing a rapid move.
For most machines, this section is called for processing rapid moves only. This includes moves to the beginning of a profile or to a point.

With punch presses, this section generally processes rapid moves, points, and holes (single punch hits).

Example:

@RAP
< #MOV>< X#XPOS>< Y#YPOS>< Z#ZPOS>
@

Section @REPO
Description Call generated from processing @REPO user command, defined in machine events for doing a clamp reposition.
Supported Applications Fabrication
Section @RFEED
Description Matching lookup table for output of codes by #RFEED.
Sample table:
@RFEED
0,
1,R0
@
Section @RTNLVL
Description Matching lookup table for output of codes by #RTNLVL.
Sample table:
@RTNLVL
0,G98
1,G99
@
S [To Top]
Section @SHPRF
Description Called for outputting shearproof nibble cycle.
Supported Applications Fabrication
Section @SPEEDS
Description Called for speed code lookup.
Related SMF Questions 52
Supported Applications Mill, Turn
Table of speed codes for machines without direct RPM coding ability.

To enable this section, machine file question 52 must be set to <1> Yes.

Section @SPMODE
Description Matching lookup table for output of codes by #SPMODE.
Sample table:
@SPMODE
0,G97
1,G96
@
Section @SPNDL
Description Matching lookup table for output of codes by #SPNDL.
Sample table:
@SPNDL
0,M05
1,M03
2,M04
@
Section @START
Description Called at the beginning of a program to initialize variables and output program start codes.
This is the first section processed that can output code.

Output from this section can include a tape rewind stop character, a command to turn block numbers on, a safe start block, a call for the first tool to be used, and the first rapid move of the program.

Example:

@START
%
N1 O1111
#ONBLK G0 G17 G40 G80 G90 E1
M6 T#TOOL (#TDESC)
// #COOLNT can equal 0, 1, 2, 3, or 4 and
// gets command string from the COOLNT table
#SPNDL #COOLNT S#SPEED
X#XPOS Y#YPOS
Z#ZPOS H#LOFF

Section @STEPCHG
Description Called when a step change is encountered without a tool change.

Anything can be output from this section and anything can be evaluated (#EVAL()).

When a step change is encountered, the process will first go the @STEPCHG section and output those values that have changed. When done, the process will continue to the next appropriate section.

When only a tool change is encountered, the process will go to the @TOOLCHG section of the CGT and process all required values. @STEPCHG will not be processed in this instance.

Section @STPROF
Description Called at the beginning of a profile to handle positioning to the profile start and output any preparatory profiling codes.

For more information on profiles, see the "Profiles and Geometry" section of the "Important Contents" topic.

It is usually used to turn on cutter compensation and start any cutting cycle commands (for example, to turn a torch on).

Example:

< #MOV>< X#XPOS>< Y#YPOS>
< Z#ZPOS>
< #COOLNT>
@

Section @SUBDEF
Description Called at the beginning of a sub program definition.
T [To Top]
Section @TOOLCHG
Definition Called when a tool change is encountered.

Example:

@TOOLCHG
G00 G40 G80 M05 M09
G91 G28 G49 Z0
T#TOOL M06
#SPNDL S#SPEED
G90 X#XPOS Y#YPOS
G43 Z#ZPOS H#LOFF
@

Section @TORCH
Description Called when switching from a punching tool to a torch.
Related SMF Questions 230
Supported Applications Fabrication
Section @TPINDX
Description Called when a plane change triggers rotary axis index.
Related SMF Questions 305
Supported Applications Used by Milling and Turning when SMF Question #305 is set to 1.
Also see @WKSYS.
Section @TRAVERSE
Description Called between the end of on profile and beginning of the next profile with the same Step.
Supported Applications All
Allows the user to include any preparatory commands required between a @ENDPROF section and a @STPROF section.

This is similar to @RAP, which is called between other sections.

W [To Top]
Section @WAIT
Description Called when processing a wait state in 4 axis turning.
Supported Applications Advanced Turning
Section @WINCL
Description Matching lookup table for output of codes by #WINCL.
Sample table:
@WINCL
0,G50
1,G51
2,G52
@
Section @WKSYS
Description Called for plane change code output, generally for situations not involving rotary axis indexing.
Related SMF Questions 66, 68, 69
Called when processing a new workplane. In Milling applications, @WKSYS is only called if @TPINDX is not found.
For Turning applications, if SMF question #305 is set to 0, then @WKSYS is called for plane changes. If SMF #305 is set to 1, then it works like Milling; only calling @WKSYS if @TPINDX is not found.
X [To Top]
Section @XZARC
Description Called when processing and arc in the XZ plane.
Example:
@XZARC
< #PLANE>< #MOV>< X#XPOS>< Z#ZPOS>< I#XCTR>< K#ZCTR>< F#FEED>
@
Section @XZHELIX
Description Called when processing a helix in the XZ plane.
Example:
@XZHELIX
< #PLANE> #MOV X#XPOS< Z#ZPOS> I#XCTR K#ZCTR< F#FEED>
@
Y [To Top]
Section @YZARC
Description Called when processing an arc in the YZ plane.
Example:
@YZARC
< #PLANE>< #MOV>< Y#YPOS>< Z#ZPOS>< J#YCTR>< K#ZCTR>< F#FEED>
@
Section @YZHELIX
Description Called when processing a helix in the YZ plane.
Example:
@YZHELIX
< #PLANE> #MOV Y#YPOS< Z#ZPOS> J#YCTR K#ZCTR< F#FEED>
@
Z [To Top]
Section @ZCHKMV
Description Called when making the rapid move to the z check height.
Related SMF Questions 83

The Z-check height above the profile top is set by machine file question 83 or by the #CHKD CGT word.

Example:
@ZCHKMV
< #CYCLE><< #MOV> Z#ZPOS>
@
Section @ZCLRMV
Description Called when making the retract move to the z clearance height.
Example:
@ZCLRMV
< #CYCLE><< #MOV> Z#ZPOS>
@
Section @ZDPTHMV
Description Called for outputting the feed move to z depth.
Example:
@ZDPTHMV
<< #MOV> Z#ZPOS< #COOLNT>< F#FEED>>
@