de:s7:scl_reference_bit_logic

Simatic S7 SCL reference: Bit logic operations

Back to reference overview: Simatic S7 SCL reference with examples

Of course, there is an R_TRIG / F_TRIG function for edge monitoring, but do you really have to call an FB and an IDB for such a simple function?

Both negative and positive edge monitoring require an extra BOOL type static, db, or mark variable (temp is not good!) in addition to the signal variable. In this variable, the signal state one cycle earlier is stored and the current state of the signal is compared. If the old state is FALSE and the current state is TRUE, then a positive edge is received; if the reverse is true, the old state is TRUE and the new state is FALSE.

The example below illustrates the two options, the variables in this case being FB local static variables, but they can also be DB variables or markers. The signal can also be an input:

// signal, old_signal is type BOOL
 
IF #signal AND NOT (#old_signal) THEN
    // positive flash block program
    // 
    ;
END_IF;
 
IF NOT(#signal) AND #old_signal THEN
    // negative flash block program
    // 
    ;
END_IF;
 
// update the storage BOOL
#old_signal := #signal;

Detect positive signal edge, if the state change from FALSE to TRUE at CLK. I have described above a similar but much simpler procedure for edge monitoring: positive / negative edge monitoring.

See: Bit logic operations

_FB_ R_TRIG (CLK := signal monitoring (BOOL), Q ⇒ result (BOOL);

parameter nameparameter typefunction
CLK inputIncoming signal
Q outputResult of edge evaluation

Detect negative signal edge, if the state change from TRUE to FALSE at CLK. I have described above a similar but much simpler procedure for edge monitoring: positive / negative edge monitoring.

See: Bit logic operations

_FB_ F_TRIG (CLK := signal monitoring (BOOL), Q ⇒ result (BOOL);

parameter nameparameter typefunction
CLK inputIncoming signal
Q outputResult of edge evaluation

Post views: 456

Donate

2022/04/21 15:01

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /home/www/ob121.com/lib/plugins/authplain/auth.php on line 436