deriving a transfer fuctnion
5 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Sam Chak
2025 年 2 月 18 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Classical Control Design についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!