Molecular Gases, Mixtures, and Solutions
Real molecules have internal structure. Translation gives the ideal-gas law, but rotations, vibrations, electronic states, and nuclear spin contribute to entropy and heat capacity. Mixtures and dilute solutions add another layer: the entropy of mixing and the chemical potentials of components determine partial pressures, osmotic pressure, vapor-pressure shifts, and reaction equilibria.
Schwabl treats these topics as applications of the same partition-function method. The molecular partition function factorizes when internal modes are weakly coupled, while mixture thermodynamics follows from the dependence of free energy on particle numbers .
Definitions
For a dilute ideal molecular gas with separable degrees of freedom,
where
For a linear rigid rotor with rotational constant energy scale ,
At high temperature, with symmetry number ,
A harmonic vibrational mode has
For an ideal mixture of species ,
The chemical potential is
Key results
The ideal mixture chemical potential is
The pressure is additive:
This is Dalton's law of partial pressures.
The entropy of mixing for ideal gases at fixed and is
where is the mole fraction. The expression is positive because .
For a dilute solute, osmotic pressure obeys the van't Hoff law
where is the solute particle number. This is formally the ideal-gas law for solute particles, even though they move in a solvent.
Chemical equilibrium follows by minimizing free energy subject to stoichiometric constraints. For a reaction
equilibrium requires
In ideal mixtures this becomes a law of mass action: products of concentrations raised to stoichiometric powers equal a temperature-dependent equilibrium constant.
Internal partition functions are only separable approximations. Translation, rotation, vibration, and electronic states are coupled in real molecules, but factorization is accurate when energy scales are well separated and interactions during collisions do not strongly perturb internal spectra. The temperature dependence of heat capacity is a map of these energy scales. Translational modes are active at all ordinary temperatures; rotations activate when exceeds rotational spacings; vibrations often require much higher temperatures; electronic excitations are usually frozen unless low-lying states exist.
The nuclear spin contribution is subtle because it affects state counting without necessarily changing energy in a simple way. Homonuclear molecules have exchange-symmetry restrictions coupling rotational quantum numbers to nuclear spin symmetry. This is the origin of ortho and para forms in molecules such as hydrogen. Schwabl includes such effects to emphasize that indistinguishability is not limited to ideal monatomic quantum gases; it also constrains molecular spectra.
Mixture entropy also resolves the Gibbs paradox. Mixing two different gases increases entropy because final macrostates contain new composition arrangements. Mixing two samples of the same gas does not produce a thermodynamic entropy of mixing once the indistinguishability factor is included. The paradox appears only if identical classical particles are incorrectly labeled.
For dilute solutions, the solvent often acts as a reservoir setting temperature and pressure, while the solute contributes an ideal mixing term at leading order. Colligative properties depend primarily on the number of solute particles, not their microscopic identity. This is why osmotic pressure, boiling-point elevation, and freezing-point depression can be derived from chemical-potential equality using ideal dilute-solution approximations.
Chemical reactions combine all these ideas. The equilibrium constant contains translational factors, internal partition functions, and binding-energy differences. Changing temperature shifts equilibrium because it changes the relative statistical weights of reactant and product molecular states.
A practical way to organize molecular gases is by temperature windows. At very low temperature, translation may still be classical for a dilute gas, but rotations and vibrations can be frozen. At intermediate temperatures, rotations of many molecules are active and add heat capacity. At high temperatures, vibrations contribute and chemical dissociation or electronic excitation may become relevant. Each new active mode changes both energy and entropy, so calorimetric measurements can reveal microscopic spectra.
Mixtures also illustrate why chemical potential is more fundamental than concentration alone. Two species at equal concentration can have different chemical potentials if their masses, internal partition functions, or interactions differ. Equilibrium across a membrane or phase boundary is controlled by equality of the appropriate chemical potentials, not by equal concentration. In ideal dilute limits, this reduces to familiar concentration laws; outside those limits, activity coefficients are needed.
Schwabl's inclusion of solutions and reactions makes the point that statistical mechanics is not only a theory of gases and magnets. The same partition-function logic underlies physical chemistry: vapor pressure lowering, osmotic pressure, surface-tension shifts, and reaction equilibrium are all consequences of minimizing thermodynamic potentials with particle-number constraints.
Surface effects enter when particle numbers near interfaces are not negligible. Curvature changes pressure across an interface through surface tension, and it can shift vapor pressure for small droplets. These corrections are not captured by the bulk ideal-mixture formula, but they use the same chemical-potential equality condition once surface free energy is included.
In solution problems, one must distinguish solvent molecules, solute formula units, and dissociated ions. Colligative properties count independently moving solute particles, so electrolytes can produce larger effects than nonelectrolytes at the same formula concentration.
Visual
| Contribution | Partition factor | Heat-capacity behavior |
|---|---|---|
| Translation | per molecule | |
| Linear rotation | activates near | |
| Vibration | frozen for | |
| Electronic states | often frozen at ordinary | |
| Mixing | combinatorial factors | entropy from composition |
Worked example 1: High-temperature rotational heat capacity
Problem: A heteronuclear diatomic molecule is in the high-temperature rotational regime. Show that rotations contribute per molecule to .
Method:
- At high temperature,
- The rotational internal energy is
- Since ,
- Differentiate:
- Therefore
Checked answer: a linear rotor has two quadratic rotational degrees of freedom, each contributing .
Worked example 2: Entropy of mixing for a binary ideal gas
Problem: Mix ideal gas molecules at the same and . Find .
Method:
- Mole fractions are
- Use
- Substitute:
- Since ,
Checked answer: the entropy is positive and extensive in the total number .
Code
import numpy as np
def z_rot_linear(T, theta_rot, lmax=200, sigma=1):
ell = np.arange(lmax + 1)
terms = (2 * ell + 1) * np.exp(-theta_rot * ell * (ell + 1) / T)
return terms.sum() / sigma
def mixing_entropy(Ns, kB=1.0):
Ns = np.asarray(Ns, dtype=float)
xs = Ns / Ns.sum()
return -kB * np.sum(Ns * np.log(xs))
for T in [1, 5, 20, 100]:
print(T, z_rot_linear(T, theta_rot=2.0))
print("mixing entropy", mixing_entropy([1000, 1000]))
Common pitfalls
- Assuming every internal degree of freedom contributes equipartition at every temperature. Quantum level spacing controls activation.
- Forgetting the symmetry number for homonuclear molecular rotations.
- Mixing distinguishable and indistinguishable counting in entropy of mixing.
- Using mole fractions where concentrations or partial pressures are required without checking the ensemble.
- Treating reaction equilibrium constants as temperature independent; they inherit internal partition functions and binding energies.