Verify transfer function into SS

2 ビュー (過去 30 日間)
Abdullah Alabdrabalnabi
Abdullah Alabdrabalnabi 2019 年 10 月 30 日
コメント済み: Walter Roberson 2019 年 11 月 21 日
I am facing a problem of how to definw this transfer function then transfer it to state space
Screen Shot 2019-10-30 at 5.49.01 PM.png
how to write the tf in this case then which method should I use to find state space?!
  5 件のコメント
Abdullah Alabdrabalnabi
Abdullah Alabdrabalnabi 2019 年 10 月 30 日
can I undo this? if yes how ?
Walter Roberson
Walter Roberson 2019 年 11 月 21 日
No, the internal representations automatically normalize the leading coefficient.

サインインしてコメントする。

回答 (1 件)

Maadhav Akula
Maadhav Akula 2019 年 11 月 21 日
You can define the transfer function as follows:
den = [10 7.4 337.3 171.1 5498.1];
sys1 = tf([0 0 19.04 15.03 933.1],den);
sys2 = tf([0 0 -47.6 14.73 -1.03],den);
sys3 = tf([0 0 -47.6 13.8 2.2],den);
sys4 = tf([0 0 152.4 56.2 3739.2],den);
sys = [sys1 sys2; sys3 sys4];
Now to get the state space co-efficients use the ss function :
State_space_coefficients = ss(sys)

カテゴリ

Help Center および File ExchangeClassical Control Design についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by