summaryrefslogtreecommitdiff
path: root/1394/CH14/EX14.5.1/Ex14_5_1.sce
blob: 16ac7a3f13d1385f9dba8bd9c116096c3124a35f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

clc
//initialization of variables
F = 5 //kg feed
S = 2 // kg solvent
E = F-S // kg extract
W = 1 // kg waste
EG = 80 // ppm
y0 = (100-99)/100 // mole fraction of gold left
y1 = y0*EG*W/S // concentration in raffinate
//Calculations
xN = (EG*W - y1*S)/E // solvent concentration
xNminus1 = ((xN*(E+S)) - EG*W)/F//feed stage balance
N = 1 + ((log((xN-xNminus1)/(y1))/log(F/S)))//numner of stages including feed stage
//Results
printf("The number of stages including feed stage is %.f",N)