summaryrefslogtreecommitdiff
path: root/896/CH3/EX3.5/5.sce
blob: c12c2b432f3c7d266d74dac6d44a4e3b29c50424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
clc
//Example 3.5
//calculate velocity and mass flow rate of natural in a pipe
d1=2;//ft diameter of pipe at position 1
a1=(%pi)/4*d1^2;//ft^2
v1=50;//ft/s vel of gas at position 1
rho1=2.58;//lbm/ft^3 density of gas at position 1
d2=3;//ft diameter of pipe at position 2
a2=(%pi)/4*d2^2;
rho2=1.54;//lbm/ft^3 density at position 2
v2=(rho1/rho2)*(a1/a2)*v1//ft/s
printf("Velocity is %f ft/s\n",v2);
m=rho1*v1*a1//lbm/s mass flow rate
printf("The mass flow rate is %f lbm/s",m);