blob: 3fa28f3a3ac85d98a65cbc71c1725abbdb819150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Chapter-4,Example4_15_13,pg 4-32
d=2650 //density
Y=8*10^10 //Young's modulus
n=2*10^6 //frequency of wave
k=1 //consider 1st harmonic
t=(k/(2*n))*sqrt(Y/d) //arranging formula of natural frequency
printf("thickness =")
disp(t)
printf("meter")
|