Can I trust this closed loop response and include it as a final result in my Thesis?
1 回表示 (過去 30 日間)
古いコメントを表示
have obtained the open loop response of my real plant and then I identified the transfer function from that response which is shown as: The image shows a blue line of my identified plant transfer.
Now I have designed the controller for my plant, and took closed loop response using Simulink:
Does it seem to be the correct closed-loop response of my plant? I took the above response as follows,
0 件のコメント
採用された回答
Sam Chak
2024 年 2 月 26 日
You can actually verify the result (from Check Bode Characteristics block) with the Bode plot of the Closed-loop System obtained in MATLAB.
%% Plant
Gp = tf(1, [1 1 1])
%% PID Controller
Gc = pidtune(Gp, 'PIDF')
%% Closed-loop system
Gcl = feedback(Gc*Gp, 1)
%% Bode plot of the frequency response of Gcl
bode(Gcl), grid oo
Bode plot obtained in Simulink:
4 件のコメント
Sam Chak
2024 年 3 月 11 日
Unfortunately, I don't have a satisfactory answer. Could you please provide the theoretical proof to demonstrate that adding a feedforward MPC controller will increase the closed-loop bandwidth? This would allow individuals skilled in mathematics to investigate what might have deviated from your expectations.
Alternatively, it might be wise to post your problem on the MATLAB Answers forum, including the MATLAB code and Simulink model. This way, someone with expertise in MPC might be able to provide an answer.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with Control System Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!