summaryrefslogtreecommitdiff
path: root/3014/CH6/EX6.1/Ex6_1.sce
blob: 2b42ec99aeba544812f41fb993704e50ef8731d7 (plain)
1
2
3
4
5
6
7
8
9
10
11

clc 
//Given that
E = 7.9e10 // Young’s modulus in N/m^2
rho = 2650 // Density in Kg/m^3
t = 0.003 // Thickness of quartz crystal in m
printf("Example 6.1\n")
v = sqrt(E/rho)// Calculation of velocity 
lambda = 2*t // Calculation of fundamental wavelength
nu = v/lambda // Calculation of fundamental frequency
printf("Fundamental frequency is %e Hz.\n\n\n",nu)