Open Loop Time Response ?

14 ビュー (過去 30 日間)
Nao Man
Nao Man 2019 年 12 月 20 日
編集済み: Aquatris 2019 年 12 月 23 日
Hello guys, I have to fnd the time response of the process [G(s)=0.60/(100s+1)] for time variations of the input, with step change at time t=0 with 20% size.
Could anyone help me, I have no idea what to do.
  1 件のコメント
krishna teja
krishna teja 2019 年 12 月 23 日
can you make question more clear

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

回答 (1 件)

Aquatris
Aquatris 2019 年 12 月 23 日
編集済み: Aquatris 2019 年 12 月 23 日
Define your transfer function first. Then define your time vector. I have no idea what you want for input but I will use a nice unit step input. Then use lsim function to obtain time response;
G = tf(0.6,[100 1]); % transfer function
t = 0:1e-3:1000; % time vector
u = ones(length(t),1); % unit step input vector
y = lsim(G,u,t); % system response
plot(t,y)

カテゴリ

Help Center および File ExchangeDigital Filter Analysis についてさらに検索

タグ

製品


リリース

R2010a

Community Treasure Hunt

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

Start Hunting!

Translated by