How to do this in Simulink?

2 vues (au cours des 30 derniers jours)
AVIJIT NEMO
AVIJIT NEMO le 9 Nov 2020
  1 commentaire
Mathieu NOE
Mathieu NOE le 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

Connectez-vous pour commenter.

Réponses (1)

Jesús Zambrano
Jesús Zambrano le 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!

Catégories

En savoir plus sur General Applications dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by