Chap4 4 PDF
Chap4 4 PDF
Overhead
product
Reflux
Liquid
Vapor
Feed
Reboiler
Bottom
liquid
product
v1
QC
L0
D, xD
plate n-1
L n-1
Vn
Ln
Vn+1
plate n
F, x F
plate n
plate n+1
feed plate
plate m-1
plate m
L m-1
Vm
Lm
Vm +1
plate m
plate m+1
QR
B, xB
(4.4-1)
(4.4-2)
In this expression, yn+1 is mole fraction of component A in Vn+1 and xn-1 is the mole fraction of
component A in Ln-1 and so on. The McCabe-Thiele method is valid when we have constant
molal overflow in both the rectifying and stripping sections of the distillation column. Hence
V1 = V2 = V3 = = Vn = Vn+1 = constant
L0 = L1 = L2 = = Ln-1 = Ln = constant
Vm-1 = Vm = Vm+1 = constant
4-16
v1
QC
x0
y1
x1
y2
x2
y3
Ln, xn
L0
D, xD
Vn+1 , yn+1
(4.4-3)
Since CMO is assumed, Vn+1 = V = constant and Ln = L = constant. Eq. (4.4-3) can be written
as
yn+1 = xnL/V + xDD/V
(4.4-4)
From the total balance V = L + D D/V = 1 L/V. In terms of the reflux ratio R = L/D
L
L
L/D
R
=
=
=
V
L+D
L / D +1 R +1
4-17
D
D
1
1
=
=
=
V
L+D
L / D +1 R +1
Eq. (4.4-4) becomes
yn+1 =
R
1
xn +
xD
R +1
R +1
(4.4-5)
This equation which is the material balance for component A is called the operating line.
Given xD, xF, R, and the equilibrium data, the equilibrium stages can be determined by
successively solving the equilibrium relation and the material balance at each stage. Starting
at xD, y1 is evaluated, for a total condenser y1 = xD. The liquid composition x1 is then
determined form the equilibrium curve at y = y1. This is a dew point calculation with known
y1. Next y2 is determined from the mass balance or operating line
y2 =
R
1
x1 +
xD
R +1
R +1
R
1
x2 +
xD
R +1
R +1
This process continues until xn < xF. The number of equilibrium stages in the rectifying
section is n including the feed tray, n is the number of equilibrium calculations during the
process.
Example 4.4-1 ---------------------------------------------------------------------------------A distillation column receives a feed that is 40 mole % n-pentane and 60 mole % n-hexane.
Feed flow rate is 2,500 lbmol/hr and feed temperature is 30oC. The column is at 1 atm. A
distillate that is 97 mole % n-pentane is desired. A total condenser is used. Reflux is a
saturated liquid. The external reflux ratio is L0/D = 3. Bottoms from the partial reboiler is 98
mole % n-hexane. Determine the number of equilibrium trays and their compositions for the
rectifying section.
Data: Vapor pressure, Psat, data: ln Psat = A B/(T + C), where Psat is in kPa and T is in K.
Compound
A
n-pentane (1) 13.9778
n-hexane (2) 14.0568
B
2554.6
2825.42
C
36.2529
42.7089
D + B = 2,500
Material balance for n-pentane over the entire tower gives
0.97D + 0.02B = (0.4)(2,500) = 1,000 0.97(2,500 B) + 0.02B = 1,000
Solving for B and D from the above equations we have B = 1,500 lbmoles/hr and D = 1000
lbmoles/hr.
v1
QC
D, xD = 0.97
L0
L/D
=3
0
F = 2,500 lbmol/hr
T = 30o C
F, xF
P = 1 atm
feed plate
QR
B, xB = 0.02
Since the column has a total condenser, y1 = xD = 0.97. The liquid composition x1 is then
determined form the equilibrium curve at y = y1 = 0.97. The equilibrium curve y versus x for
n-pentane and n-hexane system is plotted in Figure E-1a where x and y are the mole fraction
of n-pentane in the liquid and vapor phase, respectively. The equilibrium curve is expanded
near the region x = 1 in Figure E-1b. At y = y1 = 0.97, x = x1 = 0.9107. We can also perform
a dew point temperature calculation with y = y1 = 0.97.
We start with the equation
x1 + x2 = 1
(E-1)
y1 P
y P
+ 2sat = 1
sat
P1
P2
(E-2)
With the numerical values for mole fractions and pressure, equation (E-2) becomes
4-19
(E-3)
Figure E-1b: Equilibrium curve for n-pentane and n-hexane system near x = 1.
4-20
The dew point temperature should be between the boiling points of n-pentane and n-hexane
given by
T1boil =
2554.6
+ 36.2529 = 309.20 K
13.9778 ln(101.325)
T2boil =
2825.42
+ 42.7089 = 342.06 K
14.0568 ln(101.325)
The solution of the nonlinear algebraic equation (E-3) can be determined using Matlab
function fsolve with inline function as follows:
>>fun=inline('.97*101.325/exp(13.9778-2554.6/(T-36.2529))+
0.03*101.325/exp(14.0568 -2825.42/(T-42.7089))-1');
>> T=fsolve(fun,309.5,optimset('Display','off'))
T = 311.0479
The dew point temperature of the n-pentane and n-hexane mixture is 311.0479 K. At this
temperature, the vapor pressure of n-pentane is
P1sat = exp(13.9778 - 2554.6/( 311.0479 - 36.2529)) = 107.9228 kPa
The mole fraction of n-pentane in the liquid stream leaving state 1 is then
x1 =
y1 P
(0.97)(101.325)
=
= 0.9107
sat
107.9228
P1
R
1
3
1
x1 +
xD =
x1 +
xD = 0.75x1 + 0.25xD
R +1
R +1
3 +1
3 +1
R
1
x2 +
xD
R +1
R +1
This process continues until xn < xF. The following Matlab program alternately solves the
equilibrium relation and material balance for the mole fraction of n-pentane leaving each
equilibrium stage:
4-21
0.91070 , y =
0.79889 , y =
0.63454 , y =
0.46085 , y =
0.32841 , y =
0.97000
0.92552
0.84167
0.71840
0.58814
4-22