Heater Gain Calculation Units

The gains came up negative in the spreadsheet because the Kp eXcel formulae in row 45 used (U44-U43) as a divisor, where U44=CO2=0 and U43=CO1=100, but there could still be summat amiss in the numerator.
 
Try 1%; it looks like it will take a long time to be stable.

It may effectively be an Integrating (Non-Self-Regulating) Process: it is a thermal capacitor (tank) and the heating element is adding heat, the accumulation of which is measured by temperature.
 
NO,NO,No,NO,NO,NO,NO!!!!!!!!!!

It may effectively be an Integrating (Non-Self-Regulating) Process:
You must be kidding me.
If the heat is taken away the system will return to ambient temperature.



This is control basics 101. There are non-integrating ( type 0 ) and integrating systems and you should be able to tell the difference.



Velocity and temperature systems are non-integrating ( type 0 ) systems because when the power is taken away they return back to a steady state. Temperature systems return to the ambient temperature and velocity systems slow to 0 velocity.


Level and position control systems are integrating systems. Level control integrates the difference between the inflow and the outflow. Position control systems integrate velocity.
 
I'm going back to my old code that uses error windows for a defined diminishing output. As well as when error is negative and rate of PV is negative the ssr will output some. Clamping the output at 0 or 100 and waiting for error to flip is not looking good. Where is my high gain, zero lapped spool that never saturates...
 
Damnit all to hell I have a hard time giving up.
To counter act the error +/- flip being the thing that unclamps the CO min/max, tossing velocity into the calc seems like the thing to do. Only when trying to hold steady state. When ramping up this will not work. Does this seem right?



if Error > 0 and Error < 10
ITerm := IGain*Error*Velocity*-1;
elsif Error < 0 then

ITerm := IGain*Error*Velocity;
else
ITerm := IGain*Error;
end_if;
 

Similar Topics

This is something I figured out that electrically doesn't make sense to me. An electric blanket with a single heating wire looped through it and...
Replies
12
Views
983
Hello everyone! I'm new here and this will be my first post so hopefully I can get some help, I'm having a hard time wrapping my head making some...
Replies
11
Views
4,645
Not directly PLC related, sorry, but I believe I'm ok to ask this question at this forum. I'm a Controls Engineer, programming PLCs, HMIs etc. I...
Replies
19
Views
9,304
Has anyone here a lead on monitoring AC current? We are rebuilding a machine that has approx. 70 heater zones, and in the past, each has been...
Replies
28
Views
11,712
I have to replace temperature controllers for an extruder and it is a retrofit. Each zone (there are 8 per controller, 72 loops in total) has up...
Replies
4
Views
3,166
Back
Top Bottom