From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3594/CH15/EX15.1/Ex15_1.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 3594/CH15/EX15.1/Ex15_1.sce (limited to '3594/CH15/EX15.1') diff --git a/3594/CH15/EX15.1/Ex15_1.sce b/3594/CH15/EX15.1/Ex15_1.sce new file mode 100644 index 000000000..e983bc7c9 --- /dev/null +++ b/3594/CH15/EX15.1/Ex15_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) -- cgit