Flash Point Tutorial
Flash Point Tutorial
of state for both phases (for example, the SRK equation), and the VLE-condition
µg,i = µl,i gives
φVi yi = φL
i xi (7.44)
where the fugacity coefficients φVi and φLi are determined from the equation of state.
The K value is then Ki = φLi /φV
i . Note that (7.44) can also be used for supercritical
components.
V
yi
p, T
F
zi
L
xi
Table 7.2: Data for flash examples and exercises: Antoine parameters for psat (T ), normal
boiling temperature (Tb ) and heat of vaporization ∆vap H(Tb ) for selected components. Data:
Poling, Prausnitz and O’Connell, The properties of gases and liquids, 5th Ed., McGraw-Hill (2001).
where yi is the vapor phase mole fraction and xi the liquid phase mole fraction for
component i. In general, the “K-value” Ki depends on temperature T , pressure p and
composition (both xi and yi ). We mostly assume ideal mixtures, and use Raoult’s law.
In this case Ki depends on T and p only:
In the examples, we compute the vapor pressure psat (T ) using the Antoine parameters
given in Table 7.2.
Σi Ki xi = 1 (7.45)
where xi is given. For the ideal case where Raoult’s law holds this gives
Σi xi psat (T ) = p (7.46)
! i"# $
pi
Example 7.17 Bubble point at given temperature T . A liquid mixture contains 50%
pentane (1), 30% hexane (2) and 20% cyclohexane (3) (all in mol-%), i.e.,
At T = 400 K, the pressure is gradually decreased. What is the bubble pressure and
composition of the first vapor that is formed? Assume ideal liquid mixture and ideal gas
(Raoult’s law).
Solution. The task is to find a p that satisfies (7.46). Since T is given, this is trivial; we
can simply calculate p from (7.46). We start by computing the vapor pressures for the three
components at T = 400K. Using the Antoine data in Table 7.2, we get:
psat
1 (400K) = 10.248 bar
psat
2 (400K) = 4.647 bar
psat
3 (400K) = 3.358 bar
At the bubble point, the liquid phase composition is given, so the partial pressure of each
component is
p1 = x1 psat
1 = 5.124 bar
p2 = x2 psat
2 = 1.394 bar
p3 = x3 psat
3 = 0.672 bar
p = p1 + p2 + p3 = 7.189 bar
Example 7.18 Bubble point at given pressure p. Consider the same liquid mixture
with 50% pentane (1), 30% hexane (2) and 20% cyclohexane (3) (all in mol-%). A p = 5
bar, the temperature is gradually increased. What is the bubble temperature and composition
of the first vapor that is formed?
Solution. In this case, p and xi are given, and (7.46) provides an implicit equation for T
which needs to be solved numerically, for example, by iteration. A straightforward approach
is to use the method from the previous example, and iterate on T until the bubble pressure is
5 bar (for example, using the MATLAB code below). We find T = 382.64 K, and
p1 p2 p3
y1 = = 0.724; y2 = = 0.187; y3 = = 0.089
p p p
% MATLAB:
x1=0.5; x2=0.3; x3=0.2; p=5;
T=fzero(@(T) p-x1*10^(A1-B1/(T+C1))-x2*10^(A2-B2/(T+C2))-x3*10^(A3-B3/(T+C3)) , 400)
to condense, that is, when the first liquid drop is formed. If the temperature is given,
then we must increase the pressure until the first liquid is formed. If the pressure is
given, then we must decrease the temperature until the first liquid is formed. In both
cases, this corresponds to adjusting T or p until Σxi = 1 or
Σi yi /Ki = 1 (7.47)
where yi is given. For an ideal mixture where Raoult’s law holds this gives
yi 1
Σi = (7.48)
psat
i (T ) p
Example 7.19 Dew point at given temperature T . A vapor mixture contains 50%
pentane (1), 30% hexane (2) and 20% cyclohexane (3) (all in mol-%), i.e.,
At T = 400 K, the pressure is gradually increased. What is the dew point pressure and
the composition of the first liquid that is formed? Assume ideal liquid mixture and ideal gas
(Raoult’s law).
Solution. The task is to find the value of p that satisfies (7.48). Since T is given, this is
trivial; we can simply calculate 1/p from (7.48). With the data from Example 7.17 we get:
1 0.5 0.3 0.2
= + = = 0.1729bar−1
p 10.248 4.647 3.358
Example 7.20 Dew point at given pressure p. Consider the same vapor mixture with
50% pentane (1), 30% hexane (2) and 20% cyclohexane (3). At p = 5 bar, the temperature is
gradually decreased. What is the dew point temperature and the composition of the first liquid
that is formed?
Solution. In this case, p and yi are given, and (7.48) provides an implicit equation for
T which needs to be solved numerically (e.g., using the MATLAB code below). We find
T = 393.30 K, and from xi = yi p/psat
i (T ) we find
x1 = 0.245; x2 = 0.755; x3 = 0
pT -flash
The simplest flash is usually to specify p and T (pT -flash), because Ki depends
mainly on p and T . Let us show one common approach for solving the resulting
equations, which has good numerical properties. Substituting yi = Ki xi into the
mass balance (7.49) gives F zi = Lxi + V Ki xi , and solving with respect to xi gives
xi = (F zi /(L + V Ki ). Here, introduce L = F − L (total mass balance) to derive
zi
xi = V
1+ F (Ki − 1)
Here, we cannot directly calculate xi because the vapor split V /F is not known. To
find V /F we may use the relationship Σi xi = 1 or alternatively Σi yi = Σi Ki xi = 1.
However, it has been found that the combination Σi (yi −xi ) = 0 results in an equation
with good numerical properties; this is the so-called Rachford-Rice flash equation5
zi (Ki − 1)
Σi =0 (7.50)
1 + VF (Ki − 1)
which is a monotonic function in V /F and is thus easy to solve numerically. A physical
solution must satisfy 0 ≤ V /F ≤ 1. If we assume that Raoult’s holds, then Ki depends
5 Rachford, H.H. and Rice, J.D.: “Procedure for Use of Electrical Digital Computers in Calculating
Flash Vaporization Hydrocarbon Equilibrium,” Journal of Petroleum Technology, Sec. 1, p. 19,
Oct. 1952.
194 CHEMICAL AND ENERGY PROCESS ENGINEERING
on p and T only: Ki = psati (T )/p. Then, with T and p specified, we know Ki and the
Rachford-Rice equation (7.50) can be solved for V /F . For non-ideal cases, Ki depends
also on xi and yi , so one approach is add an outer iteration loop on Ki .
Example 7.22 pT -flash. A feed F is split into a vapor product V and a liquid product L
in a flash tank (see Figure 7.4 on page 189). The feed is 50% pentane, 30% hexane and 20%
cyclohexane (all in mol-%). In the tank, T = 390K and p = 5 bar. For example, we may have
a heat exchanger that keeps constant temperature and a valve on the vapor product stream
that keeps constant pressure. We want to find the product split and product compositions.
Assume ideal liquid mixture and ideal gas (Raoult’s law).
Comment. This is a quite close-boiling mixture and we have already found that at 5 bar the
bubble point temperature is 382.64 K (Example 7.18) and the dew point temperature is 393.30
K (Example 7.20). The temperature in the flash tank must be between these temperatures for
a two-phase solution to exist (which it does in our case since T = 390 K).
Solution. The feed mixture of pentane (1), hexane (2) and cyclohexane (3) is
We have Ki = psat
i (T )/p and at T = 390K and p= 5 bar, we find with the Antoine parameters
in Table 7.2:
K1 = 1.685, K2 = 0.742, K3 = 0.532
Now, zi and Ki are known, and the Rachford-Rice equation (7.50) is solved numerically to
find the vapor split V /F = 0.6915. The resulting liquid and vapor compositions are (for details
see the MATLAB code below):
Example 7.23 Condenser and flash drum for ammonia synthesis. The exit gas from
an ammonia reactor is at 250 bar and contains 61.5% H2 , 20.5% N2 and 18% N H3 . The gas
is cooled to 25o C (partly condensed), and is then separated in a flash drum into a recycled
vapor stream V and a liquid product L containing most of the ammonia. We want to calculate
the product compositions (L and V ) from the flash drum.
Data. In spite of the high pressure, we assume for simplicity ideal gas. Use vapor pressure
data for ammonia from Table 7.2 and Henry’s law coefficients for N2 and H2 from page 187.
For ammonia, we assume ideal liquid mixture, i.e., γNH3 = 1 (which is reasonable since the
liquid phase is almost pure ammonia).
Solution. The feed mixture of H2 (1), N2 (2) and N H3 (3) is
psat
3 (T ) 9.83 bar
K3 = = = 0.0393
p 250 bar
ENTROPY AND EQUILIBRIUM 195
For H2 and N2 , we have from the given data for Henry’s coefficient at 25o C (298.15 K):
H1 (T ) 15200 bar
K1 = = = 60.8
p 250 bar
H2 (T ) 8900 bar
K2 = = = 35.6
p 250 bar
Now, zi and Ki are known, and the Rachford-Rice equation (7.50) is solved numerically to
find the vapor split V /F = 0.8500. The resulting liquid and vapor compositions of the products
are
x1 = 0.0119, x2 = 0.0067, x3 = 0.9814
y1 = 0.7214, y2 = 0.2400, y3 = 0.0386
This agrees well with flow sheet data from a commercial ammonia plant.
Other flashes
For other flashes, like the pH-flash (which is relevant for an adiabatic flash tank), one
must include also the energy balance. For example, for an adiabatic flash tank, the
steady-state energy balance gives that the enthalpy H is constant. That is, Hin = Hout ,
and we get
F hF = V hV + LhL (7.51)
! "# $
H
where hV and hL [kJ/mol; kJ/kg] depend primarily on T , but in general also on xi , yi
and p. One solution approach is to use the pT -flash described above, and iterate on T
in an outer loop until the requirement on H is satisfied. Another approach is to solve
the equations simultaneously, as shown for the dynamic adiabatic flash of methanol
and ethanol in Example 11.18 (page 317).
Exercise 7.9 ∗ Bubble and dew point at given pressure. A hydrocarbon mixture
contains 10 mol-% propane, 80% hexane and 10% dodecane. (a) Find the bubble point
temperature at 1 bar. (b) Find the dew point temperature at 1 bar.
Exercise 7.10 Bubble point at given pressure. A liquid mixture contains 4 mol-%
hexane and the rest is octane. What is the composition of the first vapor formed if the total
pressure is 1 atm?
Exercise 7.11 ∗ Flash at given p and T . A feed to a flash tank is 100 mol/s and contains
10% propane, 80% hexane and 10% dodecane. Find the amount of vapor product and the
compositions when T = 350K and p = 2bar.
Exercise 7.12 Flash calculation for binary mixture. Calculate the amount of liquid
that will remain at equilibrium when a mixture of 7 kg hexane and 3 kg toluene is vaporized
at 95o C and 1.5 bar.
Data: Molecular weights are 86.17 and 92.13.
196 CHEMICAL AND ENERGY PROCESS ENGINEERING
Exercise 7.13 ∗ Bubble and dew point calculations. (a) A gas mixture of 15 mol-%
benzene, 5 mol-% toluene and the rest nitrogen is compressed isothermally at 100o C until
condensation occurs. What will be the composition of the initial condensate?
(b) Calculate the temperature and composition of a vapor in equilibrium with a liquid that
is 25 mol-% benzene and 75 mol-% toluene at 1 atm. Is this a bubble point or a dew point?
(c) Calculate the temperature and composition of a liquid in equilibrium with a gas
mixture containing 15 mol-% benzene, 25 mol-% toluene and the rest nitrogen (which may be
considered non-condensable) at 1 atm. Is this a bubble point or a dew point?
Exercise 7.14 Condenser for exhaust gas. The exhaust gas from a natural gas power
plant is at 1 bar and contains 76% N2 (1), 12% O2 (2), 4% CO2 (3) and 8% H2 O (4). The
gas is cooled to 25o C (partly condensed), and is then separated in a flash drum into a gas
product V and a liquid product L containing most of the water. Find the compositions of the
product streams. Are we able to remove any significant amount of CO2 in the water?
Data: Use pure component vapor pressure data for water and Henry’s law coefficients for
the gas components (see page 187).