bode diagram of the quarter car

2 views (last 30 days)
Federico Paolucci
Federico Paolucci on 1 Jul 2022
Answered: Sam Chak on 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.

Answers (1)

Sam Chak
Sam Chak on 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)

Categories

Find more on Get Started with Control System Toolbox in Help Center and File Exchange

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!