summaryrefslogtreecommitdiff
path: root/1928/CH4/EX4.15.24/ex_4_15_24.sce
blob: 9115274544192f0f0f7161ef2db36949ff1ae9b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//Chapter-4,Example4_15_24,pg 4-38

//for case1
t1=2*10^-3                              //thicknesss of plate

d=2.65*10^3                             //density

Y=8*10^10                               //Young's modulus

k=1                                     //consider 1st harmonic

n1=(k/(2*t1))*sqrt(Y/d)                 //formula of natural frequency

printf("       1)natural frequency =")

disp(n1)

printf("Hz")

//for case2

n2=3*10^6                               //frequency

t2=(k/(2*n2))*sqrt(Y/d)                 //arranging formula of natural frequency

t=t1-t2                                 //change in thickness

printf("     2)change in thickness =")

disp(t)

printf("meter")