bode diagram of the quarter car

조회 수: 4 (최근 30일)
Federico Paolucci
Federico Paolucci 2022년 7월 1일
답변: Sam Chak 2022년 7월 1일
hi, how can i make the bode diagram of a quarter car model via matlab? in order to highlight the resonant frequency.

답변 (1개)

Sam Chak
Sam Chak 2022년 7월 1일
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)

카테고리

Help CenterFile Exchange에서 Get Started with Control System Toolbox에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by