Chemical and Phase Equilibrium
Equilibrium tells us where a reacting or multiphase system tends after constraints are fixed. Energy balances can predict an adiabatic flame temperature only if product composition is known; at high temperature, dissociation changes that composition. Phase equilibrium determines whether species partition between liquid and vapor, dissolve in liquids, or condense from gases.
Cengel introduces equilibrium through the Gibbs function. At fixed temperature and pressure, a closed reacting system reaches equilibrium by minimizing Gibbs free energy. This principle leads to equilibrium constants for chemical reactions and equality of chemical potentials for phase equilibrium.
Definitions
- Chemical equilibrium occurs when a reacting mixture has no net tendency to change composition at the specified constraints.
- Phase equilibrium occurs when phases coexist without net mass transfer of each species between phases.
- The Gibbs function is . At constant temperature and pressure, equilibrium corresponds to minimum Gibbs function.
- Chemical potential is the partial molar Gibbs function of a species. Equality of chemical potential across phases is the phase-equilibrium condition.
- The extent of reaction tracks composition changes according to stoichiometric coefficients.
- The equilibrium constant relates equilibrium composition to temperature for a specified reaction written in a specified direction.
- Reaction quotient has the same form as the equilibrium expression but uses current, not necessarily equilibrium, composition.
- Dissociation is the breaking of molecules into simpler species at high temperature, such as into and fragments in combustion products.
- Henry's law relates gas solubility in a liquid to gas partial pressure for dilute solutions.
- Raoult's law approximates ideal liquid-vapor equilibrium: .
Equilibrium constants depend on temperature, not on the initial amount of material. Pressure affects equilibrium composition when the number of gas moles changes because mole fractions and partial pressures enter the reaction quotient. For this topic, a complete engineering model should state the boundary, the time basis, the property model, and the sign convention before any numbers are substituted. In chemical and phase equilibrium, that habit is especially important because several formulas look similar while answering different physical questions. A closed-system expression, a steady-flow expression, an ideal-gas relation, and a property-table interpolation may all contain pressure, temperature, or enthalpy, but they do not have the same assumptions. The safest workflow is to write the general balance or defining relation first, cancel terms with a written reason, and only then insert table values or constants.
The second modeling habit is to keep the basis visible. Some calculations are per unit mass, some per mole, some per kg dry air, and some per unit time. A correct formula on the wrong basis is a common source of errors that look numerically plausible. When a table gives , multiply by to get ; when a reaction is balanced in kmol, convert to mass only after the element balance is complete; when a mixture property uses mole fraction, do not substitute mass fraction without conversion.
Key results
At fixed and , a reacting mixture satisfies
for spontaneous change, with equality at equilibrium. For a reaction
the equilibrium condition is
For ideal gases, an equilibrium constant can be written in terms of partial pressures:
The reaction quotient predicts direction: if , the reaction proceeds forward; if , it proceeds backward.
For ideal liquid solutions with ideal vapor behavior, Raoult's law is
For dilute gas solubility, Henry's law may be written as
with the convention for depending on tables. The Gibbs phase rule gives degrees of freedom:
for a nonreacting system with components and phases; reactions reduce the independent composition variables. These results should be read as a hierarchy rather than a list of isolated equations. Conservation of mass and energy set the allowed accounting; property relations supply the missing state data; the second law or equilibrium criterion decides direction, limits, and losses. A numerical answer is not finished until it passes three checks: the units reduce to the requested quantity, the sign matches the stated energy or entropy transfer direction, and the magnitude is reasonable compared with a limiting case. Useful limiting cases include zero heat transfer, reversible operation, incompressible behavior, ideal-gas behavior, saturated-liquid or saturated-vapor endpoints, and equal reservoir temperatures.
Because the textbook often moves between exact laws and engineering approximations, the approximation should be named in the solution. Examples include constant specific heats, negligible kinetic energy, negligible pump work, adiabatic devices, isentropic turbomachinery, ideal-gas mixtures, dry-air approximations, and linear interpolation. Naming the approximation makes later refinement straightforward: replace the approximate property model or restore the neglected term without rebuilding the whole analysis.
Visual
| Equilibrium type | Criterion | Typical relation |
|---|---|---|
| Chemical reaction | ||
| Liquid-vapor ideal solution | equal chemical potentials | |
| Dilute gas in liquid | solubility proportional to partial pressure | Henry's law |
| Single-component phase coexistence | same , , chemical potential | saturation curve |
Worked example 1: extent of dissociation from an equilibrium constant
Problem. A gas-phase reaction starts with of pure at . At the specified temperature, . Assuming ideal gases, find the equilibrium extent .
Method.
- Mole numbers at extent :
- Mole fractions:
- With , the ideal-gas equilibrium expression is
- Substitute:
- Set equal to :
- Solve:
Checked answer. One third of the original dissociates. Product moles are and , with total moles .
Worked example 2: ideal bubble pressure by Raoult's law
Problem. A liquid solution at a fixed temperature contains of component 1 and of component 2. The saturation pressures are and . Estimate the bubble pressure and vapor composition using Raoult's law.
Method.
- Bubble pressure for an ideal solution is
- Substitute:
- Vapor mole fractions:
- Component 1:
- Component 2:
Checked answer. The vapor is richer in the more volatile component 1. The mole fractions sum to 1, checking the calculation.
Code
import math
def dissociation_extent_A_to_2B(Kp):
# Kp = 4*x^2/(1-x^2) at P = P_standard
return math.sqrt(Kp / (4.0 + Kp))
def raoult_bubble(x, Psat):
P = sum(xi * Pi for xi, Pi in zip(x, Psat))
y = [xi * Pi / P for xi, Pi in zip(x, Psat)]
return P, y
print(dissociation_extent_A_to_2B(0.50))
print(raoult_bubble([0.40, 0.60], [80.0, 30.0]))
Common pitfalls
- Using an equilibrium constant without matching the written reaction direction.
- Forgetting pressure effects when gas mole number changes during reaction.
- Treating as composition independent of temperature and pressure in the wrong way: it depends on temperature, while pressure affects composition through partial pressures.
- Applying Raoult's law to strongly nonideal liquid mixtures without activity coefficients.
- Ignoring simultaneous element balances when several reactions occur.
- Starting from a special-case equation before checking that its assumptions actually hold. Write the general balance or definition first, then reduce it.
- Leaving property-table values unlabeled. Record the substance, phase region, pressure or temperature row, interpolation fraction, and units so the result can be audited.
- Rounding intermediate states too aggressively. Keep extra digits through property lookup, quality calculation, and efficiency ratios, then round the final answer to justified precision.
- Skipping a limiting-case check. Test the result against reversible operation, zero pressure drop, saturated endpoints, ideal-gas behavior, or equal-temperature reservoirs when those limits are meaningful.
- Treating a numerical solver or chart as a substitute for physical reasoning. Software can return a precise-looking number even when the selected phase, reference state, or boundary model is wrong.
- Forgetting to state whether the reported answer is specific, total, or rate based.