Bode plot of simulink model

4 Ansichten (letzte 30 Tage)
Alzapoa
Alzapoa am 5 Nov. 2011
Bearbeitet: Arkadiy Turevskiy am 27 Feb. 2015
Hi there, I have a simulink model for motor control. I need to plot its bode diagram. Is there a command to plot the bode plot for a simulink model? could you tell what is it (if any)? furthermore, I would be happier if you could tell me commands which may draw pole-zero plot.
thanks,

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 5 Nov. 2011
To plot the Bode plot, you need the transfer function.
[A,B,C,D]=LINMOD('SYS') obtains the state-space linear model of the system of ordinary differential equations described in the block diagram 'SYS' when the state variables and inputs are set to the defaults specified in the block diagram.
If your Simulink model is just a transfer function of the controller connected with the transfer function of the motor plant model in a unit feedback, it might be better if you do it in MATLAB.
You can use tf(),ss() or zpk() to specify the controller and the motor model. Then you can use connect() to connect the model with feedback and close the loop. use step() ans stepinfo() to see the step response.
Check the help documentation for all the functions mentioned above. Sometimes its easy to do it in MATLAB without Simulink. But Simulink also has advantages. It's graphical, interactive and can easily add non-linear and time-variant components.
To draw zero-pole plot, use pzmap().
Most of the functions require the Control System Toolbox. If you have that, sisotool(), ltiview() may be very useful.
  1 Kommentar
Alzapoa
Alzapoa am 13 Nov. 2011
perfect answer dude
thank you

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Arkadiy Turevskiy
Arkadiy Turevskiy am 14 Nov. 2011
Bearbeitet: Arkadiy Turevskiy am 27 Feb. 2015
You might also look at Simulink Control Design. It gives you many tools for trimming and linearizing Simulink models. You can do that using a nice user interface, or command line functions (which can be automatically generated from the GUI).
Take a look at linearization page for more details.
HTH. Arkadiy

Kategorien

Mehr zu Get Started with Control System Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by