blob: 22791aabae65e2e3b71ad2ad3da15bb450a5ed21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clc
//initialisation of variables
H=90//ft
dis=50//ft/sec
v=50//ft/sec
g= 32.2 //ft/sec^2
//CALCULATIONS
Vf=dis*4/(6.24*%pi)
Vw=g*(H-(Vf*Vf/(2*g)))/dis
a=atan(Vf/Vw)
t=atan(Vf/(Vw-dis))
work=(Vw*dis/g)
hp=10*v*work/550
//RESULTS
printf ('\n horse power required= %.1f ',hp)
|