PLC BLOG | Counter in panasonic plc
Share on Facebook Share On Twitter Share on LinkedIn Share on Whatsapp


lg-12 col-12 fb-share-button">

Share on Facebook

Share on twitter

Share on Whats-App

Counter instructions in panasonic plc

counter , used for counting bit. counter count if input is set to 1 or only true logic. counters are used where somthing counts, in this article you will learn about counter up, counter down, counter up/down, counter block.


counter down CTD

counter down count bits by the value 1 is subtracted from the current value CV for each rising edge detected at CD, except when LOAD is set or CV has reached the value zero. when current value CV (CV=0) reach to zero output set to 1. counter down have three input CD, LD and PV and two output Q and CV

at first time CV=0, and PV = value set by user or progrmmer, in this example PV = 3, "if you set Start_counter to 1 and without loading Preset value to current value, CV = 0 by default and at each rising edge subtracted by 1 and output always set to 1."


Up counter CTU

The function block CTU (count up) allows you to program counting procedures. If a rising edge is detected at Input CU, the value 1 will be added to Current value except when RESET is set. this procedure will be repeated until current value CV is greater than/equal to Preset Value PV, Then, signal_output will be set.

if rising edge at the Start_counter(CU) detected, value 1 will be added to Current Value.for every rising edge detected at Start_counter, this procedure will be repeated until Output_ctu(CV) is greater than/equal to PV value. Then, out_ctu (Q) will be set. If reset is set (status = TRUE), current_value (CV) will be reset.


CTUD, Up/down counter

The function block CTUD (count up/down) allows you to program up and down counter in single blocks. working is same as above for both up and down counting. at same time only one operation possible either up count or down count. in CTUD, Up/down counter block have 5 input and 3 output.

Count down:
If reset is set, the counter_current_value (CV) will be reset. If count_up is set, the value 1 is added to the counter_current_value(CV). This procedure is repeated for each rising edge detected at Count_up until the counter_current_value (CV) is greater than/equal to the Preset value PV. Then out_counter_up is set. The procedure is not conducted, if reset and/or set is/are set.
Count down:
If load_counter is set (status = TRUE), the PV, preset value will be loaded in the counter_current_value (CV). If count_down is set, the value 1 is subtracted at each clock. This procedure is repeated at each clock until the counter_current_value (CV) is smaller than/equal to zero. Then, Out_counter_down is set. The procedure will not be conducted, if reset and/or set is/are set or if CU and CV are set at the same time. In the latter case, counting will be downwards.


CT_FB, Down counter

Counters realized with the CT_FB function block are down counters. Each rising edge detected at Count the value 1 is subtracted from the elapsed value EV. Signal_output is set to TRUE if the elapsed value EV becomes zero. The count area SV (set value) is 1 to 32767.In order to work correctly, the CT_FB function block needs to be reset each time before it is used. The basic CT function (down counter) uses the same NUM* address area (Num* input). In order to avoid errors (address conflicts), the CT function and the CT_FB function block should not be used together in a project.

Each rising edge detected at Start_counter(count) the value 1 is subtracted from the elapsed value EV. Signal_output is set to TRUE if the elapsed value EV becomes zero. when EV =0 then reset for next counting procedure.


some example of counter

in this example you manually set value for up counter and automatic reset if CV > PV, IN Move block, enter_counter_value and counter_value is int type.