From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1985/CH8/EX8.2/Chapter8_Example2.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 1985/CH8/EX8.2/Chapter8_Example2.sce (limited to '1985/CH8/EX8.2') diff --git a/1985/CH8/EX8.2/Chapter8_Example2.sce b/1985/CH8/EX8.2/Chapter8_Example2.sce new file mode 100755 index 000000000..fc926c6a0 --- /dev/null +++ b/1985/CH8/EX8.2/Chapter8_Example2.sce @@ -0,0 +1,13 @@ +clc +clear +//Input data +t=0.005//Length of the crystal in m +Y=(7.9*10^10)//Youngs modulus in N/m^2 +d=2650//Density in kgm^3 + +//Calculations +f1=((1/(2*t))*sqrt(Y/d))/10^5//Fundamental vibration in Hz *10^5 +f2=2*f1/10//Frequency of first overcome in Hz *10^6 + +//Output +printf('The frequency of the fundamental note is %3.2f *10^5 Hz \n The first overtone emitted by a piezoelectric crystal is %3.3f *10^6 Hz',f1,f2) -- cgit