Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

VIBRATION ASSIGNMENT

TOPIC
VIBRATION OF AN AUTOMOBILE TRAVELLING ON A ROUGH ROAD

SUBMITTED TO
PROFFESSOR YADUKRISHNAN
ALLIANCE UNIVERSITY

SUBMITTED BY
MANJUNATH
17030141AE009
ALLIANCE UNIVERSITY

QUESTION STATEMENT

 Consider an automobile travelling over a rough road at a speed of v km/hr.The


suspension system has a spring constant of 40kN/m and a damping ratio of ζ = 0.1. The
road surface varies sinusoidally with an amplitude of Y = 0.05 m and a wavelength of
6m. Write a MATLAB program to find the displacement amplitude of the automobile for
the following conditions :
(a) mass of the automobile = 600 kg (empty), 1000 kg (loaded),
(b) velocity of the automobile (v) =10km/hr, 50 km/hr, 100 km/hr.

MATLAB CODE:

lamda=6;
m=[600 1000];
k=40000;
wn=(k./m).^(0.5);
y=0.05;
z=0.1;

for v=[10 50 100]


w=(1.745329252.*v)/lamda;
r=w./wn;
x1=y*((1+(2*z*r).^2)./(((1-r.^2).^2)+((2*z*r).^2))).^(0.5);

disp(['The Amplitude of the automobile when it is empty with mass


600 Kg and when it is loaded with total mass of 1000 Kg in meters are :', num2str(x1),'
respectively']);
end

RESULT:
The Amplitude of the automobile when it is empty with mass 600Kg and when it is loaded
with total mass of 1000Kg in meters are :0.057224 0.063253 respectively
The Amplitude of the automobile when it is empty with mass 600Kg and when it is loaded
with total mass of 1000Kg in meters are :0.024103 0.01276 respectively
The Amplitude of the automobile when it is empty with mass 600Kg and when it is loaded
with total mass of 1000Kg in meters are :0.0052411 0.0033674 respectively

You might also like