PI Controller Analytical solution

1 回表示 (過去 30 日間)
Filippos Rokos
Filippos Rokos 2021 年 11 月 14 日
回答済み: Pratyush Roy 2021 年 11 月 17 日
I have the transfer function: V(s)=e(s)*G*(1+K/s)
where e(s) = e0 + y(s) , G and K is a constant gains, e0 is a reference value and s is the laplace operator.
What is the appropriate analytical solution for the respose V(t) and the corresponding MATLAB implementation?

回答 (1 件)

Pratyush Roy
Pratyush Roy 2021 年 11 月 17 日
Hi Filippos,
The function ilaplace can be used to obtain the analytical response for V(t). The following code snippet might be helpful:
syms G K e0 s V(s) y(s)
e(s) = e0 + y(s);
V(s) = G*e(s)*(1+K/s);
ilaplace(V(s))
Hope this helps!

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by