How to do this in Simulink?
2 次查看(过去 30 天)
显示 更早的评论
1 个评论
Mathieu NOE
2020-11-10
well
open simulink
create a new model and import some first order continuous time blocs and fill the arguments with the appropriate constants
then add a source signal and run the solver
回答(1 个)
Jesús Zambrano
2020-11-10
Hi Avijit,
In the command window, set values to the parameters Ka, Ta, Tw.
Then, create the transfer functions by writing:
sys1 = tf(Ka, [Ta 1]);
sys2 = tf([Tw 0], [Tw 1]);
Then, plot the response of these functions to a unit step input, by writing:
step(sys1);
step(sys2);
Hope it helps!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 General Applications 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!