bode diagram of the quarter car

4 Ansichten (letzte 30 Tage)
Federico Paolucci
Federico Paolucci am 1 Jul. 2022
Beantwortet: Sam Chak am 1 Jul. 2022
hi, how can i make the bode diagram of a quarter car model via matlab? in order to highlight the resonant frequency.

Antworten (1)

Sam Chak
Sam Chak am 1 Jul. 2022
Say the car model is given by . Then you can use the bode() function.
omega = 1;
zeta = 0.125/8;
s = tf('s');
G = 1/(s^2 + 2*zeta*omega*s + omega^2)
G = 1 ------------------- s^2 + 0.03125 s + 1 Continuous-time transfer function.
bode(G)

Kategorien

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

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by