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 /1325/CH15/EX15.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 '1325/CH15/EX15.1')
-rw-r--r-- | 1325/CH15/EX15.1/15_1.PNG | bin | 0 -> 86810 bytes | |||
-rw-r--r-- | 1325/CH15/EX15.1/15_1.sce | 21 |
2 files changed, 21 insertions, 0 deletions
diff --git a/1325/CH15/EX15.1/15_1.PNG b/1325/CH15/EX15.1/15_1.PNG Binary files differnew file mode 100644 index 000000000..ea5469f2d --- /dev/null +++ b/1325/CH15/EX15.1/15_1.PNG diff --git a/1325/CH15/EX15.1/15_1.sce b/1325/CH15/EX15.1/15_1.sce new file mode 100644 index 000000000..e983bc7c9 --- /dev/null +++ b/1325/CH15/EX15.1/15_1.sce @@ -0,0 +1,21 @@ +//to find the frequencies of the free longitudinal, transverse and torsional vibrations
+clc
+//given
+W=.3*2240//lb
+l=36//in
+D=3//in
+k=15//in
+A=%pi*(D/2)^2
+E=30*10^6//youngs modulus
+C=12*10^6
+g=32.2//ft/s^2
+d=W*l/(A*E)
+Fl=187.8/(d)^(1/2)
+I=%pi*(d/2)^4
+d1=W*(l^3)*64/(3*E*%pi*(3^4))
+Ft=187.8/(d1)^(1/2)
+j=%pi*3^4/32
+q=C*j/l
+Ftor=(1/(2*%pi))*(q*g*12/(W*k^2))^(1/2)
+F1=Ftor*60
+printf("\na) Frequency of Longitudinal vibrations = %.f per min\nb) Frequency of the transverse vibrations = %.f per min\nc) Frequency of the torsional vibration = %.f per min",Fl,Ft,F1)
|