1.4 Program jumps

NC programs process their blocks in the sequence in which they were arranged when they were written. The processing sequence can be changed by introducing program jumps. The jump destination can be a block with a label or with a block number. This block must be located within the program.

Labels can be freely selected, but must follow some orders. Labels that are in the block that serves as the jump destination are ended by a colon. They must locate at the start of a block. If a block number is also present, the label is located after the block number.

Example:

Label1: G01 X20                                          ;Label1 is the label, jump destination

N100 GOTOB Label1    ;Jump to Label1 block

1.4.1 Unconditional program jumps

The unconditional jump instruction requires a separate block.

Example:

GOTOF Label     ; Jump forward (towards the last block of the program)

GOTOB Label     ; Jump backward (towards the first block of the program)

1.4.2 Conditional program jumps

Jump conditions are formulated after the IF instruction. If the jump condition (value not zero) is satisfied, the jump takes place. The jump destination can be a block with a label or with a block number. This block must be located within the program. Conditional jump instructions require a separate block.

Example:

IF condition GOTOF Label                           ; Jump forward

IF condition GOTOB Label                          ; Jump backward

Comparative operations:

= = Equal to

! = Not equal to

>  Greater than

<  Less than

> = Greater than or equal to

< = Less than or equal to

Example:

N10 IF R1>1 GOTOF Label      ; If R1 is greater than 1, go to the block with Label

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
5.3.1 Groove CYCLE93
Viewed 4247 times since Fri, Aug 26, 2016
5.2.5 Reaming1 (boring 1) CYCLE85
Viewed 10652 times since Fri, Aug 26, 2016
2.2 Dimensions in metric units and inches: G70/G71
Viewed 2276 times since Thu, Aug 25, 2016
2.6 Work plane G17/G18/G19
Viewed 6819 times since Thu, Aug 25, 2016
1.6 Program structure
Viewed 2527 times since Thu, Aug 25, 2016
3.4 Tool group TGROUP
Viewed 1948 times since Fri, Aug 26, 2016
2.8 Feedrate: G94,G95,G96,G97
Viewed 33890 times since Thu, Aug 25, 2016
3.1 Tool T
Viewed 1979 times since Fri, Aug 26, 2016
3.3 Tool offset table
Viewed 4188 times since Fri, Aug 26, 2016
Preface
Viewed 1946 times since Thu, Aug 25, 2016