summaryrefslogtreecommitdiff
path: root/3014/CH6/EX6.1/Ex6_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3014/CH6/EX6.1/Ex6_1.sce')
-rwxr-xr-x3014/CH6/EX6.1/Ex6_1.sce11
1 files changed, 11 insertions, 0 deletions
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)