Results 1 to 5 of 5
Thread: AIA Verses PID
-
12-22-2007, 01:59 PM #1
AIA Verses PID
With the help from many, I was able to create my first simple Spyder program, simulate, and it ran....cool. I'll try to load it into a Spyder next.
I was looking at the AIA (Adaptive Integral Action) object and was wondering if anyone is using this successfully instead of a PID object. If so, in what applications?
jogas
-
12-23-2007, 07:37 PM #2
Regular Guest
- Join Date
- Apr 2006
- Location
- New England
- Posts
- 189
-
12-23-2007, 07:56 PM #3
Here's the Help explanation:
This function is an Adaptive Integral Action controller (AIA). It can be used in place of the PID. This control works better than PID when delays in the process being controlled cause integral windup resulting in undershoot or overshoot that leads to instability.
Err = Sensor Set Point.
If Direct/Reverse is set to reverse, then Err term is set to Err.
Tr (throttling range) is Error value that results in an Output change of the maximum value (MaxAOchange) from one step to the next. MaxAOchange is the maximum amount(%) that Output will change for a single cycle of the control (1 sec). This is typically set to 100%/(actuator speed(sec/full stroke)). Deadband is the absolute value that Error must be greater than before the output will change.
EffErr = Err dead band
If Err > 0 , ErrSign = 1 else ErrSign = -1
If |Err| < dead band, then AbsErr = 0.
Otherwise( |Err |> dead band), AbsErr = |Err| - deadband
Output = output + ErrSign*[( maxAOchng minAO)*(AbsErr/(ThrottlingRange-Deadband))**3 + MinAO)].
From iteration to iteration, the Function Block keeps track of the old proportional error. On power up/reset this is cleared.
jogas
-
12-30-2007, 01:28 PM #4
Attached is a Hnywl brochure excerpt on AIA.
jogas
[IMG]file:///C:/DOCUME%7E1/jogas/LOCALS%7E1/Temp/moz-screenshot.jpg[/IMG] [IMG]file:///C:/DOCUME%7E1/jogas/LOCALS%7E1/Temp/moz-screenshot-1.jpg[/IMG]
-
12-30-2007, 01:58 PM #5
i was told the aia isn't subject to integral wind up. however the output doesn't go below 0 so if you use it with a stager the last stage won't turn off. i have a thread on here about it and code and lwarren offered some advice.


Reply With Quote
