summaryrefslogtreecommitdiff
path: root/1394/CH13/EX13.4.2/Ex13_4_2.sce
blob: 60f4a0f8dcad37b67a966424bc8a6e02e528ac6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

clc
//Initialization of variables
R = 82 // atm-cm^3/gmol-K
T = 273 + 60 // Kelvin
pk = 1 // atm
a1 = 440 // sec^-1 (of gas)
a2 = 1.7 //sec^-1 (of liquid)
ck = 1.5/((0.47*(76.1))+(0.53*(158.7)))
x = 0.2
Vs = 10 // litres
GA = 59 // gmol/sec
m = 1.41
//Calculations
k = (R*T)/(pk*a1) + (m/(ck*a2))
Kya = (1/k)*1000 // gmol/l-sec
Murphree = 1 - exp(-Kya*Vs/(GA))
//Results
printf("The murphree efficiency is %.2f",Murphree)