How to do this in Simulink?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/408470/image.jpeg)
1 Kommentar
Mathieu NOE
am 10 Nov. 2020
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
Antworten (1)
Jesús Zambrano
am 10 Nov. 2020
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 Kommentare
Siehe auch
Kategorien
Mehr zu General Applications finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!