summaryrefslogtreecommitdiff
path: root/1664/CH1/EX1.1/Ex1_1.sce
blob: 49d50dc0d8c1e6797d05d7778e27bb21cccf78b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12


// Example No.1.1.
// Page No.28.
clc;clear;
t = 0.15*10^(-2);//Thickness of the quartz crystal -[m].
Y = 7.9* 10^(10);//Young's modulus of quartz -[N/m^2].
d = 2650;//Density of quartz -[kg/m^3].
f = (1/(2*t))*(sqrt(Y/d));//'f' is fndamental frequency of vibration.
f = f*10^(-6);//fundamental frequency of vibration.
printf("\nThe fundamental frequency of vibration of the crystal is %.4f MHz",f);