Gas-Vapor Mixtures and Air Conditioning
Air-conditioning analysis treats atmospheric air as a mixture of dry air and water vapor. The dry-air component behaves nearly as an ideal gas, while the water vapor amount is limited by saturation pressure at the mixture temperature. This coupling creates humidity, dew point, wet-bulb behavior, cooling with dehumidification, evaporative cooling, and cooling-tower performance.
Cengel's psychrometric chapter is highly practical. The psychrometric chart is a graphical property table for moist air at a specified pressure. It organizes dry-bulb temperature, humidity ratio, relative humidity, enthalpy, specific volume, dew-point temperature, and wet-bulb temperature so that HVAC processes can be solved by mass and energy balances.
Definitions
- Dry air is the mixture of noncondensing gases in atmospheric air, treated as one ideal gas.
- Atmospheric air or moist air is dry air plus water vapor.
- Humidity ratio is , the mass of water vapor per mass of dry air.
- Relative humidity is , the ratio of water-vapor partial pressure to saturation pressure at the same temperature.
- Dew-point temperature is the temperature at which water vapor begins to condense when moist air is cooled at constant pressure and humidity ratio.
- Specific humidity and humidity ratio are often used in similar ways in HVAC contexts, but Cengel's psychrometric formulas typically use .
- Dry-bulb temperature is the ordinary air temperature. Wet-bulb temperature includes evaporative cooling effects at a wetted thermometer.
- Adiabatic saturation is a process in which unsaturated air contacts liquid water in an insulated device and approaches saturation.
- Cooling and dehumidification occurs when moist air is cooled below its dew point and water condenses out.
- Evaporative cooling lowers dry-bulb temperature by evaporating water into air, approximately at constant enthalpy for simple idealized devices.
Balances are usually written per kg of dry air because dry air is conserved through humidification, cooling, and dehumidification devices while water vapor may be added or removed. This convention prevents moving denominators as condensation changes the water-vapor mass. 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 gas-vapor mixtures and air conditioning, 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
For ideal-gas dry air and water vapor,
Relative humidity gives
where is the saturation pressure of water at the dry-bulb temperature. The moist-air enthalpy per kg dry air is commonly approximated by
with in and in .
Specific volume per kg dry air can be estimated by
For a steady-flow air-conditioning device with condensate leaving as liquid water,
and an energy balance, neglecting fan work and kinetic-potential changes, is
with sign depending on whether heat is added to or removed from the air stream. Psychrometric charts encode these formulas graphically and are often faster than repeated table lookup. 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
ASCII sketch of a psychrometric chart:
humidity ratio
omega
| saturation curve phi = 100%
| ___/
| ___/ curved relative humidity lines
| ___/
| ___/________________________ dry-bulb temperature
dew point moves horizontally at constant omega
| Process | Approximate chart path | What changes |
|---|---|---|
| Sensible heating | horizontal right | rises, constant |
| Sensible cooling above dew point | horizontal left | falls, constant |
| Cooling with dehumidification | left and downward | falls, water condenses |
| Humidification with steam | upward and right | and enthalpy rise |
| Evaporative cooling | up and left near constant | falls, rises |
Worked example 1: humidity ratio from relative humidity
Problem. Atmospheric air is at , , and relative humidity. The saturation pressure of water at is . Find the humidity ratio.
Method.
- Compute water-vapor partial pressure:
- Use the humidity-ratio formula:
- Substitute:
Checked answer. The humidity ratio is about water vapor per kg dry air. It is below the saturated value at , as expected for relative humidity.
Worked example 2: cooling and dehumidification load
Problem. Moist air flows at from , relative humidity to saturated air. Use , , and . Estimate condensate rate and cooling load using .
Method.
- Inlet vapor pressure:
- Inlet humidity ratio:
- Exit saturated vapor pressure is :
- Condensate rate:
- Enthalpies:
- Cooling load, neglecting condensate liquid enthalpy correction:
Checked answer. The coil removes about and condenses of water.
Code
def humidity_ratio(Pv, P=101.325):
return 0.622 * Pv / (P - Pv)
def moist_air_h(T_C, omega):
return 1.005 * T_C + omega * (2500.0 + 1.88 * T_C)
w1 = humidity_ratio(0.50 * 4.246)
w2 = humidity_ratio(1.705)
h1 = moist_air_h(30.0, w1)
h2 = moist_air_h(15.0, w2)
print(w1, w2, w1 - w2)
print(h1, h2, h1 - h2)
Common pitfalls
- Using total air mass instead of dry-air mass as the basis for humidity ratio.
- Confusing relative humidity with humidity ratio.
- Assuming cooling always dehumidifies; condensation begins only below the dew point.
- Reading a psychrometric chart at the wrong barometric pressure.
- Ignoring condensate mass and enthalpy when dehumidification is large.
- 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.