summaryrefslogtreecommitdiff
path: root/3532/CH5/EX5.7.1
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3532/CH5/EX5.7.1
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/CH5/EX5.7.1')
-rw-r--r--3532/CH5/EX5.7.1/Ex5_8.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/3532/CH5/EX5.7.1/Ex5_8.sce b/3532/CH5/EX5.7.1/Ex5_8.sce
new file mode 100644
index 000000000..cee0aee50
--- /dev/null
+++ b/3532/CH5/EX5.7.1/Ex5_8.sce
@@ -0,0 +1,29 @@
+clc
+clear
+mprintf('Mechanical vibrations by G.K.Grover\n Example 5.7.1\n')
+//given data
+J1=0.735//moment of inertia of main system in Kg-m^2
+Kt1=7.35*10^5//torsional stiffness
+To=294//amplitude of applied torque
+W=10^3//frequency of applied torque
+//u=ratio of absorber mass to main mass i.e M2/M1
+//Wn is exitation frequency
+//calculations
+W1=sqrt(Kt1/J1)
+//case1
+x1=0.8//where x=(W/W2)
+u1=[x1^2-1]^2/x1^2//from Eqn 5.7.9,Sec 5.7.1.
+//case 2
+x2=1.2//where x=(W/W2)
+u2=[x2^2-1]^2/x2^2//from Eqn 5.7.9,Sec 5.7.1.
+if u1>u2 then
+ u=u1
+else
+ u=u2
+end
+J2=u*J1//moment of inertia of absorber in Kg-m^2
+Kt2=u*Kt1// total torsional stiffness of absorber
+K=Kt2/(4*0.1^2)//stiffness of each spring in N/m
+b2=-(To/Kt2)//amplitude of vibration in rad
+//output
+mprintf('The maximum moment of inertia of absorber(J2) is %4.4f Kg-m^2 and\n %f is the stiffness of each of the four absorber springs such that\n the resonant frequencies are at least 20 percent from exitation frequency.\n The amplitude of vibration of this absorber(b2) at exitation frequency\n is %f radians',J2,K,b2)