フィルターのクリア

How to get steady state error values of a closed loop negative feedback system

6 ビュー (過去 30 日間)
Karrar
Karrar 2019 年 7 月 26 日
コメント済み: Karrar 2019 年 12 月 19 日
How to get steady state error values of a closed loop negative feedback system using .m file command
for example,
s=tf('s');
G = 5/(s^2+2*s+25);
C = pidtune(G,'pid');
sys = feedback(C*G,1);
So now I want the values which is input to PID controller = steady state error values
How to do so ????
  2 件のコメント
izas
izas 2019 年 11 月 22 日
編集済み: izas 2019 年 11 月 22 日
I am not sure if you are still interested in the answer.
Y/R = CG/ (1+CGH); where H=1 in this case
(Error* CG)/R = CG/ (1+CGH);
Error (s) = R/ (1+CGH)
This is to say, the error is:
(one divided by (one plus the open loop)) multiplied by the reference.
If you need the final value in time, you apply the final value theorem (FVT). The FVT states:
lim e(t) = lim s * E(s)
t->inf s->0
Karrar
Karrar 2019 年 12 月 19 日
Hi,
Thank you for your answer.
Regards.

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

回答 (0 件)

カテゴリ

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