summaryrefslogtreecommitdiff
path: root/3014/CH6/EX6.1
diff options
context:
space:
mode:
Diffstat (limited to '3014/CH6/EX6.1')
-rwxr-xr-x3014/CH6/EX6.1/Ex6_1.sce11
-rwxr-xr-x3014/CH6/EX6.1/Ex6_1.txt2
2 files changed, 13 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)
diff --git a/3014/CH6/EX6.1/Ex6_1.txt b/3014/CH6/EX6.1/Ex6_1.txt
new file mode 100755
index 000000000..8480c8df7
--- /dev/null
+++ b/3014/CH6/EX6.1/Ex6_1.txt
@@ -0,0 +1,2 @@
+ Example 6.1
+Fundamental frequency is 9.099957e+05 Hz. \ No newline at end of file