Hi, I have a cascade loop for dump control on a vessel. Level is the master and flow control for the dump valve is the slave.
The problem I have is the liquids meter does not read very good from 0-100 m3/hr or 0-5% open on the valve. I want to know if there is a way I can setup the controllers so that if the level controller is calling for 0-100 m3/hr flow the flow controller keeps the valve closed, and anything over 100m3/hr the valve will initially open to 5% and then apply P&ID control from there.
Thanks
Hi Ditner, By not a good reading I assume you are getting too much noise between 0-100 m3/hr. James Beall brings up some great points. Instead of going after the output have you considered dealing with the flow measurement noise? You could add this expression in a CALC block of the slave control module: IF '^/PID1/OUT.CV' < 5 THEN '^/PID1/PV_FTIME.CV' := 10 ELSE '^/PID1/PV_FTIME.CV' := 0 ENDIF The PV_FTIME is a first order filter applied to the input measurement. The 10 is in seconds and places a first order filter on the measurement so that noise greater than 6.0 Hz is attenuated. In other words PV_FTIME acts like a signal average, the higher the number the longer the averaging.
Sal Salamone
In reply to Sal Salamone: