summaryrefslogtreecommitdiff
path: root/896/CH10/EX10.7/7.sce
blob: 56c4b23f91f34bdd4d5a17b74db9a06147650aba (plain)
1
2
3
4
5
6
7
8
9
10
clc
//Example 10.7
//Calculate the estimated pressure rise in the first stage of mutisatge centrifugal compressor
rho=0.075//lbm/ft^3
omega=1047//rad/sec
d=2//ft
dP=(1/2)*(rho)*(omega*d/2)^2/32.2/144//psia
//1 lbf.s^2 = 32.2 lbm into feed
//1 ft = 144 in^2
printf("the estimated pressure rise in the first stage of mutisatge centrifugal compressor is %f psia",dP);