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 --- 3647/CH4/EX4.5/Ex4_5.sce | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 3647/CH4/EX4.5/Ex4_5.sce (limited to '3647/CH4/EX4.5') diff --git a/3647/CH4/EX4.5/Ex4_5.sce b/3647/CH4/EX4.5/Ex4_5.sce new file mode 100644 index 000000000..886ff8ee6 --- /dev/null +++ b/3647/CH4/EX4.5/Ex4_5.sce @@ -0,0 +1,28 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; + + +clc +//initialisation of variables +w=80//lbf +p=4//ft +d=20//stroke/min +d1=3//in +p1=0.6//sec +h=2//ft/s +g=32.2//ft/s +t=60//sec +//CALCULATIONS +P=t/d//sec +U=2*%pi/d1//sec^-1 +V=U*sqrt(h^2-(3/4)^2)//ft/s +K=(w*V^2/(h*g))//lbf +M=U^2*h//ft/s^2 +M1=(w/g)*M//lbf +D=h*cosd(U*0.6*180/%pi)//ft +D1=h-D//ft +//RESULTS +printf('the kinetic energy of the crosshead=% f lbf',K) +printf('the maximum acceleration of force on crosshead=% f lbf',M1) +printf('the distance from end of the path=% f ft',D1) -- cgit