The functions for program flow control are:
b The jump functions to continue program execution in the desired network b The jump list to select a jump destination depending on a numerical value b The jump distributor for selecting a jump destination depending on number
ranges
b The block end function to end program execution in the block b The block call functions for calling functions and function blocks
Fig. 7.39 shows an overview of these functions. A detailed description of these func- tions is provided in Chapter 12 “Program flow control” on page 406.
Fig. 7.38 Example of functions for strings in the ladder logic
7.6.1 Jump functions in the ladder logic
A JMP or JMPN jump function is used to exit the linear processing in a block and – depending on the result of the preceding logic operation– continue this processing in another network in the block. If JMP is connected with the left power rail, the jump is always performed. To program a jump function, drag the JMP or JMPN func- tion from the program elements catalog under Basic instructions > Program control operations to the working area.
The jump label above the jump function defines the jump destination, which must be at the beginning of a network. To program the jump destination, drag the Label function from the program elements catalog under Basic instructions > Program control operations to the working area.
Fig. 7.40 shows a jump function using a program loop as an example. In a #Current data field with 16 components from #Current[0] to #Current[15], the maximum value is searched for. The tags #Index and #MaxValue are initialized with the value 0. A comparison function in the program loop compares the value of #MaxValue with the value of #Current[#Index]. If #MaxValue is less than #Current[#Index], it is Fig. 7.39 Overview of functions for program flow control in the ladder logic
Jump functions Jump list
Jump distributor
Block calls
Function call (FC)
Function block call (FB) Block end function
Functions for program flow control
FC name
JMP_LIST
SWITCH Data type
EN
EN
EN
name1
K
K
==
==
...
name2 ...
name3
DEST1
DEST1 ELSE
...
ENO
DEST0
DEST0
Instance name FB name
EN name1 ...
name2 ...
name3 ...
ENO RET
Binary tag Jump if “1”
Jump if “0”
Jump label (jump destination) JMP
JMPN Destination
Destination
Destination
*
*
overwritten with the larger value of #Current[#Index]. #Index is then increased by +1. As long as #Index is less than or equal to 15, it jumps to the beginning of the pro- gram loop (to the jump destination MaxSearch) and the program part runs again.
7.6.2 Jump list in the ladder logic
The jump list is represented as a box. It is only processed if the EN input signal state is “1”. The value of parameter K (0 to 99) determines the box output whose jump destination is jumped to. To program the jump list, drag the JMP_LIST function from the program elements catalog under Basic instructions > Program control operations to the working area.
If in Fig. 7.41 the #JumpSelection tag has the value 0, it jumps to the jump label Adder; if the value is 1, to jump label FC_call; and if the value is 3, to jump label FB_call.
Fig. 7.40 Example of a conditional jump
Fig. 7.41 Example of a jump list
7.6.3 Jump distributor in the ladder logic
The jump distributor is represented as a box. The box is only processed if the EN input signal state is “1”. The value of parameter K is compared with a value of one of the other input parameters. If the two match, program processing continues at the assigned jump destination. The comparison operations can be selected from a drop-down list. To program a jump distributor, drag the SWITCH function from the program elements catalog under Basic instructions > Program control operations to the working area.
If in Fig. 7.42 the #JumpSelection tag has a value less than 10, it jumps to jump label FC_call; for a value greater than 120 to jump label FB_call; otherwise to jump label Adder.
7.6.4 Block end function in the ladder logic
The processing in a block is terminated by the RET coil. The block end function may not be present in a network together with a jump function.
To program a block end function, drag the RET function from the program elements catalog under Basic instructions > Program control operations to the working area.
In Fig. 7.43, the block is exited if an error occurs when processing the ADD box. The ENO output then has the signal state “0” which is negated, thus triggering the RET coil. The RET coil receives the result of the logic operation “0” (which is output by the terminated block at the ENO output) by means of the FALSE constant. The result can be scanned in the calling block.
Fig. 7.42 Example of a jump distributor
Fig. 7.43 Example of block end function
7.6.5 Block call functions in the ladder logic
Calling of blocks is represented by EN/ENO boxes. With functions (FC), the block name is present quasi as a function name in the box; with function blocks, the instance name (the name of the instance data block or of the local instance) is addi- tionally present above the box.
A block call is programmed by opening the Program blocks folder in the project tree and dragging the desired block to the working area.
In the example in Fig. 7.44, if the signal state is “1” on the “Input 2” tag, the function
“Adder_2” is called. In the event of an error in the function “Adder_2” (the ENO out- put then has signal state “0”), the tag #AddError is also set to signal state “0”. The program processing is then ended in the block and #AddError is specified as return tag. This means that if the processing in the block “Adder_2” is faulty, the ENO out- put of the ended block is set to signal state “0”.
In the example in Fig. 7.45 , the “Totalizer” function block is called. Its instance data is present in the data block “Totalizer_DB”.
Fig. 7.44 Example of calling a function (FC)
Fig. 7.45 Example of calling a function block
8 Function block diagram FBD