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!