Frequency-Domain Tuning with LOOPTUNE
You can use the looptune function to automatically tune multi-loop control systems
subject to basic requirements such as integral action, adequate stability margins, and
desired bandwidth. To apply looptune to the autopilot model, create an instance of the
slTuner interface and designate the Simulink blocks "az Control" and "q Gain" as
tunable. Also specify the trim condition op to correctly linearize the airframe dynamics.
ST0 = slTuner('rct_airframe1',{'az Control','q Gain'},op);
Mark the reference, control, and measurement signals as points of interest for analysis
and tuning.
addPoint(ST0,{'az ref','delta fin','az','q'});
Finally, tune the control system parameters to meet the 1 second response time
requirement. In the frequency domain, this roughly corresponds to a gain crossover
frequency wc = 5 rad/s for the open-loop response at the plant input "delta fin".
wc = 5;
Controls = 'delta fin';
Measurements = {'az','q'};
[ST,gam,Info] = looptune(ST0,Controls,Measurements,wc);
Final: Peak gain = 1.01, Iterations = 76
The requirements are normalized so a final value near 1 means that all requirements are
met. Confirm this by graphically validating the design.
figure('Position',[100,100,560,714])
loopview(ST,Info)
Tuning of a Two-Loop Autopilot