summaryrefslogtreecommitdiff
path: root/2735/CH16/EX16.6/Ex16_6.sce
blob: d7a65fdf6e7bae6bd999687c5b929caa57f42cf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clc
clear
//Initialization of variables
p=14.7 //psia
ps=0.363 //psia
n2=7.52 //moles
n1=1 //moles
//calculations
x= (n1+n2)*ps/p /(1-ps/p)
n=n1+n2+x
y1=n1/n
y2=n1/(n1+n2)
//results
printf("Final orsat composition is %d CO2 + %.2f H20 + %.2f N2",n1, x, n2)
printf("\n Percentage of co2 on a wet basis = %.1f percent",y1*100)
printf("\n percentage of co2 on a dry basis = %.2f percent",y2*100)