VFD controlling a pump by GPM instead of RPM

Just a lookup table... X RPM = X GPM. It does require swallowing a lot of "IF" though. But yea, maybe that's OK here.
Such a table could be printed an just posted near the device.

If we can find a reliable relationship between RPM and GPM, why not just put this lookup table in the PLC, and allow operators to just enter GPM as they requested?

There should be alarms in the system to take care of failure modes to prevent deviation from the lookup table though.
 
If we can find a reliable relationship between RPM and GPM, why not just put this lookup table in the PLC, and allow operators to just enter GPM as they requested?
If you have 9 [X=GPM,Y=RPM] pairs of points, about five rungs are all that is needed to find, and interpolate between, the two bounding pairs.


There may even be a single instruction that can do it all, and if not it would not be difficult to put into a UDFB.
 
Last edited:
If we can find a reliable relationship between RPM and GPM, why not just put this lookup table in the PLC, and allow operators to just enter GPM as they requested?

There should be alarms in the system to take care of failure modes to prevent deviation from the lookup table though.

It's water, so I imagine that it's a linear relationship.
 
A lot will depend on the type of pump and the media you are pumping? Is the pump positive displacement or a centrifugal pump or something else?

Is the media stable in its temperature and viscosity?
Does the pressure remain constant or fluctuate?

How accurate does the actual flow have to match the entered number?

It's a centrifugal pump, moving a mix of bunker c and creosote, at anywhere from 160F to 210F.

The viscosity changes with temperature, but not hugely. The pressure remains pretty constant, and the flow accuracy is not as important as the presence of flow, by which I mean if the actual flow was half of the commanded it's not a big deal so long as there is actual flow.

We're trying to prevent cavitation primarily. Adding to the fun is that the medium is pumped in a vacuum at both inlet and outlet.
 
by which I mean if the actual flow was half of the commanded it's not a big deal so long as there is actual flow.


Then all that is needed is a simple linear model of GPM vs. RPM.

The operator enters GPM, the PLC converts to RPM = GPM * m + b, and sends that RPM value to the VFD.
 
It's a centrifugal pump, moving a mix of bunker c and creosote, at anywhere from 160F to 210F.

The viscosity changes with temperature, but not hugely. The pressure remains pretty constant, and the flow accuracy is not as important as the presence of flow, by which I mean if the actual flow was half of the commanded it's not a big deal so long as there is actual flow.

We're trying to prevent cavitation primarily. Adding to the fun is that the medium is pumped in a vacuum at both inlet and outlet.

In that case, you can probably get by measuring the motor power and use the following equation:

gpm = (hp x 3960) / (feet head x specific gravity)

Or, you could create a table of rpm vs. gpm by running the pump at a few speeds and measuring the wet well level change over time.
 
What is the pipe size? Flow meters are relatively inexpensive for smaller diameter pipes. ifm has inline meters up to 2" for about $1000. Keyence has clamp on for about the same price.

The pump inlet is 8" and the outlet is 3", the whole system is under vacuum during operation.
 
Last edited:

Similar Topics

Hi there, We have a system at a water treatment plant where large raw water tanks feed into the plant that's all on the same level. At high tank...
Replies
18
Views
3,768
I want to control a Lenze VFD https://www.clrwtr.com/Products/ESV752N02TXB with Opto Snap Pac. Currently I use a pot connected to the VFD to...
Replies
1
Views
1,407
I am programming an AB Compact Logix PLC (1769-L33ER) to control a PowerFlex 525-EENET VFD. I have the following questions: 1. I read on another...
Replies
9
Views
13,979
So, here's my hardware: Micrologix 1400 controller Mitsubishi E740 Drive I'm communicating via the 1763-NC01 out of Channel 0 on the Micrologix...
Replies
10
Views
4,925
Hi I'd to control hydraulic holding pressure (almost no flow) with rpm via ABB VFD and fixed pump. This drive has no PID inputs I can "almost" do...
Replies
37
Views
9,390
Back
Top Bottom