blob: 609fb1725943c6a94398d8e8c6ea97dfb827699f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
clc
clear
//Initialization of variables
z=12 //ft
gam1=62.4 //lb/ft^3
sg=0.8
P2=100 //psia
P1=-10 //psia
mm=10000 //lb/min
//calculations
gam2=sg*gam1
p2g=P2*144/(gam2) +z
p1g=P1*144*0.491/(gam2)
ht=p2g-p1g
Hhp=mm*ht/33000
//results
printf("Total dynamic head = %.1f ft of oil",ht)
printf("\n Hydraulic hp = %.1f hp",Hhp)
|