Can I trust this closed loop response and include it as a final result in my Thesis?

3 次查看(过去 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,

采纳的回答

Sam Chak
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])
Gp = 1 ----------- s^2 + s + 1 Continuous-time transfer function.
%% PID Controller
Gc = pidtune(Gp, 'PIDF')
Gc = 1 s Kp + Ki * --- + Kd * -------- s Tf*s+1 with Kp = 2.09, Ki = 1.19, Kd = 0.91, Tf = 0.00549 Continuous-time PIDF controller in parallel form.
%% Closed-loop system
Gcl = feedback(Gc*Gp, 1)
Gcl = 167.8 s^2 + 381.4 s + 216.7 --------------------------------------------- s^4 + 183.1 s^3 + 350.9 s^2 + 563.5 s + 216.7 Continuous-time transfer function.
%% Bode plot of the frequency response of Gcl
bode(Gcl), grid oo
Bode plot obtained in Simulink:
  4 个评论
Sam Chak
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 CenterFile Exchange 中查找有关 Plot Customization 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by