Flow totalizer

todell

Member
Join Date
Feb 2009
Location
CA
Posts
18
Hello All,

I need to display total gallons pumped on a remote display. i am using a flow meter with 4-20 output scaled in GPM. The analog value is stored in D0760 of my Idec Pentra PLC.

I divided D0760 by 60 to get the gallons per second and stored the value to D0000. A one second timer updates D0000 every second.

How do I add up the updated D0000 values to get the total gallons?
 
todell, I am not familiar with your PLC, but the way I've done something similiar is to use a rung just before you read the new value to move the "old" value into a "buffer" register, such as D0765, and then add the "buffer" register, D0765, to a "totaalizing" register, say D0770. In this way, D0770 would update each time you get a new value and give you the total just before the read. The register numbers, of course, are arbritaary and up to you.
 
Can someone provide actual ladder logic of this. Every way I have tried this it does not totalize. It only provides a value which does not update.
 
Can someone provide actual ladder logic of this. Every way I have tried this it does not totalize. It only provides a value which does not update.

Which exact PLC are you using. Make and full model number please.

Stu....
 
Can someone provide actual ladder logic of this. Every way I have tried this it does not totalize. It only provides a value which does not update.

Maybe something in this style.
1 second pulse moves analog value to D1000, which added to the total value. D1000 is then reset and ready for the next pulse / analog value.
So one time per second the total value is updated by adding the new analog value to the total register.

Hope this will give you an idea for solve this.

UPS: The move for reset the total value, have also to be a (D) type.

Total flow.JPG
 

Similar Topics

Hi; We installed an orifice plate type steam flow transmitter which configured to give 4-20mA signal correspond to 0-9ton. I given that signal...
Replies
24
Views
5,605
Hello. I wanted to write the logic of the flow totalizer and the flow itself for self-education in RSLogix5000 V20.01 software. After reading the...
Replies
13
Views
7,532
Hello I was needing some guidance on communicating and setting up a totalizer from a flow meter in the PLC. The PLC is a AB 1769 Compact Logic...
Replies
1
Views
1,781
Hi all, I am kind of new to PLC programming and I am currently trying to learn all this fun stuff by myself. I got myself a productivity 2000...
Replies
24
Views
4,723
hi, so i m very new to plc programming.Below is my requirement I have to create a program folder for totalizer with individual FBD routine for...
Replies
17
Views
4,246
Back
Top Bottom