bode diagram of the quarter car

2 visualizzazioni (ultimi 30 giorni)
Federico Paolucci
Federico Paolucci il 1 Lug 2022
Risposto: Sam Chak il 1 Lug 2022
hi, how can i make the bode diagram of a quarter car model via matlab? in order to highlight the resonant frequency.

Risposte (1)

Sam Chak
Sam Chak il 1 Lug 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)

Categorie

Scopri di più su Get Started with Control System Toolbox in Help Center e File Exchange

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by