Chapter 5 — Key Takeaways (Aerodynamics of Ascent)

A one-page reference. Reread this before an exam, or before you set a vehicle's max-Q or fairing strategy.

The equations that matter

Equation Use it to find Notes
$\rho(h) = \rho_0\, e^{-h/H}$ air density at altitude $h$ $\rho_0 = 1.225\ \text{kg/m}^3$, $H \approx 8\ \text{km}$; density $\div e$ per scale height
$q = \tfrac12\rho v^2$ dynamic pressure (Pa) the scale of every aerodynamic force; kinetic energy per unit volume of the airflow
$v_{\text{maxQ}} = \sqrt{2aH}$ speed at max-Q $a$ = net acceleration; independent of vehicle size/mass
$D = q\,C_d\,A$ drag force (N) $L = q\,C_l\,A$ for lift; keep $\alpha \approx 0$ so $L$, side loads stay near zero
$\beta = m/(C_d A)$ ballistic coefficient (kg/m²) deceleration $= q/\beta$; big $\beta$ → weak deceleration
$T_0 = T_\infty\!\left(1 + \tfrac{\gamma-1}{2}M^2\right)$ stagnation temperature $\gamma = 1.4$ (air); temperature $\neq$ heat load
$\dot q \propto \sqrt{\rho}\,v^3$ convective heat-flux scaling ascent heating $\ll$ re-entry: fast only where air is thin
$q\alpha$ lateral bending load metric flight control nulls $\alpha$ hardest at max-Q

What every symbol means (and its units)

Symbol Name Units Notes
$\rho$ air density kg/m³ $1.225$ at sea level; exponential decay with altitude
$H$ scale height m (or km) $\approx 8\ \text{km}$; $= R_{\text{air}}T/g$, so warmer air → larger $H$
$q$ dynamic pressure Pa $\tfrac12\rho v^2$; do not confuse with heat flux $\dot q$
$v$ speed relative to air m/s drives $q$ as $v^2$
$C_d, C_l$ drag, lift coefficient shape/flow-regime factors; $C_d$ spikes transonically
$A$ reference (frontal) area $\pi r^2$ for a round body
$\beta$ ballistic coefficient kg/m² $m/(C_d A)$; "aerodynamic heaviness"
$\alpha$ angle of attack deg or rad nose vs. velocity; held near $0$ on ascent
$M$ Mach number $v / a_{\text{sound}}$; $a_{\text{sound}}\approx 295\ \text{m/s}$ near tropopause
$\gamma$ ratio of specific heats $1.4$ for air (here, not flight-path angle)

Max-Q at a glance

Feature Typical value (orbital launcher)
Peak dynamic pressure $q_{\max}$ $30$–$35\ \text{kPa}$ (Falcon 9); $\approx \tfrac13$ of sea-level pressure
Altitude of max-Q $\sim 10$–$14\ \text{km}$
Speed / Mach at max-Q $\sim 450$–$600\ \text{m/s}$, Mach $1.5$–$2$
Time after lift-off $\sim 60$–$90\ \text{s}$
Drag force at max-Q (F9-class) $\sim 175\ \text{kN}$ (but decel only $\sim 0.5\ \text{m/s}^2$)

Why the peak is in the middle: $q = \tfrac12\rho v^2$ — density falls exponentially while speed² rises; their product maxes between the thick-but-slow bottom and the fast-but-empty top.

Decision aid — "which idea / when"

You want… Use
density at altitude $\rho = \rho_0 e^{-h/H}$
the aerodynamic load scale $q = \tfrac12\rho v^2$
where max-Q occurs tabulate $q$ along the profile, or $v_{\text{maxQ}}=\sqrt{2aH}$
the drag force / deceleration $D = qC_dA$; $D/m = q/\beta$
max allowable speed at a $q$-limit $v_{\text{cap}} = \sqrt{2q_{\text{lim}}/\rho}$ (constant-$q$ throttle)
whether the payload can be exposed jettison when $\dot q_{\text{fm}}\!\approx\!\tfrac12\rho v^3 < \sim\!1{,}135\ \text{W/m}^2$

Common pitfalls

Pitfall Reality
"Max-Q is at max speed." $q=\tfrac12\rho v^2$; near orbit $\rho\approx0$. Max-Q is low and slow (Mach $\sim 2$).
"Drag decelerates the rocket a lot." Force is huge, decel tiny ($q/\beta\sim0.5\ \text{m/s}^2$); drag loss $\sim0.1\ \text{km/s}$.
"Deceleration $=$ drag force." Divide by mass: $D/m$. Forgetting it gives absurd ($100\,g$) answers.
"Ascent needs a heat shield." Ascent heat flux $\ll$ re-entry ($\propto\sqrt{\rho}\,v^3$); mild protection only.
"Heating is friction." Dominantly compression at the stagnation region.
"Build it strong to ignore max-Q." Mass is the enemy — throttle down instead (cheap gravity-loss price).
Using angle of attack in degrees inside $C_N=C_{N\alpha}\alpha$. $C_{N\alpha}$ is per radian — convert $\alpha$ first.

Numbers worth memorizing

  • Sea-level density $\rho_0 \approx 1.225\ \text{kg/m}^3$; scale height $H \approx 8\ \text{km}$.
  • Max-Q $\approx 30$–$35\ \text{kPa}$, near Mach $1.5$–$2$ and $\sim 12\ \text{km}$, $\sim T+70\ \text{s}$.
  • Drag deceleration at max-Q $\sim 0.5\ \text{m/s}^2$ (a twentieth of $g$).
  • Fairing jettison $\sim 110$–$140\ \text{km}$ (heating $< \sim 1{,}135\ \text{W/m}^2$).
  • Ascent heating $\ll$ re-entry heating (roughly $(v_{\text{reentry}}/v_{\text{ascent}})^3 \sim 50$–$100\times$).

Mission / project additions this chapter

  • MDR: added an Ascent Loads & Environment note — max-Q, the $q\alpha$/lateral-load case, the acoustic/buffeting spectrum, and the fairing jettison condition. These become launch-vehicle interface requirements (feed Ch. 30) and structural load cases (feed Ch. 23).
  • Utility code: density(h), dynamic_pressure(h, v), find_max_q(profile), v_cap(h) — an ascent- aerodynamics helper (not a canonical astrotools module; this chapter is off the module schedule).