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 --- 3014/CH6/EX6.1/Ex6_1.sce | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 3014/CH6/EX6.1/Ex6_1.sce (limited to '3014/CH6/EX6.1/Ex6_1.sce') diff --git a/3014/CH6/EX6.1/Ex6_1.sce b/3014/CH6/EX6.1/Ex6_1.sce new file mode 100755 index 000000000..2b42ec99a --- /dev/null +++ b/3014/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,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) -- cgit