Hand Calculations logo Hand Calculations All help pages ▾

ISA Density✓ verified

Aerospace / Atmosphere · Standard-atmosphere air density at altitude

Parameters

InputSymbolUnitDefaultDescription
hhm0.0Geometric altitude
OutputSymbolUnitDescription
rhoρkg/m^3Air density

The science & history

Understanding the Parameters

Derivation (Approaching a Proof)

Two routes reach the same result; both are instructive.

Route 1 — divide the two known laws. The ideal gas law in specific form is

$$P = \rho R T \quad\Longrightarrow\quad \rho = \frac{P}{RT}.$$

At sea level this fixes the datum density:

$$\rho_0 = \frac{P_0}{R T_0} = \frac{101325}{287.05 \times 288.15} = 1.2250\ \text{kg}/\text{m}^3,$$

which is exactly the leading constant of the displayed equation. Now take the ratio of the state at altitude to the state at sea level:

$$\frac{\rho}{\rho_0} = \frac{P/(RT)}{P_0/(RT_0)} = \frac{P}{P_0}\cdot\frac{T_0}{T}.$$

$R$ cancels — the result is independent of the gas constant. Substitute the pressure power law derived in ISA Pressure, $P/P_0 = (T/T_0)^{g/(LR)}$:

$$\frac{\rho}{\rho_0} = \left(\frac{T}{T_0}\right)^{g/(LR)}\left(\frac{T}{T_0}\right)^{-1} = \left(\frac{T}{T_0}\right)^{g/(LR)-1}.$$

The exponent arithmetic is the whole story: the $-1$ is the ideal gas law's temperature division. Substituting $T/T_0 = 1 - Lh/T_0$ gives the displayed form:

$$\rho = \rho_0\left(1 - \frac{Lh}{T_0}\right)^{4.2559}.$$

Route 2 — integrate directly. For completeness, one can eliminate $P$ instead of $\rho$ at the start. From $P = \rho RT$, $dP = R(T\,d\rho + \rho\,dT)$; substituting into hydrostatic balance $dP = -\rho g\,dh$ and using $dT = -L\,dh$ yields, after separating variables,

$$\frac{d\rho}{\rho} = \left(\frac{g}{LR} - 1\right)\frac{dT}{T},$$

which integrates immediately to the same power law. The $-1$ appears here as a term in the differential rather than as exponent arithmetic — the same physics wearing different clothes.

Consistency check on the exponent. The registry writes $4.256$; the exact value is $g/(LR) - 1 = 5.2559 - 1 = 4.2559$. The implementation's ISA Pressure uses $5.256$, so its implied density exponent is $5.256 - 1 = 4.256$ — the displayed equation and the code agree exactly.

Dimensional check. $$\frac{P_0}{R T_0} = \frac{\text{Pa}}{\text{J}/(\text{kg}\cdot\text{K}) \times \text{K}} = \frac{\text{N}/\text{m}^2}{\text{J}/\text{kg}} = \frac{\text{N}/\text{m}^2}{\text{N}\cdot\text{m}/\text{kg}} = \frac{\text{kg}}{\text{m}^3}. \checkmark$$ The bracketed term is dimensionless (a temperature ratio), so $\rho$ carries $\text{kg}/\text{m}^3$.

History and Development

Related Concepts: ISA Pressure, ISA Temperature, Density Altitude, Pressure Altitude, Geopotential Altitude, Dynamic Pressure, Lift Force, Drag Force, Reynolds Number Atm, Ideal Gas Kinetic Theory

Notes: Only $h$ is an input; all constants hard-coded. Displayed closed form is troposphere only, but the implementation computes $\rho = P/(RT)$ from ISA Pressure/ISA Temperature and so also handles the isothermal branch above 11 km — the code is more general than the equation shown. Leading constant $101325/(287.05 \times 288.15) = 1.225\ \text{kg}/\text{m}^3 = \rho_0$. Exponent $4.256 = g/(LR) - 1$, the $-1$ coming from the ideal gas law's temperature division. Requires geopotential altitude.

← Back to the workspace  ·  All help pages  ·  Getting started