PLC BLOG | B&R Automation | C Programming | B&R automation studio Counter Function Blocks Programming In ANSI C | CTU | CTD | CTUD
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

B&R automation studio Counter Function Blocks Programming In ANSI C | CTU | CTD | CTUD

Up counter increments counter value by 1. Downward counter decrement counter value by 1. in ANSI C programming you can use Counter as function statement. so first declare Counters function in a programming than you can use their parameter in programming for example if we want to use UP Counter(CTU), first declare counter name instance type in variable table. than call counter in a program . for example CTD(&CTD_0); CTD() is function of UP Counter in c programming and CTD_0 is a instance name.

How To Add Counter in B&R Automation Studio

Counters Are Function Block, To Insert Counters Function Block In Your Project Select Function Block From Instructions Menu then Select External Library, and select any counter from menu and add to your project.

How To Add Counter in B&R Automation Studio

How to Declare Counter Parameter in B&R Automation Studio

All Counters Functions Block Have Instance type, and have some parameter which define on variable table. below is a variable table for Upward counter (CTU).Instance type is important for function block. Declaration Of Instance Name May Be Local Or Global, open any variable table where you want to declare counter, then right click and select add variable then first enter name of counter then in a type click to browse button and then select function block from category and select counter, or you can directly enter Instance type. Upward counter Instance type is CTU, for Downward counter Instance type is CTD and for Upward/Downward counter Instance type is CTUD. in a below image all three counter define with instance name.

How to Declare Counter Instance type B&R Automation Studio

B&R Automation Studio Downward counter CTD Counter Instruction In ANSI C

Downward counter decrements counter value by 1 every time its input goes from false to true (positive edge). initially counter value is zero if the load is set than preset value transfer into counter value. counter output is set to true when counter value is equal to zero. if counter value is zero in a downward counter and counter down(CD) is change from false to true than no decrement in counter value. following is the parameter for downward counter

B&R Automation Studio Downward counter CTD Counter Instruction In ANSI C

in this example CTD_in is counter input if tha CTD_in. rising edge of CTD_in decrement counter value by 1. CTD_load is bool data type if CTD_load is set to true than CTD_PV value move to counter value. CTD_pv is counter preset value.


B&R Automation Studio Upward counter (CTU) Instruction In ANSI C

Upward counter or up counter(CTU) is increments counter value by 1 every time it's input changes from false to true. if the counter value(CV) reaches to preset value(PV) and if counter up bit changes from false to true counter value continue increments upto 32766 and counter output is true. If the reset bit set to true than counter value initialized to zero and counter output is false.

B&R Automation Studio Upward counter (CTU) Instruction In ANSI C

B&R Automation Studio Upward or Downward counter (CTUD) Instruction In ANSI C

Upward or Downward counter (CTUD) Instruction work either as upward counter or downward counter, selection of counter operation is depend on counter selection input bit. if the counter down(CD) bit set to true then CTUD work as downward counter if the counter UP bit set to true (CU) then counter work as upward counter. Following is parameter of Upward or Downward counter (CTUD)

B&R Automation Studio Upward or Downward counter (CTUD) Instruction In ANSI C