Function Blocks

The Function block is a program component reflecting multiple input variable values for multiple output variable values. All its variables are saved since previous execution till the next one. Thus function block that is called with the same parameters can produce various output values. All variables including input and output are saved. If we call function block instance not defining some input parameter values, it will use existing values. The possibility of defining input value variable number exists by default. Only function block outputs and inputs are available from the outside. There is no access to inner block variables.

From object-oriented programming (OOP) perspective, function blocks are objects that implement encapsulation (i.e. hiding implementation details) perfectly. Program code and data integration make function blocks similar to OOP classes. Unfortunately, inheritance and polymorphism are not available yet.

It's necessary to create instance of function block to use it. This operation is similar to variable declaration. Having described the block, we have actually created a new data type. Every function block can have any instance number. So, diverse "timer" block instances are absolutely independent of each other. Every one of them has its own settings and "live its life". Every function block instance has its identifier and space in static data storage. One more block instance declaration leads to assigning more space in data storage. Program code remains common, as for the function. Function block instance is created in function variable, function block, and program declaration sections. It should get an unique identifier as well.

Timers

Function block

Description

TP(BOOL IN, TIME PT, BOOL Q, TIME ET)

Pulse timer. Starting a timer takes place in impulse edge at IN. Input РТ sets generated impulse duration. After the start, the timer does not respond to the input IN value change. Output ЕТ measures elapsed time. Having attained the value ЕТ, РТ counter stops, and output Q is reset to FALSE.

TOF(BOOL IN, TIME PT, BOOL Q, TIME ET)

Off-delay timer. When a rising edge is detected at IN, output Q is set as TRUE. ЕТ counter resets and time keeping takes place in every falling edge at In. Output Q is reset in preset time after falling edge at IN. If input In is set as TRUE during time keeping, the time keeping is stopped. Thus, output Q is switched on in edge and switched out by logic zero with the duration not less than РТ.

TON(BOOL IN, TIME PT, BOOL Q, TIME ET)

On-delay timer. When a rising edge is detected at IN, count reset is performed and new time keeping begins. Output Q is set as TRUE in preset time РТ if IN remains TRUE. Falling edge at IN stops time keeping and resets output Q to FALSE. Thus, output Q is switched on by logic one with the duration not less than РТ and switched out at falling edge at IN.

Triggers

Function block

Description

SR(BOOL SET1, BOOL RESET, BOOL Q1)

Switch with set dominant.

RS(BOOL SET, BOOL RESET1, BOOL Q1)

Switch with reset dominant.

Impulse Detectors

Function block

Description

R_TRIG(BOOL CLK, BOOL Q)

Generates one-shot signal in rising edge at IN.

F_TRIG(BOOL CLK, BOOL Q)

Generates one-shot signal in falling edge at IN.

Counters

Function block

Description

CTU(BOOL CU, BOOL RESET, LINT PV, BOOL Q, LINT CV, BOOL M)

In every edge at input CU, the count value (output CV) increases by 1. Output Q is TRUE if the counter equals or exceeds preset threshold PV. Logic one at reset input (RESET = TRUE) stops time keeping and resets counter (CV := 0).

CTD(BOOL CD, BOOL LOAD, LINT PV, BOOL Q, LINT CV, BOOL M)

In every edge at input CD count value (output CV) decreases by 1. Output Q is TRUE if the counter equals zero. Counter CV is loaded with the initial value equaling PV at input LOAD = TRUE.

CTUD(BOOL CU,BOOL CD, BOOL RESET,BOOL LOAD, LINT PV, BOOL QU, BOOL QD, LINT CV, BOOL M, BOOL M2)

At input RESET = TRUE value, counter CV is reset to 0. At input LOAD = TRUE value, counter CV is loaded by value equaling PV. In edge at input CU, counter value increases by 1. In edge at input CD, the counter value decreases by 1 (till 0). Output QU is TRUE if CV >= PV, otherwise FALSE. Output QD is TRUE if CV = 0, otherwise FALSE.

Was this page helpful?