deriving a transfer fuctnion
17 views (last 30 days)
Show older comments
Derive the closed loop transfer function for the given controller, and then use a second order system to approximate the 3rd-order closed loop transfer function, calculate the transient performance (rise time, time to peak, %PO, setting time), and compare with the actual performance identified from the Matlab plot.

0 Comments
Answers (1)
Sam Chak
on 18 Feb 2025 at 7:46
Hi @Plato
This is a homework question. However, you can use the feedback() function to compute the closed-loop transfer function if the controller K is given.
s = tf('s');
G = ((s + 1)*(s + 2))/((s^2 + s + 2)*(s + 3));
G = zpk(G)
help feedback
0 Comments
See Also
Categories
Find more on Classical Control Design in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!