summaryrefslogtreecommitdiff
path: root/3532/CH3/EX3.8/Ex3_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3532/CH3/EX3.8/Ex3_8.sce')
-rw-r--r--3532/CH3/EX3.8/Ex3_8.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3532/CH3/EX3.8/Ex3_8.sce b/3532/CH3/EX3.8/Ex3_8.sce
new file mode 100644
index 000000000..55624fded
--- /dev/null
+++ b/3532/CH3/EX3.8/Ex3_8.sce
@@ -0,0 +1,11 @@
+clc
+clear
+mprintf('Mechanical vibrations by G.K.Grover\n Example 3.7.1\n')
+//given data
+fnA=12 //frequency of free vibrations of system A in Hz
+fnB=15 //frequency of free vibrations of system B in Hz
+TdA=4.5 //time taken by system A to damp out completely in sec
+//calculations
+TdB=fnA*TdA/fnB //time taken by system B to damp out completely in sec
+//output
+mprintf(' The time taken by system B to damp out completely is %4.4f sec',TdB)