C0.D.Free(1) = false;
setBlockParam(ST0,'MIMO Controller',C0)
Next create the tuning requirements. Here we use the following four requirements:
(^1) Tracking: az should respond in about 1 second to the azref command
(^2) Bandwidth and roll-off: The loop gain at delta fin should roll off after 25 rad/s
with a -20 dB/decade slope
(^3) Stability margins: The margins at delta fin should exceed 7 dB and 45 degrees
(^4) Disturbance rejection: The attenuation factor for input disturbances should be 40
dB at 1 rad/s increasing to 100 dB at 0.001 rad/s.
% Tracking
Req1 = TuningGoal.Tracking('az ref','az',1);
% Bandwidth and roll-off
Req2 = TuningGoal.MaxLoopGain('delta fin',tf(25,[1 0]));
% Margins
Req3 = TuningGoal.Margins('delta fin',7,45);
% Disturbance rejection
% Use an FRD model to sketch the desired attenuation profile with a few points
Freqs = [0 0.001 1];
MinAtt = [100 100 40]; % in dB
Req4 = TuningGoal.Rejection('delta fin',frd(db2mag(MinAtt),Freqs));
Req4.Focus = [0 1];
You can now use systune to tune the controller parameters subject to these
requirements.
AllReqs = [Req1,Req2,Req3 Req4];
Opt = systuneOptions('RandomStart',3);
rng(0)
[ST,fSoft] = systune(ST0,AllReqs,Opt);
Final: Soft = 1.42, Hard = -Inf, Iterations = 51
Final: Soft = 1.43, Hard = -Inf, Iterations = 65
Final: Soft = 1.14, Hard = -Inf, Iterations = 96
Final: Soft = 1.14, Hard = -Inf, Iterations = 151
Tuning of a Two-Loop Autopilot