summaryrefslogtreecommitdiff
path: root/3537/CH8/EX8.2
diff options
context:
space:
mode:
Diffstat (limited to '3537/CH8/EX8.2')
-rw-r--r--3537/CH8/EX8.2/Ex8_2.sce9
-rw-r--r--3537/CH8/EX8.2/Ex8_2.txt1
2 files changed, 10 insertions, 0 deletions
diff --git a/3537/CH8/EX8.2/Ex8_2.sce b/3537/CH8/EX8.2/Ex8_2.sce
new file mode 100644
index 000000000..8c347aec8
--- /dev/null
+++ b/3537/CH8/EX8.2/Ex8_2.sce
@@ -0,0 +1,9 @@
+//Example 8_2
+clc();
+clear;
+//To calculate the fundamental frequency of crystal
+t=0.002 //units in meters
+v=5750 //units in meter per second
+f=v/(2*t)
+printf("The fundamental frequency of crystal is %.0f Hz",f)
+//the answer in the textbook is given wrong as 1.44*10^-6 but the correct answer is 1437500 Hz
diff --git a/3537/CH8/EX8.2/Ex8_2.txt b/3537/CH8/EX8.2/Ex8_2.txt
new file mode 100644
index 000000000..6ae72f919
--- /dev/null
+++ b/3537/CH8/EX8.2/Ex8_2.txt
@@ -0,0 +1 @@
+The fundamental frequency of crystal is 1437500 Hz \ No newline at end of file