summaryrefslogtreecommitdiff
path: root/1364/CH14/EX14.4.5/14_4_5.sce
blob: 97319893ad0f04ecadbe19cae5754dbc6ec6fa1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
clc
//initialisation of variables
N= 2900 //rev/min
G= 415
h= 1080 //ft
n= 1000
c= 0.96
g= 32.2 //ft/sec^2
w= 2900 //rev
p= 0.78
Q= 4000 //lbf/min
//CALCULATIONS
x= ((n*h^0.75/(N*G^0.5))^(4/3))+0.3
H= h/x
D= c*sqrt(2*g*H)*2*60*12/(w*2*%pi)
P= Q*h/(p*33000)
//RESULTS
printf ('head per stage= %.f ft',H)
printf (' \n diameter= %.1f in',D)
printf (' \n Power= %.f h.p',P)