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

NED UNIVERSITY OF ENGINEERING AND TECHNOLOGY

University Road, Karachi - 75270, Pakistan

(Batch 2020)

Department of Mechanical Engineering


Mechanical vibration (ME-437) OEL Assignment

Mechanical vibration

Group members:
Shah faisal hameed ME 20249
Muzammil bin Shahab ME 2024
Areeb Ali ME 20314
Sarim Ali ME 20317

Submitted to: Sir Abdul Mujeeb


CALCULATIONS:
Total mass
m= 280 gram =0.280kg

(𝑑𝑖𝑠𝑡𝑎𝑛𝑐𝑒 𝑏𝑒𝑡𝑤𝑒𝑒𝑛 𝐶𝑂𝐺 𝑎𝑛𝑑 𝑝𝑖𝑣𝑜𝑡 𝑝𝑜𝑖𝑛𝑡)


d=12 cm

(Dimensions of quadetral)
H1= 30.9 cm H2=30.7 b1= 5.2 cm b2= 9.5 cm

Damped Time Period:


For the Damped Time Period Some initial Angular displacement was given to the compound pendulum
and time period is noted .

T𝑖𝑚𝑒 𝑝𝑒𝑟𝑖𝑜𝑑 𝑓𝑜𝑟 3 𝑜𝑠𝑐𝑖𝑙𝑙𝑎𝑡𝑖𝑜𝑛𝑠

𝑇10= 0.893, 0.903, 0.911 sec

0 .8 93+0 .903+0 .9 11
𝑇𝑎𝑣𝑔= 3

𝑇𝑎𝑣𝑔=0 .9 023 sec

Damped Frequency:
𝑇avg = 0.9023


𝜔𝑑 = Tavg

𝜔𝑑=6.963 𝒓𝒂𝒅/𝒔𝒆𝒄

Natural Frequency:
The Stiffness of Compound Pendulum Can be found by

E𝑞𝑢𝑖𝑣𝑎𝑙𝑒𝑛𝑡 𝑡𝑜𝑟𝑠𝑖𝑜𝑛𝑎𝑙 𝑠𝑡𝑖𝑓𝑓𝑛𝑒𝑠𝑠:

Kt = 𝑚𝑔d
Kt=0.280 × 9.81 × 0.12
Kt= 0.349 Nm

Since it is a rotational system,


𝜔n= √ kt
m

𝜔n= √ 0.349
0.280

𝜔n=1.1144 rad/sec

Damping ratio:

𝐶𝑐 = 2𝑚𝜔𝑛 (𝐶𝑟𝑖𝑡𝑖𝑐𝑎𝑙 𝐷𝑎𝑚𝑝𝑖𝑛𝑔)


𝐶𝑐=2 × 0.280 ×1.1144
𝐶𝑐= 0.6240

2
ωd
𝜁2= 1– (
ωn
)

𝜁 2 = 1 – 0.39047

𝜁 = 0.78072 (𝑑𝑎𝑚𝑝𝑖𝑛𝑔 𝑟𝑎𝑡𝑖𝑜)

Since our 𝜁, daming ratio is less than 1 , this conform that our system is undamped.

𝐶 = ζ × Cc
𝐶=0.78072 × 0.6240
𝐶=0.4871 𝑵. 𝒔/𝒎 (𝑑𝑎𝑚𝑝𝑖𝑛𝑔 𝑐𝑜𝑒𝑓𝑓𝑖𝑐𝑖𝑒𝑛𝑡)

Equation of Motion:
The equation of motion is given as follows

EOM= 0.280 θ̈ + 0.4871θ̇ + 0.349θ = 0

The response of this equation can be plot on Matlab.

Matlab Code:
%User Define Function to it later on in response code

function thetadot= OEL(t,theta)


thetadot(1)=theta(2);
thetadot(2)=-1.7396*theta(2)-1.2464*theta(1);
thetadot=thetadot';

end

%Response Of Compound Pendulum

% Angular Displacement and Velocity


clear all clc
[t,theta]=ode45('OEL',[0 15],[pi/18 0]);
plot(t,theta(:,1))
hold on
plot(t,theta(:,2))
xlabel('time [seconds]');
ylabel('Angular Diplacement and Velocity');
legend('Angular Diplacement','Angular Velocity');
grid on

You might also like