summaryrefslogtreecommitdiff
path: root/3537/CH8/EX8.12/Ex8_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '3537/CH8/EX8.12/Ex8_12.sce')
-rw-r--r--3537/CH8/EX8.12/Ex8_12.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3537/CH8/EX8.12/Ex8_12.sce b/3537/CH8/EX8.12/Ex8_12.sce
new file mode 100644
index 000000000..74b94a99e
--- /dev/null
+++ b/3537/CH8/EX8.12/Ex8_12.sce
@@ -0,0 +1,11 @@
+//Example 8_12
+clc();
+clear;
+//To find the fundamental frequency
+l=3*10^-3 //units in meters
+d=3.5*10^3 //units in kg/m^3
+Y=8*10^10 //units in N/m^2
+v=1/(2*l)*sqrt(Y/d)
+v=v*10^-6 //units in Hz
+printf("Fundamental Frequency v=%.3f Hz",v)
+