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/CH2/EX2.8 | |
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/CH2/EX2.8')
-rw-r--r-- | 3532/CH2/EX2.8/Ex2_8.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3532/CH2/EX2.8/Ex2_8.sce b/3532/CH2/EX2.8/Ex2_8.sce new file mode 100644 index 000000000..d05c64876 --- /dev/null +++ b/3532/CH2/EX2.8/Ex2_8.sce @@ -0,0 +1,18 @@ +clc
+clear
+mprintf('Mechanical vibrations by G.K.Grover\n Example 2.4.1\n')
+//given data
+l=1 //lenght in m
+d=0.005 //dia of rod im m
+D=0.2 //dia of dotor in m
+M=2 //mass of motor in Kg
+G=0.83 *10^11 //modulus of rigidity in N/m^2
+//calculations
+J=M*((D/2)^2)/2 //mass moment of inertia in Kg-m^2
+Ip=(%pi/32)*d^4 //section modulus in m^4
+Kt=G*Ip/l //stiffness in N-m/rad
+Wn=sqrt(Kt/J) //natural freqency in rad/sec
+fn=Wn/(2*%pi) //natural freq in Hz
+//output
+mprintf(' The natural freqency of vibration of torsional pendulum is %4.4f rad/sec\n or %4.4f Hz',Wn,fn)
+mprintf('\nNOTE:In book the natural freqency of vibration of torsional pendulum\nis given as 36 Hz which is wrong.')
|