diff options
Diffstat (limited to '3537/CH8/EX8.13/Ex8_13.sce')
-rw-r--r-- | 3537/CH8/EX8.13/Ex8_13.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3537/CH8/EX8.13/Ex8_13.sce b/3537/CH8/EX8.13/Ex8_13.sce new file mode 100644 index 000000000..0ffa0941e --- /dev/null +++ b/3537/CH8/EX8.13/Ex8_13.sce @@ -0,0 +1,11 @@ +//Example 8_13
+clc();
+clear;
+//To calculate the fundamental frequency
+l=0.001 //units in mts
+y=7.9*10^10 //units in N/mts^2
+d=2650 //units in N/mts^2
+v=sqrt(y/d) //units in m/sec
+toe=0.001 //units in m
+V=v/(2*toe) //units in Hz
+printf("Fundamental frequency=%.2fHz",V)
|