Multi-Tank leveling(flow control) with PLC5

One thing to keep in mind is that flow through a ball valve is not linear with % open. This will affect your tuning, and you may have to live with slow response to avoid hunting.
 
Here’s something you might consider.

Say you’ve tank A and tank B with respective levels and valves.
Make a split-range PID with output as follows:
0% (A 100% open, B 0% Open), 25% (A 100% open, B 50% Open), 50% (A 100% open, B 100% Open),
75% (A 50% open, B 100% Open), 100% (A 0% open, B 100% Open)
The input to the PID is (level B – level A) with a range of -100 to 100, action is direct acting. Tune this with mostly proportional action and a very small reset value.
Nominally, you’ll want a setpoint of 0.
Let us know what happens

This sounds good to me, however I am not sure of how to go about making a "split-range PID". I understand conceptually what your saying, and it actually is straightforward. But how to get one PID (PD) to output control to 2 different valves...I have an analog 4-20 output to control each valve. SO it is a matter of getting,...what...say 0 to -100 to equal the 4-20ma of one of the valves...hmmm
 
B%Open = Min(2*PID_output, 100)
A%Open = Min(2*(100 - PID_output), 100)
...and you'll have a little more manipulation for fail-open...

Heed Mr Jenkins' warning... maybe can read up on what action positioner is used... characterizers are an option but a bother...

I do like the mechanical solution posted by others.

Goof luck and let us know what happens
 

Similar Topics

Hello, I had a question about benchmarking the Rockwell FactoryTalk View SE software. I've installed in the neighborhood of 30 different...
Replies
2
Views
282
Hello, I'm trying to test Acopos multi using Automation Studio. Ready LED is green blinking, how can i know what error of Acopos on Automation...
Replies
1
Views
134
Good Afternoon , I'm sure there are many Ishida Muti-Head Weigh Systems . We have a Ishida CCW-M-214W Multi-Head system . We are...
Replies
1
Views
543
Hi Guys, I'm trying to integrate Pilz Ethernet IP Module to ControlLogix. I added Pilz module as a Generic Ethernet module and I'm able to...
Replies
2
Views
513
Good Morning , We have a Ishida Multi-Head Scale . I had experiece with them for chips , crackers , etc. , but now we are using them for...
Replies
7
Views
468
Back
Top Bottom