CGT Word Reference

The following presents an alphabetical list of all CGT words available in SmartCAM. All CGT words are not available in all SmartCAM applications, only those applications where the word makes sense. Additionally, some CGT words have different meanings in different applications. For example #XST in lathe threading is the starting X value of the root thread pass, but for lathe grooving it is the start corner X position, and in the @ARC and @LINE sections it is the start of the element.

Alphabetical Table of CGT Words

[  A An B C Ch Ct D E Ev F Fi G H I In J K L M N O P Ps Q R Ro S Se Sp St Sy T Th Tl To U V W X Xp Xs Y Z  ]

A [To Top]
Word #ABSI
Type Table Lookup, Control
Description Used to set absolute/incremental positioning output, AND lookup the positioning mode code. See table @ABSI.
Value 0 = Absolute, 1 = Incremental
Related SMF Questions 25, 26, 27, 299
// set system to incremental output
#EVAL(#ABSI=1)

// outputs absolute/incremental positioning code from @ABSI table
#ABSI
Word #ADIR
Type Table Lookup
Description Rotation direction code lookup for A-Axis (#INDXA). See table @ADIR.
Value 0 = CW, 1 = CCW
Related SMF Questions 451, 452
See Also MultiAxis
Word #AITOOL
Type Numeric
Description Flag indicating an auto index tool is active.
Value 0 = Fixed Tool, 1 = Autoindex Tool
FMT Class F_Integer
Supported Applications Advanced Fab
An [To Top]
Word #AND
Type Control
Description Logical AND operator for conditional processing.
Notes A comma must be inserted before the #AND
//Output both if both have changed.  Otherwise, do not output anything.
< #MOV,#AND X#XPOS >

//If #V6=#XPOS and #V7=8 then exit this section.
#IF(#V6=#XPOS,#AND #V7=8)<#EXIT>

//If #U0 is 2 and #V9 is greater than 5, then output an M00.
#IF(#U0=2,#AND#V9>5)< M00 >
Word #ARAD
Type Numeric
Description Arc radius or start radius for helix
Value Value must be greater than 0 (zero).
FMT Class F_Decimal
Related SMF Questions 22, 99, 120
See Also Arcs
Notes Where the arc has left/right offset, the original arc radius is modified by the cutter radius.
Word -- PRELIMINARY -- #AXIAL
Type Numeric
Description Axial move type.
Value 2 = Rapid retract, 1 = Feed retract, 0 = Not an axial move, or not applicable, -1 = Feed plunge, -2 = Rapid plunge
FMT Class F_Integer
Supported Applications Milling and Advanced Turning
-- PRELIMINARY -- Note: Tilting Head Rotary axis functionality is incomplete. This word is provided for testing purposes only. Associated behaviors and output are subject to change.

Can be tested to provide contextual information about moves along the tool axis.

B [To Top]
Word #BDIR
Type Table Lookup
Description Rotation direction code lookup for B-Axis (#INDXB). See table @BDIR.
Value 0 = CW, 1 = CCW
Related SMF Questions 451, 452
See Also MultiAxis
Word #BDSTR
Type String, Block Numbers
Description Block delete character or string prepended to each block when #BLKDEL = 1.
Related SMF Questions 17
Notes Initially set in .smf.
Word #BLK
Type Numeric, Block Numbers
Description The current block number.
Value Value must be greater than 0 (zero).
FMT Class F_BlockNumber
Related SMF Questions 11 through 16
Word #BLKDEL
Type Numeric, Block Numbers
Description Toggles output of #BDSTR.
Value 0 = #BDSTR output off, 1 = #BDSTR output on
FMT Class F_Integer
Related SMF Questions 17
C [To Top]
Word #C0-#C5
Type User Switch
Description Multi entrant table access
Value Progressing integer value ranges
Related SMF Questions 360-371
Word #CALCDEC
Type Data
Description Declares an automatic numeric @$Section call #WORD which calls the name matched @$Section and captures the value generated in the #RETNUM() function for output or use in an expression.
Value Value returned from the name matched @$Section by the #RETNUM() function.
FMT Class F_Decimal
See Also #RETNUM, CGT Variables
Notes To access the current value of a #CALCFMT() #WORD without invoking a call to a matching @$Section, precede the var name with ! instead of #.
@DECLARE
#CALCDEC #xdia
@
...
@RAP
#MOV< X#xdia>< Y#YPOS>
@
...
@$xdia
#RETNUM(#XPOS * 2)
@
Word #CALCFMT(#varname, format)
Type Data
Description Declares an automatic @$Section call #WORD which calls the name matched @$Section and captures the value generated in the #RETNUM() function for output using the user defined format or for use in an expression.
Value Value returned from the name matched @$Section by the #RETNUM() function.
FMT Class User defined numeric
See Also #RETNUM, #FMT(), CGT Variables, About Numeric Formats
Notes To access the current value of a #CALCFMT() #WORD without invoking a call to a matching @$Section, precede the var name with ! instead of #.
@DECLARE
#CALCFMT( #xdia, D3.2)
@
...
@RAP
#MOV< X#xdia>< Y#YPOS>
@
...
@$xdia
#RETNUM(#XPOS * 2)
@
Word #CALCINT
Type Data
Description Declares an automatic @$Section call #WORD which calls the name matched @$Section and captures the value generated in the #RETNUM() function for output or use in an expression.
Value Value returned from the name matched @$Section by the #RETNUM() function.
FMT Class F_Integer
See Also #RETNUM, CGT Variables, #RETNumTst, #RETStrTst
Notes To access the current value of a #CALCINT #WORD without invoking a call to a matching @$Section, precede the var name with ! instead of #.
@DECLARE
#CALCINT #tlmag, #tlsta
@
... 
@TOOLCHG
T#tlmag:#tlsta
@
... 
@$tlsta
#RETNUM(#TOOL - 100 * #tlmag)
@
... 
@$tlmag
#RETNUM(INT(#TOOL / 100))
@
Word #CALCSTR
Type Data
Description Declares an automatic @$Section call #WORD which calls the name matched @$Section and captures the value generated in the #RETSTR() function for conditional output or use in an expression.
Value Value returned from the name matched @$Section by the #RETSTR() function.
See Also #RETSTR, CGT Variables
Notes To access the current value of a #CALCSTR #WORD without invoking a call to a matching @$Section, precede the var name with ! instead of #.
@DECLARE
#CALCSTR #stpnts_ucase, #tdesc_ucase
@
... 
@TOOLCHG
(#stpnts_ucase#tdesc_ucase)
@
... 
@$tdesc_ucase
#RETSTR(#MSE(TO_UPPER(#TDESC)))
@
... 
@$stpnts_ucase
#RETSTR(#MSE(TO_UPPER(#STPNTS)))
@
Word #CALL(section name)
#CALL(section name, #IF(numeric test))
#CALL(section name, #IFSTR(string test))
#CALL(section name, #IFCHG(CGT word))
Type Control
Description Calls another @Section identified by the string expression section name and returns to the character following the closing parenthesis ')'.
See Also #EXITC, #GOTO, #IF, #IFSTR, #IFCHG
Notes The @ character is not included in the call statement section name. #CALLs can be nested to 255 deep.
// call @LINE directly
#CALL(LINE)

// call the @ARC section whose name is contained in the string variable #S1
#EVAL(#S1=ARC)#CALL(#S1)

// call the @Section whose name is looked up through #MOV in the @MOV table
#CALL(#MOV)

// CALL the @Section name held in #S1 if #MOV is greater than 3
#CALL(#S1, #IF(#MOV > 3))

// CALL @ZCLEAR if the string #S1 contains the text "clear"
#CALL(ZCLEAR, #IFSTR(#S1=clear))
Word #CDIR
Type Table Lookup
Description Rotation direction code lookup for C-Axis (#INDXC). See table @CDIR.
Value 0 = CW, 1 = CCW
Related SMF Questions 451, 452
See Also MultiAxis
Word #CENG
Type Table Lookup
Description C-axis engage/disengage code lookup. See table @CENG.
Value 0 = Disengaged, 1 = Engaged
Related SMF Questions 449, 450
Ch [To Top]
Word #CHKD
Type Numeric
Description Holds the value for the tool check distance.
Value Incremental distance above the prof top.
FMT Class F_Decimal
Related SMF Questions 83
Word #CLEAR
Type Numeric
Description Holds the Z ordinate of the element's clear value.
Value Always absolute regardless of #ABSI.
FMT Class F_Decimal
Word #COOLNT
Type Table Lookup
Description @COOLNT table lookup value. See table @COOLNT.
Value 0 = None, 1 = Flood, 2 = Mist, 3 = Through, 4 = Air
Word #CRVDEG
Type Numeric
Descriptions Nurbs curve degree of freedom.
Value > 0
FMT Class F_Integer
Related SMF Questions 86, 87, 88, 89, 107
Word #CSSDIA
Type Numeric
Description Constant Surface Speed Diameter Value
Value > 0.
FMT Class F_Decimal
Supported Applications Production Turning, Advanced Turning
Notes Controlled by the speed mode set for each operation in the job operations setup.
Output conditionally based on the CSS speed mode being active.
Word #CSSRAD
Type Numeric
Description Constant Surface Speed radius value
Value > 0
FMT Class F_Decimal
Supported Applications Production Turning, Advanced Turning
Ct [To Top]
Word #CTRLOC
Type Table Lookup
Description Arc center location code lookup for arc radius output (smf100<2>). See table @CTRLOC.
Value 0 = arc is < 180 degrees, 1 = arc is > 180 degrees
Related SMF Questions 100, 101, 102
See Also Arcs
Word #CUTC
Type Table Lookup
Description Contouring On/Off code lookup for primary and secondary contouring modes. See table @CUTC.
Value 0 = Primary Off, 1 = Primary On, 2 = Secondary Off, 3 = Secondary On
Related SMF Questions 110, 111, 112, 113
Supported Applications All apps for primary; Fab and WEDM for secondary
Word #CYCLE
Type Table Lookup
Description Canned hole cycle code lookup from @@CYCLE or @CYCLE table for cycle value assigned on hole operation page in the planner.
Value 0=Cycle cancel, > 0 specifies cycle code to lookup
Word #CYTIME
Type Numeric, Cycle Times
Description Total accumulating cycle time.
Value > 0
FMT Class F_Decimal
Related SMF Questions 141, 142, 144
D [To Top]
Word #DATE
Type String
Description The current system date in the form mm/dd/yy.
Word #DCOMP
Type Table Lookup
Description Lookup current cutter comp code for profile element. See table @DCOMP.
Value 0 = Off, 1 = Left, 2 = Right
Related SMF Questions 121, 123, 124, 125
*	#DCOMP is automatically assigned the offset property (0=off, 1=left or 2=right) of profile elements. 
*	For elements with offset off, #DCOMP can be set via the @CMPL (=1), @CMPR (=2), and @CMPX (=0) User Events. 
	Example:
	Placing a @CMPL User Event at the beginning of a profile will set #DCOMP to 1=Left.
 	It will remain in effect for the entire profile, or until a @CMPX User Event sets it to 0=Off.
Word #DEC
Type Data
Description Use in the @DECLARE section to declare a numeric variable or numeric array using the decimal format.
FMT Class F_Decimal
See Also CGT Variables
Word #DOFF
Type Numeric
Description Diameter offset register number. Set in the Doff field of the Step dialog.
FMT Class F_Offset
Notes Will be assigned the value of #TOOL if the Doff field is unassigned.
Word #DWELL
Type Numeric
Description Dwell time used in canned hole operations. Set in Dwell field on the Operation tab of the Step Dialog.
FMT Class F_DwellTime
Related SMF Questions 50
@OP_CSINK
< #ABSI>< #RTNLVL>< #CYCLE>< X#XPOS>< Y#YPOS>< Z#ZDPTH R#ZCHK P#DWELL>< F#FEED>
@ 
E [To Top]
Word #EANG
Type Numeric
Description End angle of arc, hole pattern, or helix.
Value -360 to 360
FMT Class F_Angle
Related SMF Questions 24
See Also Arcs
Word #EBLK
Type Numeric
Description Subprogram ending block number.
FMT Class F_BlockNumber
Word #ELSE<CGT Operations>
Type Control
Description Logical ELSE operator. Processes contents of trailing <> when preceding condition is false.
See Also #IF, #IFSTR, #IFCHG
// output #TOOL if its value had changed otherwise output 00
<#TOOL>#ELSE<00>

// if #TOOL < 100 output normal toolchange ELSE output program stop
#IF( #TOOL < 100 )<T#TOOL M06>#ELSE<M00>

// if #NTOOL > 100 set manual tool change flag to true ELSE set it to false
#IF( #NTOOL > 100 )<#EVAL(#manualTlChg = #true)>#ELSE<#EVAL(#manualTlChg = #false)>
Word #ENAME
Type String
Description Element name for current pm5 element.
Related SMF Questions 120
Notes The name is only available for elements which are not offset or are coded to the part profile.
Word #EULER1
#EULER2
#EULER3
Type Numeric
Description Ordered rotation angles that define the active plane orientation according to the method specified by the related SMF questions.
FMT Class F_Angle
Related SMF Questions 303, 318, 319
Notes These words are typically used to output tilted plane commands that allow an inclined feature to be machined using local coordinates.
G68.2 X#LOCORX Y#LOCORY Z#LOCORZ I#EULER1 J#EULER2 K#EULER3
Ev [To Top]
Word #EVAL(CGT numeric word = numeric expression)
#EVAL(CGT string word =string expression)
Type Function, Data
Description Assign numeric and string words via numeric and string expressions.
See Also CGT math funcs
Notes #EVAL() does not output anything. It only performs an assigment.
// calculate the diameter (twice the arc radius)
#EVAL(#diam = #ARAD * 2)

// assign string with program ID and date
#EVAL(#S1=#PROGID generated on #DATE)
Word #EVMD(macro decimal variable = numeric expression)
#EVMI(macro integer variable = numeric expression)
#EVMS(macro string variable =string expression)
Type Function, Data
Description Assign values to numeric and string macro variables via numeric and string expressions.
See Also CGT math funcs
Notes The #EVMx() functions will create the macro variable if it does not exist. If the macro variable already exists, the function must match the type of macro variable being assigned.
// calc and assign a diameter to a decimal macro variable
#EVMD( #AVDIA = #radius * 2 )

// capture the value of #TOOL in an integer macro variable
#EVMI( #AVLTL = #TOOL )

// assign a macro string variable a string with program ID and date
#EVMS(#AVSI=#PROGID generated on #DATE)
Word #EXC
Type Control
Description Exclude any following #WORDs from conditional output determination inside <>
// output #DCOMP and #DOFF only if #DCOMP has changed
<#DCOMP#EXC D#DOFF>
Word #EXIT
Type Control
Description Exit CGT file processing for the current item.
Word #EXITC
Type Control
Description Exit current #CALL on the call stack.
See Also #RETNUM, #RETSTR
Word #EXITR
Type Control
Description Exit #REPEAT() loop.
Word #EXLN
Type Control
Description Allow wrap around line, ie skip the end of line triggering a new block.
F [To Top]
Word #F_*
Type #FMT Class Argument
Description Argument used in #FMT() in @DECLARE to set format for a class of numeric #WORDs
Related SMF Questions Replaces 9,10,22,23,42,43,51,53,64,65,187,216,439
See Also #FMT()
Notes The applicable format class is listed with each Numeric word.
// To permanently assign a format to a whole class of #CGTword add any of the following lines to your @DECLARE section.
@DECLARE
#FMT( #F_Angle, Format )
#FMT( #F_BlockNumber, Format )
#FMT( #F_DwellTime, Format )
#FMT( #F_Feedrate, Format )
#FMT( #F_Integer, Format )
#FMT( #F_InverseTime, Format )
#FMT( #F_Offset, Format )
#FMT( #F_Decimal, Format )
#FMT( #F_SecondaryFeed, Format )
#FMT( #F_SpindleSpeed, Format )
#FMT( #F_ThreadFeed, Format )
#FMT( #F_TimingCode, Format )
#FMT( #F_ToolNumber, Format )
Word #FDADJ
Type Table Lookup
Description Feedrate adjust code lookup for periphery of arcs. See table @FDADJ.
Value 0 = Off, 1 = On
Related SMF Questions 47, 48, 49
See Also Arcs
Word #FDMODE
Type Table Lookup
Description Primary or secondary feed code lookup based on the Feed Mode field in the Planner Step-Operation tab. See table @FDMODE.
Value 0 = Primary/UPM, 1 = Secondary/UPR, 2 = Inverse time
Related SMF Questions 44, 45, 438
Word #FDMULT **deprecated No longer used to calculate z feed. Z feed assigned directly in the Step.
Type Numeric
Description Feedrate multiplier for Z depth moves.
Value >0
FMT Class F_Feedrate
Related SMF Questions 41
Word #FEED
Type Numeric
Description Feedrate of current operation set on the Planner Step-Operation tab.
FMT Class F_Feedrate
Related SMF Questions 40, 41
See Also #FDADJ
Fi [To Top]
Word #FILE
Type String
Description Name of code output file.
Word #FINVAL(CGT Numeric or String Word)
Type Function
Description Places the final value of a variable at the specified location in the code file.
@START
%
// output total cycle time at top of code file 
(Time: #FINVAL(#CYTIME))
#ONBLK G40 G17 G80 G90

Outputs:
%
(Time: 89.3798)
N001 G40 G17 G80 G90 
Word -- PRELIMINARY -- #FIVE_AXIS
Type Numeric
Description Five axis move type.
Value 0 = False, 1 = True
FMT Class F_Integer
Supported Applications Milling
Notes -- PRELIMINARY -- Note: Tilting Head Rotary axis functionality is incomplete. This word is provided for testing purposes only. Associated behaviors and output are subject to change.

Can be tested to determine if the current move is a 5-axis move. This is currently only applicable for tilting head machine types, and will only be true when the SMF is configured to World Output (#303) and current move local Z is not aligned with world Z.

Word #FMT(CGT Word, format string)
Type Function, Data
Type Function
Description Formats a numeric #CGTWord in line, or assigns a permanent format for a #CGTWord or class of words in the @DECLARE section.
Related SMF Questions Replaces 9,10,22,23,42,43,51,53,64,65,187,216,439
See Also About Numeric Formats, #F_*, CGT Variables,
Notes Automatic inch/metric conversion is not performed on words formatted with #FMT
#FMT() can be applied at 3 different levels of priority:
1) At an individual output instance in the CGT.  This takes precedence over 2) and 3).
2) For an individual #CGTWord wherever it appears in the CGT. This take precedence over 3) and can be overridden by 1).
3) For an entire class of #CGTWords wherever they appear in the CGT.

Examples:
// 1) for an individual output instance
// apply #FMT() directly in the CGT output line
...
#MOV X#XPOS Y#YPOS M1#TLID S#FMT(#SPEED, L2.1)
...


// 2) for individual #CGTWords words
// apply #FMT for each word in the @DECLARE section 
@DECLARE
// override the #F_Angle format for #EULER1, #EULER2, #EULER3
#FMT(#EULER1, D3.4)#FMT(#EULER2, D3.4)#FMT(#EULER3, D3.4)
// declare a numeric user var that doesn't use either the default #F_Decimal (#DEC) or #F_Integer (#INT) formats.
#FMT(#myExtendedX, D2.6)// declares an extended precision output X value
...
@


// 3) for an entire class of #CGTWords 
// apply #FMT() using format class specifiers in the @DECLARE section
@DECLARE
#FMT(#F_Decimal, D3.4) // Typical inch output
#FMT(#F_SpindleSpeed, T4.0) // Typical spindle speed output
#FMT(#F_ToolNumber, T2.0) // Typical tool number output
...
@
Word #FTHRD
Type Numeric
Description Thread feed (lead). Assigned on Planner Step-Operation tab.
FMT Class F_ThreadFeed
Supported Applications Turning
Word #FXD **deprecated See #CYCLE.
Type Table Lookup
G [To Top]
Word #GETBLK()
Type Function, Block Numbers
Description Gets the block number for the specified index assigned by #SETBLK() in the @CANNED_BEGIN and @CANNED_END sections in a canned roughing cycle.
Supported Applications Turning
See Also #SETBLK(), @CANNED_BEGIN, @CANNED_END, @CONTOUR_ROUGH, @GROOVE_ROUGH, @LINEAR_ROUGH
@LINEAR_ROUGH
G71 P#GETBLK(0) Q#GETBLK(1) D#V1 R#V2 U#V3 W#V4 F#FEED
@
Word #GETKNOT
Type Function
Description Fills #KNOTVAL with the next knot value from the knot vector.
Related SMF Questions 86, 87, 88, 89, 107
Notes If there are no more knot values or the code generator is not currently processing a NURBS, it will do nothing.
Word #GETNODE
Type Function
Value Fills #[XYZ]NODE and #NODEWGT with values of the next control or interpolation point for the curve.
Related SMF Questions 86, 87, 88, 89, 107
See Also #[XYZ]NODE, #NODEWGT
Notes If there are no more interpolation points, or the code generator is not currently processing a curve, it will do nothing.
Word #GOTO(section name)
#GOTO(section name, #IF(numeric test))
#GOTO(section name, #IFSTR(string test))
#GOTO(section name, #IFCHG(CGT word))
Type Control
Description Go to another CGT @Section.
See Also #CALL, #IF, #IFSTR, #IFCHG
Notes Cannot be used inside of a conditional. Must use the embedded conditional test syntax above.
The @ character is not included in the GOTO statement's section name.
// GOTO @LINE directly
#GOTO(LINE)

// GOTO the @ARC section whose name is contained in the string variable #S1
#EVAL(#S1=ARC)#GOTO(#S1)

// GOTO the @Section whose name is looked up through #MOV in the @MOV table
#GOTO(#MOV)

// GOTO the @Section name held in #S1 if #MOV is greater than 3
#GOTO(#S1, #IF(#MOV > 3))

// GOTO @ZCLEAR if the string #S1 contains the text "clear"
#GOTO(ZCLEAR, #IFSTR(#S1=clear))
Word #GRV_CrnrRad
Type Numeric
Description Groove corner radius.
Related SMF Questions 200-204
See Also Groove Category
Word #GRV_MaxWid
Type Numeric
Description Groove maximum width of cut.
Related SMF Questions 200-204
See Also Groove Category
H [To Top]

No CGT words in this section.

I [To Top]
Word #IF(numeric comparison)<CGT operations>
#IF(numeric comparison)<CGT operations>#ELSE<CGT Operations>
Type Control
Description Logical numeric IF operator. For conditional processing based on numeric comparisons.
See Also #AND, #OR, #ELSE, #CALL, #GOTO, #RETNumTst
The #IF() numeric comparison operator is available in the following forms:

#IF()<> forms:
#IF( numeric comparison )<  operations to perform if the comparison is true  >
#IF( numeric comparison ,#AND  numeric comparison )<  operations to perform if both comparisons are true  >
#IF( numeric comparison ,#OR  numeric comparison )<  operations to perform if either comparison is true  >

#IF()<>#ELSE<> forms:
#IF( numeric comparison )<  operations to perform if the comparison is true  >#ELSE<  operations to perform if the comparison is false  >
#IF( numeric comparison ,#AND  numeric comparison )<  operations to perform if both comparisons are true  >#ELSE<  operations to perform if any of the comparisons are false >
#IF( numeric comparison ,#OR  numeric comparison )<  operations to perform if either comparison is true  >#ELSE<  operations to perform if both comparisons are false  >

Available numeric comparison operators are:
=  equal
<>  not equal
>  greater than
>=  greater than or equal
<  less than
<=  less than or equal

Examples:
// If end processing flag is set turn off the flag and exit processing the current code element
#IF( #endProc = 1 )<#EVAL(#endProc = 0)#EXIT>

// NOTE: this can also be written as 
#IF( #endProc )<#EVAL(#endProc = 0)#EXIT>

// If #TLOP equals 2 execute the commands in the @TORCH section and then return
#IF( #TLOP = 2 )<#CALL(TORCH)>

// If #TLOP equals 2 and the torchIsActive flag is not set, execute the commands in the @TORCH_ON section and then return
#IF( #TLOP = 2, #AND #torchIsActive = 0 )<#CALL(TORCH_ON)>

// If #TLOP is not 2 or the torchIsActive flag is set, execute the commands in the @TORCH_OFF section and then return
#IF( #TLOP <> , #OR #torchIsActive )<#CALL(TORCH_OFF)>

// if #ZCHK is less than or equal to -4.0 turn on the useQuill flag else turn the useQuill flag off
#IF( #ZCHK <= -4.0 )<#EVAL(#useQuill = 1)>#ELSE<#EVAL(#useQuill = 0)>

// the #IF() logic and output can be spread over multiple lines
#IF(jos(coolant)=2)
<
G43 H#LOFF Z#ZPOS M07
M08
>
#ELSE
<G43 H#LOFF Z#ZPOS #COOLNT>
Word #IFCHG(CGT Numeric or String Word)
Type Control
Description Conditional status test operator. Returns the conditional <> output status for a #CGTWORD of combination of #CGTWORDS.
// if #V1 output status is changed output optional stop else exit coding for current element
#IFCHG(#V1)<M01>#ELSE<#EXIT>

// if #CYCLE status is changed pull code from DRILL_CODES table
#IFCHG(#CYCLE)<#EVAL(#drlCycle=#TABLE(DRILL_CODES, #CYCLE))>

// Do #CYCLE code lookup only if both #CYCLE and #MOV have changed output status
#IFCHG(#CYCLE,#AND #MOV)< #CYCLE >

// Do #CYCLE code lookup if either #CYCLE or #MOV have changed output status
#IFCHG(#CYCLE,#OR #MOV)< #CYCLE >
Word #IFSTR(String Comparison)<CGT operations>
#IFSTR(string comparison)<CGT operations>#ELSE<CGT Operations>
Type Control
Description Logical string comparison operator.
See Also #ELSE, #CALL, #GOTO, #RETStrTst
Notes This test is limited to doing a single comparison.
// if #strVar has no contents output EMPTY
#IFSTR(#strVar=)<EMPTY>

// if #strVar equals #S1 output MATCH else output NO MATCH
#IFSTR(#strVar=#S1)<MATCH>#ELSE<NO MATCH>

// if #strVar does not equal #S1 output #strVAR and set #S1 equal to #strVar
#IFSTR(#strVar<>#S1)
<
#strVAR
#EVAL(#S1=#strVAR)
>
In [To Top]
Word #INC
Type Numeric
Description Angular or linear increment distance between holes in hole patterns, and pitch for helix.
FMT Class F_Decimal
Used with @BHC, @LAA, and @GRID; any increment for @LINE and @ARC (for punch, increment between hits for @LINE and @ARC); for milling, pitch in depth axis for each full revolution of helix.
Word #INC2
Type Numeric
Description Increment in secondary direction for @GRID, and radial pitch for each full revolution of helix.
FMT Class F_Decimal
Related SMF Questions 22
Word #INC3
Type Numeric
Description Rise per radian for helix.
FMT Class F_Decimal
Word #INCLUDE(file path and name)
Type Function
Description Include the contents of an external file.
Notes Automatically numbers the blocks, if #ONBLK is enabled.
Argument may be a fixed name or a string variable, containing the name, such as #S1 or #SNAME.
Cannot be used inside of a conditional. See #CALL or #GOTO for conditonal execution.
Word #INCLUDESTR("Start Marker","End Marker","Comment Start","Comment End","jos(note field JOS tag)", line length)
Type Function
Description Generates multi block output from specially formatted Notes field content.
See Also INCLUDESTR Details
Notes Cannot be used inside of a conditional. See #CALL or #GOTO for conditonal execution.
Word #INDXA
Type Numeric
Description A axis rotary index angle, or punch auto index station angle.
FMT Class F_Angle
Related SMF Questions Punch: 248, Mill: 291, 298-304
Supported Applications Milling, Fabrication
See Also Arcs, MultiAxis
Word #INDXB
Type Numeric
Description B axis rotary index angle, or punch fixed station angle orientation.
FMT Class F_Angle
Related SMF Questions Punch: 248, Mill: 291, 298-304
Supported Applications Milling, Fabrication
See Also MultiAxis
Word #INDXC
Type Numeric
Description C axis rotary index angle.
FMT Class F_Angle
Related SMF Questions 291 291, 298-304
See Also MultiAxis
Word #INO, #JNO, #KNO
Type Numeric
Description I,J, and K components of the tool plane normal vector.
FMT Class F_Decimal
Related SMF Questions 290, 299
See Also MultiAxis
Word #INT
Type Data
Description Used in @DECLARE to declare a numeric variable or numeric array using the Integer format.
FMT Class F_Integer
See Also CGT Variables
#INT #myIntVar, #myIntArr[30]
Word #IPECK
Type Numeric
Description Initial peck distance. Assigned in the Planner Step-Operation tab.
FMT Class F_Decimal
Related SMF Questions 152
Supported Applications Mill, Turn
J [To Top]
Word #JNO ..... see #INO
K [To Top]
Word #KNO ..... see #INO
Word #KNOTVAL
Type Numeric
Description NURBS processing, current/active knot value.
FMT Class F_Decimal
Related SMF Questions 86, 87, 88, 89, 107
Supported Applications All
L [To Top]
Word #LAST(numeric CGT word)
Type Expression-Function, Data
Description Return the last value for the numeric CGT word contained within the () to a numeric expression.
// test for move to clear 
#IF( #CLEAR > #LAST(#ZPOS) )<GOO Z#CLEAR>
Word #LEVEL
Type Numeric
Description Z level of current move. Always absolute.
FMT Class F_Decimal
Word #LNANG
Type Numeric
Description Angle of current line or rapid move.
FMT Class F_Angle
See Also Lines
Word #LNLEN
Type Numeric
Description Length of linear or arc move or distance between current and previous point or hole.
FMT Class F_Decimal
See Also Arcs, Lines
Notes Not available for @LAA or @GRID. Use #UPDATE() to update #XPOS and #YPOS if you are outputting length and angle (polar coordinates) instead of X and Y.
Word #LOCORX
#LOCORY
#LOCORZ
Type Numeric
Description Local plane origin's X, Y Z location in world coordinates.
FMT Class F_Decimal
Word #LOCXI
#LOCXJ
#LOCXK
Type Numeric
Description Local plane's X axis I, J, K components.
FMT Class F_Decimal
Word #LOCYI
#LOCYJ
#LOCYK
Type Numeric
Description Local plane's Y axis I, J, K components.
FMT Class F_Decimal
Word #LOCZK
#LOCZJ
#LOCZK
Type Numeric
Description Local plane's Z axis I, J, K components.
FMT Class F_Decimal
Word #LOFF
Type Numeric
Description Length offset register number. Assigned in the Planner Step tab LOFF field.
FMT Class F_Offset
Notes Defaults to #TOOL if unassigned.
Word #LTOOL
Type Numeric
Description Number of last tool coded.
FMT Class F_ToolNumber
Related SMF Questions 64
Word #LSPNDLNUM
Type Numeric
Description Last spindle value.
Value 1 = Main spindle, 2 = Sub-spindle
FMT Class F_Integer
Supported Applications Advanced Turning
Notes Use with #SPNDLNUM to control conditional output when transitioning between main and subspindle. Such as spindle On/Off codes in @START, @TOOLCHG, and @END.
Word #LTUROP
Type Numeric
Description Last turret op type.
Value 0 = Upper Turning, 1 = Upper Live Tool, 2 = Lower Turning, 3 = Lower Live Tool
FMT Class F_Integer
Supported Applications Advanced Turning
Notes Use to control conditional output when transitioning from one turret to another, Such as live tool spindle On/Off codes in @START, @TOOLCHG, and @END.
M [To Top]
Word #MOV
Type Table Lookup
Description Rapid, linear, arc, and helix code lookup (typically G00, G01, etc). See table @MOV.
Value 0 = Rapid, 1 = Linear, 2 = CW Arc, 3 = CCW Arc, 5 = Linear Nibble Mode, 6 = CW Nibble Mode, 7 = CCW Nibble Mode, 28 = Linear Face Mill, 29 = CW Face Mill, 30 = CCW Face Mill, 45 = CW Helix, 46 = CCW Helix
Related SMF Questions 80, 85, 92, 93, 243, 244, 245, 285, 286, 443, 445, 446, 447
See Also ArcsLines
Word #MSE(macro string function)
Type Expression-Function, Data
Description Compute and return the results of a macro string expression contained within the (). For use inside #EVAL() string assignment.
// read the name of the jobfile into a CGT string var
#EVAL( #S1 =#MSE(GET_NAME(JOBFILE())))
N [To Top]
Word #NBLMD
Type Table Lookup
Description Punch or nibble code lookup, based upon machine file question 235.
Value 0 = Punch Mode On/Nibble Mode Off, 1 = Nibble Mode On/Punch Mode Off
Related SMF Questions 235, 240, 241
Supported Applications Fabrication
Word #NEXTPT
Type Control
Description Skips to the next process element and resumes cgt processing at the position immediately after the #NEXTPT command.
Notes Cannot be used inside conditionals.
Word #NHOL
Type Numeric
Description Number of holes in hole pattern primary direction, or punch @LINE or @ARC move.
FMT Class F_Integer
Notes Used for patterns @BHC, @LAA, and @GRID primary direction; also for punch, number of hits for @LINE or @ARC.
Word #NHOL2
Type Numeric
Description Number of holes in the secondary direction for @GRID pattern.
FMT Class F_Integer
Word #NODEWGT
Type Numeric
Description Weight of current/active NURBS interpolation or control point.
FMT Class F_Decimal
Related SMF Questions 86, 87, 88, 89, 107
Word #NTOOL
Type Numeric
Description Number of next tool to be coded.
FMT Class F_ToolNumber
Related SMF Questions 64
Word #NUMKNOT
Type Numeric
Description The number of knot values in the NURBS.
FMT Class F_Integer
Related SMF Questions 86, 87, 88, 89, 107
Word #NUMNODE
Type Numeric
Description The number of control points (knots) in a NURBS curve.
FMT Class F_Integer
Related SMF Questions 86, 87, 88, 89, 107
O [To Top]
Word #OFFBLK
Type Control, Block Numbers
Description Turns off block numbering.
Related SMF Questions 10, 11, 14
@END
G49 G90 X120 Y8.0
M30
#OFFBLK%
Word #ONBLK
Type Control, Block Numbers
Description Turns on block numbering.
Related SMF Questions 10, 11, 14
Notes #ONBLK positioned at the first char in the line turns on block numbering for that line. Otherwise it turns it on in the following line.
@START
%#ONBLK
G49 G40 G90 G17

Yields:
%
N0001 G49 G40 G90 G17

@START
#ONBLK%
G49 G40 G90 G17

Yields:
N0001%
N0002 G49 G40 G90 G17
Word #OPTYPE
Type Numeric
Description Holds the last 4 digits of the current operation's SNCS number.
FMT Class F_Integer
Notes See Using SmartCAM - Data Tags and Section Numbers - JOS JOS Section Numbers for a list of SNCS numbers.
Word #OR
Type Control
Description Logical OR operator.
Notes A comma must be inserted before the #OR operator, within the expression.
// If either #MOV or #XPOS have changed, output them both.  Otherwise, do not output anything.
< #MOV,#OR X#XPOS >


// If #UO is equal to #LTOOL or if it is less than 1, then set #V1 to 1.
#IF(#U0=#LTOOL ,#OR #U07<1)<#EVAL(#V1=1)>


// If the user word #U0 is 2 or the user word #V9 is greater than 5, then output an M00
#IF(#U0=2 ,#OR #V9>5)< M00 >
Word #OUTCND
Type Debugging
Description Can be placed in @DECLARE section to output conditional status for code debugging.
Word #OUTERR
Type Debugging
Description Can be placed in @DECLARE section to output cgt processing errors for code debugging.
Word #OUTLIN
Type Debugging
Description Can be placed in @DECLARE section to output cgt line references for code debugging.
Word #OUTREF **deprecated See #OUTERR.
Word #OUTRPT **removed
Word #OUTSEC
Type Debugging
Description Can be placed in @DECLARE section to output section names as they are accessed for code debugging.
Word #OUTSECWCGT
Type Debugging
Description Placed in @DECLARE section will output section names with the .cgt nam as they are accessed for code debugging.
Word #OUTSECWPTH
Type Debugging
Description Placed in @DECLARE section will output section names with their path as they are accessed for code debugging.
Word #OVANG
Type Numeric
Description The angle of the offset vector in degrees.
FMT Class F_Decimal
Related SMF Questions 130
See Also #XOV, #YOV, #ZOV, Arcs, Lines
P [To Top]
Word #PCAN
Type Control
Description Set to punch off for previously active punching mode.
Supported Applications Fabrication
Notes Use with @ATTCHMT and @PNCHTL when switching between primary and secondary punching operations.
Word #PECK
Type Numeric
Description Peck increment for peck drill operation (@OP_PECK).
FMT Class F_Decimal
Related SMF Questions 150
Word #PLANE
Type Table Lookup
Description Orthogonal plane code lookup.
Value 0 = xy, 1=xz, 2=yz
Related SMF Questions 270, 271, 273, 275
Supported Applications Mill, Mill/Turn
See Also Arcs
Word #PRMRY
Type Table Lookup
Description Primary turret code lookup for use with CSS spindle speed mode on dual turret configuration.
Value 0, 1
Related SMF Questions 214, 215
Supported Applications Turning
Word #PROGID
Type String
Description Holds the Program ID specified on the Planner Job Info - General tab.
Ps [To Top]
Word #PSETLEN
Type Numeric
Description Tool length preset value. Assigned in the length preset field of the Planner Process Step-Tool tab.
FMT Class F_Decimal
Word #PTOP
Type Numeric
Description The absolute Z value of the element's prof top plus check distance (#CHKD).
FMT Class F_Decimal
Word #PUNCH
Type Table Lookup
Description Punch on/off code lookup.
Value -3 = Off, -2 = On, -1 = Inhibit, 0 = Off, 1 = On, 2 = Inhibit
Related SMF Questions 222, 223, 224, 225, 226, 227
Supported Applications Fabrication
Notes SmartCAM generally switches #PUNCH on for holes and nibbling moves and off for points, tool changes, and at the end of the program.
Q [To Top]
Word #QANG
Type Numeric
Description Wire inclination angle perpendicular to the move direction.
Value > 0 indicates inclination to the left; < 0 indicates inclination to the right.
FMT Class F_Angle
Related SMF Questions 24
Supported Applications Wire EDM
R [To Top]
Word #RANG
Type Numeric
Description Wire inclination angle parallel to the move direction.
Value > 0 indicates towards the endpoint; < 0 indicates away from the endpoint.
FMT Class F_Angle
Related SMF Questions 24
Supported Applications Wire EDM
Word #RCNT
Type Expression-Function, Data
Description Returns the current value of the repeat loop counter for use in a numeric expression.
Value Starts at 0 for the initial loop pass and increments through the loop extent minus 1. Returns 0 when not in a repeat loop.
See Also #REPEAT(), #STEP_LIST(), #RSIZ
// initialize all elements of intArr to 999
#REPEAT(intArr[])<#EVAL(#intArr[#RCNT] = 999)>
Word #REPEAT( count )< CGT operations >
Type Control
Description Repeat the CGT operations, count number of times.
Notes count is a numeric expression. CGT operations can be multiple CGT processing operations spanning multiple lines.
To nest #REPEAT loops place the nested #REPEAT in its own @Section and #CALL it from the parent #REPEAT loop.
See Also #EXITR, #RCNT, #RSIZ
// Call the @REPO section #sheetRegion times, but at least once.
#REPEAT(MAX(1, #sheetRegions))<#CALL(REPO)>

// Output #U2 number of lines containing 0
#REPEAT(#U2)< 0 >

// Initialize the tool used array to 0
// and the tool description array to the word unused
#REPEAT(#toolUsed[])
<
#EVAL(#toolUsed[#RCNT] = 0)
#EVAL(#toolDesc[#RCNT] =unused)
>
Word #REPO
Type Numeric
Description The clamp reposition distance specified in the @REPO command.
FMT Class F_Decimal
Supported Applications Fabrication
Notes Set by the REPO.MCL system macro file or user command.
Word #RESET( CGT Word List )
Type Control
Description Reset the conditional status of a list of CGT word's to force the words to be output the next time they are encountered.
Related SMF Questions 60
// reset #PUNCH
#RESET(#PUNCH)

// reset #XPOS and #YPOS
#RESET(#XPOS, #YPOS)
Word #RETNUM( numeric expression )
Type Function, Data
Description Return a numeric value from an @$Section to an expression or a #CALCDEC or #CALCINT #WORD.
See Also #CALCDEC, #CALCINT, #CALCFMT
// return the value contained in #calcOffset
#RETNUM( #calcOffset )

// return the calculated circumference
#RETNUM( 2 * #pi * #radius )

// return true
#RETNUM( #TRUE )
Word #RETNumTst( numeric comparison )
Type Function, Data
Description Return a 1 (true) or 0 (false) result of a numerical comparison from an @$Section to an expression or a matching #CALCINT #WORD.
See Also #CALCINT
Notes This is the same test that can be used in the #IF function and will give the same result.
// return 1 (true) if its a hole operation or 0 (false) if its not
@$isHoleOP
#RETNumTst( #OPTYPE > 200, #AND #OPTYPE < 300 )
@
Word #RETSTR( string expression )
Type Function, Data
Description Return a string value from an @$Section to a string expression or a #CALCSTR #WORD.
See Also #CALCSTR
// return a string from the #toolDesc[] array 
#RETSTR(#toolDesc[#toolIndex])

// return a white space trimmed version of #myToolNotes with Notes: appended to the front
#RETSTR(Notes:#MSE(TRIM(#myToolNotes)))
Word #RETStrTst( string comparison )
Type Function, Data
Description Return a 1 (true) or 0 (false) result of a string comparison from an @$Section to an expression or a matching #CALCINT #WORD.
See Also #CALCINT
Notes This is the same test that can be used in the #IFSTR function and will give the same result.
// return 1 (true) if there are step notes or 0 (false) if they are empty
@$gotStpNts
#RETStrTst(#STPNTS<>)
@
Word #RFEED
Type Table Lookup
Description Rapid feed code lookup.
Value 0,1
Related SMF Questions 81
Notes For machines that use a rapid feed code for rapid moves, instead of G00.
Ro [To Top]
Word #ROT1
Type Numeric
Description Angular orientation for a subcall.
FMT Class F_Angle
Word #ROT2
Type Numeric
Description Angular increment of a rotated repeated sub.
FMT Class F_Angle
Word #RSIZ
Type Numeric
Description The extent (number of repeats) of the repeat loop.
FMT Class F_Integer
Value >0 and <10000 Set to 0 when not in a repeat loop.
See Also #REPEAT(), #STEP_LIST(), #RCNT
Word #RTNLVL
Type Table Lookup
Description Return level code lookup for fixed cycles.
Value 0 = Z Check, 1 = Z Clear
Related SMF Questions 173, 174, 175
// return level code table
@RTNLVL
0,G98
1,G99
@
S [To Top]
Word #S0-#S19
Type String, Data
Type String
Description Pre-allocated user string variable set.
Word #S[ array index ]
Type String, Data
Description Array reference access for the #S variable set.
Notes: Brackets contain an array index which is a numeric expression with values from 0 to 19 which map to #S0 to #S19
// output the values for the entire #S variable set (#S0 through #S19)
#EVAL(#indx=0)
#REPEAT(20)<
#S[#indx]
#EVAL(#indx=#indx+1)>
Word #SAFBLK
Type Control, Block Numbers
Description Output safe start block number.
Related SMF Questions 12, 15
// set for next safe block number in the @STOP section
@STOP
#SAFBLK
Word #SBLK
Type Numeric
Description Sub program starting block number.
FMT Class F_BlockNumber
Related SMF Questions 337
Word #SBTYP
Type Numeric
Description System flag identifying sub program type.
Value 0 = None, 1 = Regular, 2 = Drill subs
FMT Class F_Integer
Se [To Top]
Word #SECNAME
Type String, Debugging
Description Name of upcoming @Section to be called.
See Also #SECNUM for a listing of applicable section names
Notes Available in the @CYCLCHG section. Section name includes the @ symbol.
Word #SECNUM
Type Numeric, Debugging
Description Value of upcoming @Section.
Value 1-65
FMT Class F_Integer
See Also #SECNAME
Notes Available for testing in the @CYCLCHG section.
Table of values: 
1 = @START			34 = @ENDDEF
2 = @TOOLCHG			35 = @WAIT
3 = @END			36 = @WKSYS
4 = @TORCH			37 = @FXDDEF
5 = @ATTCHMT			38 = @STPCHG
6 = @PNCHTL			39 = @CYCLCHG
7 = @STPROF			40 = @TRAVERSE
8 = @ENDPROF			41 = @OP_DRL
9 = @RAP			42 = @OP_SPDRL
10 = @LINE			43 = @OP_CDRL
11 = @SHPRF			44 = @OP_PDRL
12 = @ARC			45 = @OP_REAM
13 = @XZARC			46 = @OP_TAP
14 = @YZARC			47 = @OP_CBORE
15 = @ZCLRMV			48 = @OP_BORE
16 = @ZCHKMV			49 = @OP_SPFACE
17 = @ZDPTHMV			50 = @OP_CSINK
18 = @CORNER			51 = @OP_SPEC
19 = @FXDCAN			52 = @OP_THD
20 = @FXD1 **deprecated			53 = @OP_GRV
21 = @FXD2 **deprecated			54 = @OP_FGRV
22 = @FXD3 **deprecated			55 = @OP_FACE
23 = @FXD4 **deprecated			56 = @OP_TURN
24 = @FXD5 **deprecated			57 = @COOLNT
25 = @FXD6 **deprecated			58 = @CYCLE
26 = @FXD7 **deprecated			59 = @NURBS
27 = @SPEEDS			60 = @LINEAR_ROUGH
28 = @TPINDX			61 = @CONTOUR_ROUGH
29 = @HELIX			62 = @GROOVE_ROUGH
30 = @XZHELIX			63 = @CANNED_BEGIN
31 = @YZHELIX			64 = @CANNED_END
32 = @GOSUB			65 = @PROLOGUE
33 = @SUBDEF			66 = @OP_HOLEwMILLOP
Word #SETBLK()
Type Function, Block Numbers
Description Sets current block number in the @CANNED_BEGIN and @CANNED_END sections.
Supported Applications Turning
See Also #GETBLK(), @CANNED_BEGIN, @CANNED_END, @CONTOUR_ROUGH, @GROOVE_ROUGH, @LINEAR_ROUGH
// set block marker for start of canned cycle
@CANNED_BEGIN
#SETBLK(0)
@

// set marker for end of canned cycle
@CANNED_END
#SETBLK(1)
@
Word #SMFCHANGE(smf question, value)
Type Function
Description Enables changing of specific SMF answers on the fly in the @PROLOGUE section.
Related SMF Questions 30-33, 36, 37, 98, 299-302
See Also @PROLOGUE
Notes See the Machine Define application for question and answer descriptions and applicable values.
// reverse spindle direction for 2nd spindle
@PROLOGUE
#IF(#SPNDLNUM = 2)<#SMFCHANGE(299, -1)>
@
Word #SNAME
Type String
Description Sub name without the .sub file extension.
Sp [To Top]
Word #SPEED
Type Numeric
Description Spindle speed for the current step. Assigned on the Planner Step-Operation tab.
FMT Class F_SpindleSpeed
Related SMF Questions 52
Notes If smf52 is set to 1, the speed value is used to lookup a speed code in the @SPEEDS table.
Word #SPMODE
Type Table Lookup
Description RPM or CSS speed code lookup. Assigned on the Planner Step dialog.
Value 0 = RPM, 1 = CSS
Related SMF Questions 57, 58
Word #SPNDL
Type Table Lookup
Description Spindle direction code lookup. Assigned with check box on the Planner Step-Tool tab.
Value 0 = Off, 1 = On CW, 2 = On CCW
Related SMF Questions 54, 55, 56
Word #SPNDLNUM
Type Numeric
Description Flag indicating whether current move is on the main or subspinle.
Value 1 = Main spindle, 2 = Sub-spindle
FMT Class F_Integer
Supported Applications Advanced Turning
Notes Use to control conditional output when transitioning between main and subspindle. Such as spindle On/Off codes in @START, @TOOLCHG, and @END.
Word #SPOFF
Type Control
Description Command to output the spndle-off code from the @SPNDL table or smf.
Related SMF Questions 54
Word #SREPT
Type Numeric
Description Number of additional times to repeat a sub call.
FMT Class F_Integer
Related SMF Questions 330
Notes #SREPT will be 0 for the subprogram to be executed only one time.
St [To Top]
Word #STA, #STB, #STC
Type Numeric
Description Start angle for A, B, and C index axis moves.
FMT Class F_Angle
See Also MultiAxis
Word #STANG
Type Numeric
Description Starting angle for an arc, hole pattern (@BHC), or helix.
FMT Class F_Angle
Related SMF Questions 24
See Also Arcs
Word #STEP_LIST()<CGT Operations>
Type Control
Description A special form of the #REPEAT() loop execution that automatically loops through a list of steps from the planner to enable access to the step and tool data via the jos() and jos_str() functions.
See Also #STEP_LIST_SLCT, #STEP_LIST_SORT, #EXITR, #RCNT, #RSIZ
Notes CGT system step and tool words like #TOOL and #OPTYPE are NOT assigned when executing the #STEP_LIST()<> loop. All step and tool values must be extracted via the #EVAL() command using the jos() and jos_str() functions.
@DECLARE
#INT #tl_num
#STR #tl_desc
...
@


@START
#CALL(tlist)
...
@


@tlist
// 0=all steps, 1=process model steps, 2=active process model steps
#EVAL(#STEP_LIST_SLCT = 2)
// 0=step list order, 1=step number order, 2=process model order, 3=tool number order, 4=tool number order skipping repeated tools
#EVAL(#STEP_LIST_SORT = 2)
//
#STEP_LIST()
<
#EVAL(#tl_num=jos(tl_num))
#EVAL(#tl_desc=jos_str(tl_desc))
(Tool #tl_num: #tl_desc)
>
@
Word #STEP_LIST_SLCT
Type Numeric
Description Step selection type. Controls which steps from the job are selected for processing by #STEP_LIST().
Value 0=all steps, 1=process model steps, 2=active process model steps.
FMT Class F_Int
See Also #STEP_LIST(), #STEP_LIST_SORT
Word #STEP_LIST_SORT
Type Numeric
Description Step list sort order. Controls how the selected steps are ordered.
Value 0=step list order, 1=step number order, 2=process model order, 3=tool number order, 4=tool number order skipping repeated tools.
FMT Class F_Int
See Also #STEP_LIST(), #STEP_LIST_SLCT
Word #STPNTS
Type String
Description String from Planner Step notes field.
Word #STR
Type Data
Description Used in @DECLARE to declare a string variable or string array.
See Also CGT Variables
Word #STTIME
Type Numeric, Cycle Times
Description Cycle time for the previous step.
FMT Class F_Decimal
Related SMF Questions 138-140, 142, 144
Notes

Available in the @STEPCHG and @TOOLCHG and @END CGT sections.

Sy [To Top]
Word #SYNCH
Type Numeric
Description Merged block codes state flag.
FMT Class F_Integer
Word #SYSTIME
Type String
Description Current system time. Assigned from the system clock.
See Also #DATE
T [To Top]
Word #TABLE(table name, value)
Type Function, Data
Description Looks up and returns a string for the matching value in an @Table. String can be output directly or used in an expression.
See Also #TBL
Notes The table name parameter does not include the leading @ character.
// get range descriptor 
@TOOLCHG
...
#TABLE(rangeDesc, #rangeVal)
...
@

@rangeDesc
0,off
1,low
2,medium
3,high
@
Word #TANG
Type Numeric
Description Total angle for arc, hole pattern, or helix.
FMT Class F_Angle
Related SMF Questions 24
See Also Arcs
Word #TBL
Type Data
Description Used in @DECLARE to declare a user table variable.
See Also CGT Variables, #TABLE()
Word #TCODE
Type Timing Code
Description Outputs current timing or sync code values for 4 axis turning operations.
FMT Class F_TimingCode
Related SMF Questions 216-219
Supported Applications Advanced Turning
Word #TDESC
Type String
Description Tool description string. Assigned on Planner Step-Tool tab.
Th [To Top]
Word #THD_1stPassDpth
Type Numeric
FMT Class F_Decimal
Description Depth of the first thread passs.
Related SMF Questions 185-195
See Also Threading Category
Word #THD_AccPassDpth
Type Numeric
FMT Class F_Decimal
Description Accumulated pass depth including clearance. Updated with each pass for smf185<0> and smf185<1>> First pass only for smf185<2>.
Related SMF Questions 185-195
See Also Threading Category
Word #THD_Crest
Type Numeric
FMT Class F_Decimal
Description Value of thread crest.
Related SMF Questions 185-195
See Also Threading Category
Word #THD_CurrDpth
Type Numeric
FMT Class F_Decimal
Description Current depth of thread. Absolute value updated for each pass.
Related SMF Questions 185-195
See Also Threading Category
Word #THD_MinPasses
Type Numeric
FMT Class F_Decimal
Description The number of passes at the first pass depth that will fit.
Related SMF Questions 185-195
See Also Threading Category
Word #THD_PassDpth
Type Numeric
FMT Class F_Decimal
Description Incremental depth of each pass for smf185<0> and smf185<1>, and incremental depth of first pass for smf185<2>.
Related SMF Questions 185-195
See Also Threading Category
Word #THD_TotDpth
Type Numeric
FMT Class F_Decimal
Description Depth of last thread pass.
Related SMF Questions 185-195
See Also Threading Category
Word #THDPTCH
Type Numeric
FMT Class F_Decimal
Description Thread pitch for tapping operations. Assigned on the Planner Step-Tool tab.
Related SMF Questions 43
Notes For tapping only, does not apply to threading operations.
Word #TIME
Type Numeric, Cycle Times
Description Value in #TIME is automatically added to #CYTIME and #TIME is then zeroed.
Value Decimal minutes.
Notes This word is not intended as an output word; any value assigned to this word will be added to to the total cycle time (#CYTIME). It could be utilized to add a #DWELL time or to add time for miscellaneous functions, such as parts catcher, pallet loader, etc.

For example, to add current Dwell time to the cycle time, you can do:

#EVAL(#TIME=#DWELL)

The dwell time is added to the #TIME word; which is then added to #CYTIME and then zeroed out.

Word #TINDX
Type Numeric
Description Flag indicating type of tool plane transition.
Value <0> = No tool plane change.
<1> = Transition between parallel tool planes with the same origin.
<2> = Transition between parallel tool planes with different origins (3-D offset)
<3> = Transition between nonparallel planes with the same origin (index move).
<4> = Transition between nonparallel tool planes with different origins (index move and 3-D offset).
FMT Class F_Integer
See Also MultiAxis
Notes Test this flag to determine when it is appropriate to exit CGT sections early or to call another CGT section. For example, to call the @WKSYS section when a tool plane change took place without an indexing move.
// call @WKSYS and exit when no need for table index 
@TPINDX
...
#IF(#TINDX=2)<#CALL(WKSYS)>
#IF(#TINDX=2)<#EXIT>
...
@
Tl [To Top]
Word #TLCHG
Type Control
Description Signals when to update tool change related CGT words in the @TOOLCHG section.
Notes If #TLCHG is not present in @TOOLCHG, the assignements are made at the beginning of the @TOOLCHG section.
IF used, #TLCHG should be placed on a line by itself in the @TOOLCHG section.
CGT word assignments affected are:
#TOOL, #NTOOL, #SPEED, #SPMODE, #SCNTL, #FEED, #FDMODE, #FTHRD, #DOFF, #LOFF, #TOFF, #TLDIA, #TLEN, #TLWD, #TDESC, #TLUDSC, #TLUDSCN, #STPNTS, #OPTYPE, #COOLNT, #DWELL, #PECK, #IPECK, #PSETLEN, #THDPTCH, #TLGRAPHIC
As well as any CGT var assignments made in the step notes.
Word #TLCMT **deprecated See #STPNTS and #TLUDSC.
Word #TLDIA
Type Numeric
Description Tool diameter or kerf width. Assigned on Planner Step-Tool tab.
FMT Class F_Decimal
Related SMF Questions 126-128
Supported Applications All
Word #TLEN
Type Numeric
Description Nominal tool cut or flute length, or second dimension for punch tools. Assigned on Planner Step-Tool tab.
FMT Class F_Decimal
Word #TLGRAPHIC
Type String
Description Holds the custom tool graphic (.ctg) file name. Assigned on the Planner Step-Tool tab.
Word #TLID **deprecated See #TLGRAPHIC.
Word #TLOP **deprecated See #OPTYPE.
Word #TLTIME
Type Numeric, Cycle Times
Description Cycle time for the previous tool.
FMT Class F_Decimal
Related SMF Questions 138-142, 144
Notes

Available in the @TOOLCHG and @END CGT sections.

Word #TLTYPE **deprecated See #OPTYPE.
Word #TLUDSC
Type String
Description Holds the user tool description. Assigned on the Planner Step-Tool tab.
Word #TLUDSCN
Type String
Description Holds the user description for the next tool to be used. Assigned on the Planner Step-Tool tab.
Notes When the last tool in the program is reached, #TLUDSCN is set to the description of the first tool in the job.
Word #TLWD
Type Numeric
Description Holds tool width. Primarily used for punch tools. Assigned on Planner Step-Tool tab.
FMT Class F_Decimal
Related SMF Questions 126-128
Notes Usually used with non-round punch tools along with #TLEN.
To [To Top]
Word #TOFF
Type Numeric
Description Combined #TOOL and #LOFF.
FMT Class F_ToolNumber
Related SMF Questions 64
Supported Applications Turning
Notes Use for lathes that require the combination of the tool and offset numbers in one word.
Word #TOOL
Type Numeric
Description Holds the tool number. Assigned on the Planner Step dialog.
FMT Class F_ToolNumber
Related SMF Questions 64
Word -- PRELIMINARY -- #TPINDXCOND
Type Numeric
Description Five axis tilting head transition type.
Value 2 = Injected after head retract, before tool change, 1 = Injected after head retract, before plane change, 0 = Standard plane change, no head retract, -1 = Plane change, before head descent, -2 = Plane change, after tool change, before head descent
FMT Class F_Integer
Supported Applications Milling
Notes -- PRELIMINARY -- Note: Tilting Head Rotary axis functionality is incomplete. This word is provided for testing purposes only. Associated behaviors and output are subject to change.
Can be tested to provide contextual information about calls to @TPINDX. For tilting head machines, SmartCAM injects additional TPINDX calls when performing a tool change in order to reorient the tool parallel to the world Z prior to calling the @TOOLCHG section. Similarly, SmartCAM injects additional TPINDX calls when performing a plane change in order to reorient the tool parallel to the world Z prior to calling the TPINDX for the next plane change.
Word #TWOTUR
Type Numeric
Description Flag indicates whether job is single or dual turret. For use with dual turret lathe.
Value 0 = One turret used, 1 = Two turrets used
FMT Class F_Integer
Supported Applications Advanced Turning
U [To Top]
Word #U0-#U19
Type Numeric, Data
Description Pre-allocated user integer format variables.
FMT Class F_Integer
Word #U[array index]
Type Numeric, Data
Description Array reference access for the #U variable set.
FMT Class F_Integer
Notes: Brackets contain an array index which is a numeric expression with values from 0 to 19 which map to #U0 to #U19
// output the values for the entire #U variable set (#U0 through #U19)
#EVAL(#indx = 0)
#REPEAT(20)<
#U[#indx]
#EVAL(#indx = #indx + 1)>
Word #UOV, #VOV, #WOV
Type Numeric
Description X, Y, and Z axis displacement components.
FMT Class F_Decimal
Word #UPDATE(CGT Word List)
Type Control
Description Updates the conditional status of a word to match its current value. Causing it not to be output when in conditionals '<>'.
Related SMF Questions 5
Notes With position words, such as #XPOS, this updates the last position used to calculate incremental moves and arc centers.
// output x value as a diameter
#EVAL(#xdia=#XPOS * 2)
<MOV>< X#xdia>< Y#YPOS>
#UPDATE(#XPOS)
V [To Top]
Word #V0-#V19
Type Numeric, Data
Description Pre-allocated user decimal format variables.
FMT Class F_Decimal
Word #V[array index]
Type Numeric, Data
Description Array reference access for the #V variable set.
FMT Class F_Integer
Notes: Brackets contain an array index which is a numeric expression with values from 0 to 19 which map to #V0 to #V19
// output the values for the entire #V variable set (#V0 through #V19)
#EVAL(#indx = 0)
#REPEAT(20)<
#V[#indx]
#EVAL(#indx = #indx + 1)>
Word #VOV .... see #UOV
W [To Top]
Word #WINCL
Type Table Lookup
Description Wire inclination state code lookup.
Value 0 = Cancel, 1 = Incl left, 2 = Incl right
Related SMF Questions 262, 263, 264
Supported Applications Wire EDM
Word #WKPLN
Type String
Description Tool plane name of current process element.
See Also MultiAxis
Word #WKSCHG
Type Numeric
Description Flag indicating tool plane/tool change combination.
Value 0 = not plane/tool change combination, 1 = plane/tool change combination
FMT Class F_Integer
See Also MultiAxis
Notes Value is 1 when WKSYS combines with TOOLCHG or when the first position SmartCAM codes with @START is not assigned to the XY plane (ZX plane for Turning).
Use this word for testing when SmartCAM encounters a new workplane AND tool change. For example, if the workplane changes but the tool plane does not, and the commands of the @WKSYS section should be ignored.
// if not work plane change and tool plane change
@WKSYS
#IF(#WKSCHG = 0)<#EXIT>
Word #WOV .... see #UOV
Word #WRAD
Type Numeric
Description Holds radius value of wrapped elements. Can be used for feed rate calcs.
FMT Class F_Decimal
X [To Top]
Word #XCTR, #YCTR, #ZCTR
Type Numeric
Description XYZ arc center, helix center, sub handle pt, thread pass root start.
FMT Class F_Decimal
Related SMF Questions 96, 97; Lathe: 98
See Also Arcs, Threading Category
Word #XFO, #YFO, #ZFO
Type Numeric
Description Distance from world origin to current work plane origin.
FMT Class F_Decimal
Word #XHOME, #YHOME, #ZHOME
Type Numeric
Description Coordinate of first point in a job.

Outputting from any of the three [XYZ]HOME variables updates the corresponding [XYZ]POS variable, just as if it were output.

FMT Class F_Decimal
Related SMF Questions 69
Notes Used when identifying home position with first point for use with operational retracts such as tool change, index, pallet change, etc.
@TOOLCHG
...
G00 X#XHOME Y#YHOME
...
@
Word #XNODE, #YNODE, #ZNODE
Type Numeric
Description Current NURBS interpolation point.
FMT Class F_Decimal
Related SMF Questions 86, 87, 88, 89, 107
Word #XOV, #YOV, #ZOV
Type Numeric
Description XYZ offset vector components for current profiling move. Also other special cases.
FMT Class F_Decimal
Related SMF Questions 130
See Also Lines, Arcs, Threading Category
Notes smf130 controls whether the vector is normal or tangent to the profiling move.
  • Lathe Thread: #ZOV: Delta Z for final (root) pass of lathe thread. #XOV: Delta X for final (root) pass of lathe thread.
  • Lathe Groove: #ZOV: Width (depth for face groove). #XOV: Depth (width for face groove).
  • Wire EDM: #XOV: U axis incremental distance from primary X end point to secondary X endpoint. #YOV: V axis incremental distance from primary to secondary Y.
Xp [To Top]
Word #XPASS, #ZPASS
Type Numeric
Description XZ Values for various turning operations.
Values
  • Lathe thread (@OP_THD cycle)

    Machine file question 185 affects this word.
    #XPASS: ending X value for root pass.
    #ZPASS: ending Z value for root pass.

  • Lathe groove (@OP_GRV or 7 cycle)

    #XPASS: bottom (or X side for face groove).
    #ZPASS: side (or Z bottom for face groove).

  • Lathe peck drill (@OP_PECK cycle)

    #ZPASS: bottom or end of tapping move to depth.

  • Lathe tap (@OP_TAP cycle)

    #ZPASS: bottom or end of tapping move to depth.

  • Lathe turn or facing (@OP_TURN or OP_FACE cycles)

    #X/ZPASS: end X/Z value of pass.

  • For subcall, XYZ axis scale factor.
FMT Class F_Decimal
Related SMF Questions 185
Supported Applications Turning
See Also Threading Category
Word #XPOFF, #YPOFF, #ZPOFF
Type Numeric
Description User XYZ position offset values that will be added to all moves.
FMT Class F_Decimal
Related SMF Questions 34; Lathe: 66 <4>
Word #XPOS, #YPOS, #ZPOS
Type Numeric
Description XYZ end position values for current move.

If value from these three Var sets ([XYZ]HOME, [XYZ]PSET, or [XYZ]ST) is output, it updates the corresponding [XYZ]POS variable, just as it it were output.

FMT Class F_Decimal
Related SMF Questions Mill: 35; Lathe: 37, 38
See Also Arcs, Lines
Word #XPSET, #YPSET, #ZPSET
Type Numeric
Description Values for the preset in absolute for a tool in a new plane after rotary index.

Outputting from any of the three [XYZ]PSET variables updates the corresponding [XYZ]POS variable, just as if it were output.

FMT Class F_Decimal
Related SMF Questions 303
See Also MultiAxis
Word #XRFO, #YRFO, #ZRFO
Type Numeric
Description Distance from the world origin point to a new workplane's origin point in rotated position.
FMT Class F_Decimal
Related SMF Questions 305
Supported Applications Milling
See Also MultiAxis
Xs [To Top]
Word #XSET, #ZSET
Type Numeric
Description Turning tool XZ offsets. Assigned on Planner Step-Tool tab.
FMT Class F_Decimal
Related SMF Questions 66, 67
Supported Applications Turning
Word #XST, #YST, #ZST
Type Numeric
Description Starting coordinate for current move.

Outputting from any of the three [XYZ]ST variables updates the corresponding [XYZ]POS variable, just as if it were output.

FMT Class F_Decimal
Related SMF Questions 238
See Also Arcs, Lines, Threading Category, MultiAxis
Y [To Top]
Word #YCTR .... see #XCTR
#YFO ...... see #XFO
#YHOME .. see #XHOME
#YNODE .. see #XNODE
#YOV ....... see #XOV
#YPASS ... see #XPASS
#YPOFF ... see #XPOFF
#YPOS ..... see #XPOS
#YPSET ... see #XPSET
#YRFO ..... see #XRFO
#YSET ..... see #XSET
#YST ....... see #XST
Z [To Top]
Word #ZCHK
Type Numeric
Description Z check position for current canned hole cycle.
FMT Class F_Decimal
Related SMF Questions 83, 170, 171
Word #ZCTR .... see #XCTR
Word #ZDPTH
Type Numeric
Description Z depth position for current canned hole cycle.
FMT Class F_Decimal
Related SMF Questions 172
Word #ZFO ....... see #XFO
#ZHOME .. see #XHOME
#ZNODE ... see #XNODE
#ZOV ....... see #XOV
#ZPASS ... see #XPASS
#ZPOFF ... see #XPOFF
#ZPOS ..... see #XPOS
#ZPSET ... see #XPSET
#ZRFO ..... see #XRFO
#ZSET ..... see #XSET
#ZST ....... see #XST