Properties of Gases
Gases are the simplest macroscopic systems in physical chemistry because their pressure, volume, temperature, and amount of substance are tightly connected by equations of state. Atkins begins equilibrium thermodynamics with gases because a gas lets us see how empirical laws, molecular pictures, and calculus-based thermodynamics support one another.
The perfect gas is the reference model: molecules are treated as point particles with negligible intermolecular forces except during collisions. Real gases depart from that model when attractions, repulsions, and finite molecular size become important, especially at high pressure and near condensation.
Figure: Maxwell-Boltzmann molecular speed distributions for noble gases. Image: Wikimedia Commons, Pdbailey with SVG conversion by Lilyu, public domain.

Figure: Brownian motion as direct visual context for molecular collisions and thermal motion. Image: Wikimedia Commons, Lookang with model by Francisco Esquembre and Fu-Kwun, CC BY-SA 3.0.
Definitions
A state variable is a property that describes the present condition of the system. For a simple pure gas, the usual variables are pressure , volume , temperature , and amount . An equation of state relates them:
The perfect gas equation is
where . The molar volume is , so the perfect gas law may also be written .
For mixtures, the mole fraction and partial pressure of component are
when the mixture behaves perfectly. The compressibility factor measures deviations from perfect behavior:
For a perfect gas, at all pressures and temperatures. For a real gas, may be smaller than 1 when attractions dominate and larger than 1 when repulsions dominate.
Two common real-gas equations are the virial equation and the van der Waals equation. The pressure virial form is
and the molar-volume form is
The van der Waals equation is
where represents attractive interactions and represents excluded volume.
Key results
Boyle's law, Charles's law, and Avogadro's principle combine into the perfect gas law in the low-pressure limit:
The gas laws are limiting laws. They work well when the gas is dilute enough that the average separation between molecules is large compared with molecular dimensions and the potential energy of interaction is small compared with thermal energy.
The van der Waals equation gives a useful qualitative correction. The observed pressure is lower than the perfect-gas value because attractions reduce the impulse delivered to the walls. The accessible volume is lower than because molecules occupy finite space. Rearranging,
Critical constants follow from the inflection point of the critical isotherm:
For the van der Waals model,
Reduced variables compare a state with its critical point:
The principle of corresponding states says that many gases have similar reduced equations of state when expressed using these variables.
The pressure of a gas also has a mechanical interpretation that is useful throughout the subject. A gas exerts pressure because molecules transfer momentum to the container walls. Higher temperature increases the average kinetic energy and therefore increases the rate and severity of wall collisions. Larger volume lowers the collision frequency at the walls. This molecular picture is not needed to use the perfect gas equation, but it explains why the equation has the structure it does and why it fails when molecules are close enough for attractions and repulsions to matter.
The distinction between a limiting law and an exact law is important. The perfect gas law is approached as because the average separation between molecules grows large. In that limit, potential-energy contributions from intermolecular forces become negligible compared with translational kinetic energy. A real gas at ordinary laboratory pressure may be close enough to ideal for rough stoichiometry, but precision thermodynamics uses fugacity or measured equations of state. The virial equation is especially valuable because each coefficient carries information about molecular interactions: the second virial coefficient reflects pair interactions, the third virial coefficient reflects three-body effects, and so on.
The sign of the second virial coefficient is physically meaningful. If attractions dominate at a given temperature, is negative and at sufficiently low density: the gas pressure is lower than the perfect-gas value because molecules are pulled slightly back from the wall by neighboring molecules. If repulsions dominate, is positive and : finite molecular size and short-range repulsion raise the pressure. The Boyle temperature is the temperature at which , so a real gas obeys the perfect gas law unusually well over a wider low-pressure range, even though higher virial terms still remain.
The van der Waals equation should be read as a model rather than a high-accuracy correlation. Its attraction parameter lowers pressure by an amount proportional to concentration squared, because attractions depend on pair encounters. Its excluded-volume parameter reduces the volume available for molecular translation. These two corrections are enough to predict liquid-vapor loops and a critical point, which the perfect gas law cannot do. However, near the critical point real fluids show fluctuation behavior that the simple mean-field van der Waals model cannot capture quantitatively.
Critical phenomena matter because above a gas cannot be liquefied by pressure alone. Below , compression can produce a two-phase liquid-vapor region; at , the distinction between liquid and gas disappears. Supercritical fluids combine high density with transport properties closer to gases, which is why they are useful in extraction and materials processing. In the language of phase diagrams, the critical point is the endpoint of a coexistence curve; in the language of equations of state, it is the point where an isotherm has a horizontal inflection.
Gas mixtures introduce another layer of idealization. Dalton's law assumes each gas contributes to the total pressure as if it occupied the container alone at the same temperature. This is reliable for low-pressure mixtures because molecular identity barely affects translational pressure. In real mixtures, unlike interactions can be different from like interactions, so activity or fugacity replaces partial pressure in accurate equilibrium work. Even then, the perfect-gas partial pressure remains the reference concept for defining standard states and reaction quotients.
A final practical theme is dimensional discipline. The same equation can look different depending on whether is expressed in , , or . Real-gas constants and are also unit-dependent. Many numerical errors in gas calculations are not conceptual errors but unit mismatches, especially when pressure is converted between pascals, bar, atmospheres, torr, and millimeters of mercury.
Visual
| Model or quantity | Main equation | Best use | Limitation |
|---|---|---|---|
| Perfect gas | Dilute gases, reference states | Ignores attractions and molecular size | |
| Dalton mixture | Gas mixtures at low pressure | Fails when mixture nonideality is strong | |
| Compressibility factor | Measures real-gas deviation | Descriptive unless paired with model/data | |
| Virial equation | Accurate empirical corrections | Coefficients depend on and gas identity | |
| van der Waals | Qualitative real-gas physics, criticality | Quantitatively rough near critical point |
Worked example 1: Pressure from a column of liquid
Problem. A mercury barometer has a mercury column of height at a place where . Mercury has density . Calculate the pressure in pascals and atmospheres.
Method. The pressure at the base of a liquid column is the weight per area:
Steps.
- Convert density:
- Convert height:
- Substitute:
- Convert to atmospheres:
Checked answer. The pressure is essentially . The check is that is the conventional atmospheric-pressure height.
Worked example 2: Real-gas pressure with van der Waals corrections
Problem. Estimate the pressure of of in a vessel at using the perfect gas equation and the van der Waals equation. Use and .
Method. For , . Use .
- Perfect gas pressure:
- Excluded-volume term:
- Attraction correction:
- van der Waals pressure:
- Compressibility factor:
Checked answer. The real-gas estimate is , lower than the ideal value because attractions dominate at this state. The result confirms that interpretation.
Code
import numpy as np
R = 0.08314 # L bar K^-1 mol^-1
a = 3.592 # CO2, L^2 bar mol^-2
b = 0.04267 # CO2, L mol^-1
T = 300.0
Vm = np.linspace(0.08, 5.0, 200)
p_ideal = R * T / Vm
p_vdw = R * T / (Vm - b) - a / Vm**2
Z_vdw = p_vdw * Vm / (R * T)
for volume in [0.5, 1.0, 2.0, 5.0]:
p = R * T / (volume - b) - a / volume**2
z = p * volume / (R * T)
print(f"Vm={volume:4.1f} L/mol p={p:7.2f} bar Z={z:6.3f}")
Common pitfalls
- Treating as exact for all gases. It is a limiting model; check pressure, temperature, and phase proximity.
- Forgetting that in van der Waals equations is molar volume. If using total volume, use the -dependent form.
- Mixing pressure units inside . Use with pascals and cubic meters, or with liters and bar.
- Interpreting and as universal constants. They depend on the gas.
- Assuming always means a gas is "more ideal." It means attractions reduce pressure relative to the perfect-gas value at that state.