blob: 3612372a813908b2548b56126a47ee7eb1a097d9 (
plain)
1
2
3
4
5
6
7
8
9
|
clc;
clear all;
t = 0.5e-2; // Thickness in meters
r = 2650; // Density in Kg per cubic meters
p=1;//for fundamental vibration
Y = 7.9e10; // Youngs modulus in Newton per square meter
f = (p/(2*t))*sqrt(Y/r);//The fundamental frquency
disp('Hz',f,'The fundalmental frquency is ')
|