Is there any Steady-state error for Step input command?
94 ビュー (過去 30 日間)
古いコメントを表示
clear all
clc
syms s;
K=1;
Gnum=(50/3)*K;
Gden=sym2poly((s+5)*(s+(10/3))*(s+1));
G=tf(Gnum,Gden);
Hnum=20;
Hden=sym2poly(s+20);
H=tf(Hnum,Hden);
figure
rlocus(G*H*K);
T=feedback(G*K,H);
figure
step(T)
figure
rlocus(T)
0 件のコメント
回答 (1 件)
Nagasai Bharat
2021 年 1 月 19 日
編集済み: Nagasai Bharat
2021 年 1 月 19 日
Hi,
From my understanding you are trying to find the Steady state error(SSE) for the step response. Steady state error is the absolute difference between the actual value and the desired value at the steady state i.e assuming the end of the plot in this case. SSE is meaningless for unstable closed loop systems.
Desired value appears to be 0.5 from the plot.
To get the SSE
[y,t] = step(T);
sse = abs(0.5 - y(end));
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!