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

Summitted to Dr P Jeyraj

Preetam Bangera-14me253
Pritesh Kumar Singh- 14m254
R Aditya -14me255
Rahul Nayak-14me256
Question:

Solution:

ML 2 M (1) M (2)2 M
KE=1/2[ + ] ^2= [ + ] ^2
12 32 12 9

4M
=1/2[ 9
] ^2

4M
Meq= 9

PE=1/2[K(d* )^2]= [ Kd^2]^2

Keq=Kd^2

4 4 16
DE= [C 3 d( 3 )]= C( 9 ) d

16
Ceq= 9

4M 16
Governing equation: [ 9
] +[ 9 ] +[Kd^2]
Assuming d=2/3 as it is not given.

Undamped natural frequency= 44.72rad/sec

Damping factor=0.224

MATLAB code for generating gaphs

%forced vibration and transmissibility


x = rand(100);
r = 0:0.1:4;
for T=0:0.2:1
%for free vibration response just write the command below
%for forced vibration and transmissibility include the whole program
%X = (1/40)*(1./sqrt((1-r.^2).^2+(2.*T.*r).^2));
%forced vibration
%X = 1/40*(1./sqrt((1-r.^2).^2+(2.*T.*r).^2));
%fi = atand(2.*T.*r./(1-r.^2));
%transmissibility
% X = sqrt(1+(2.*T.*r.^2).^2).*(1./sqrt((1-r.^2).^2+(2.*T.*r).^2));
for i=1:41
if fi(i)<=0
fi(i) = fi(i)+180;
end
end
plot(r,fi);
hold on
end
hold off
%title('TRANSMISSIBILITY')
%xlabel('frequency ratio,r')
%ylabel('force transmitted,Ft')
title('FORCED VIBRATION')
xlabel('frequency ratio,r')
ylabel('phase angle')

You might also like