diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3532/CH4/EX4.10.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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.10.1')
-rw-r--r-- | 3532/CH4/EX4.10.1/Ex4_12.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/3532/CH4/EX4.10.1/Ex4_12.sce b/3532/CH4/EX4.10.1/Ex4_12.sce new file mode 100644 index 000000000..ccfe11d19 --- /dev/null +++ b/3532/CH4/EX4.10.1/Ex4_12.sce @@ -0,0 +1,28 @@ +clc
+clear
+mprintf('Mechanical vibrations by G.K.Grover\n Example 4.10.1\n')
+//given data
+m=1000//mass of machine in kg
+Fo=490//amp of force in N
+f=180//freq inRPM
+//calculations
+//case a)
+K=1.96*10^6//total stiffness of springs in N/m
+Wn=sqrt(K/m)
+W=2*%pi*f/60
+bet=(W/Wn)
+zeta=0
+Xst1=Fo/K//amplitude of steady state
+X1=Xst1*(1/(sqrt((1-bet^2)^2+(2*zeta*bet)^2)))//amp of vibration Eqn 4.2.15 in Sec 4.2.1
+Ftr1=Fo*sqrt(1+(2*zeta*bet)^2)/sqrt((1-bet^2)^2+(2*zeta*bet)^2)//force transmitted,Eqn 4.10.2 in Sec 4.10.1
+//case b)
+K=9.8*10^4//total stiffness of springs in N/m
+Wn=sqrt(K/m)
+W=2*%pi*f/60
+bet=(W/Wn)
+zeta=0
+Xst2=Fo/K//amplitude of steady state
+X2=Xst2*(1/(sqrt((1-bet^2)^2+(2*zeta*bet)^2)))//amp of vibration Eqn 4.2.15 in Sec 4.2.1
+Ftr2=Fo*sqrt(1+(2*zeta*bet)^2)/sqrt((1-bet^2)^2+(2*zeta*bet)^2)//force transmitted,Eqn 4.10.2 in Sec 4.10.1
+//output
+mprintf(' a)The amplitude of motion of machine is %f m and the maximum force transmitted\n to the foundation because of the unbalanced force when\n K=1.96*10^6 N/m is %4.4f N\n b)for same case as in a)if K=9.8*10^4 N/m then\n the amplitude of motion of machine is %f m\n and the maximum force transmitted to the foundation because of\n the unbalanced force %4.4f N',X1,Ftr1,X2,Ftr2)
|