summaryrefslogtreecommitdiff
path: root/3532/CH4/EX4.11.1/Ex4_15.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3532/CH4/EX4.11.1/Ex4_15.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3532/CH4/EX4.11.1/Ex4_15.sce')
-rw-r--r--3532/CH4/EX4.11.1/Ex4_15.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3532/CH4/EX4.11.1/Ex4_15.sce b/3532/CH4/EX4.11.1/Ex4_15.sce
new file mode 100644
index 000000000..4696ee57f
--- /dev/null
+++ b/3532/CH4/EX4.11.1/Ex4_15.sce
@@ -0,0 +1,15 @@
+clc
+clear
+mprintf('Mechanical vibrations by G.K.Grover\n Example 4.11.1\n')
+//given data
+T=2//period of free vibration in sec
+f=1//vertical harmonic frequency of machine in in Hz
+Z=2.5//amplitude of vibrotometer mass relative to vibrotometer frame in mm
+//calculations
+Wn=2*%pi/T
+W=2*%pi*f
+bet=(W/Wn)
+zeta=0//for vibrotometers
+Y=Z*(sqrt((1-bet^2)^2+(2*zeta*bet)^2))/bet^2//amplitude of vibration of machine Eqn 4.4.11 in Sec 4.4.2
+//output
+mprintf(' The amplitude of vibration of support of machine is %4.4f mm',Y)