Case Study: Designing a New Launcher's Max-Q and Fairing Strategy
"You do not get to choose the atmosphere. You only get to choose how you fly through it."
Executive Summary
In the first case study we reverse-engineered an existing rocket's max-Q. Here we do the harder thing: we design the ascent aerodynamics of a clean-sheet vehicle. Given a new medium launcher with a hard structural limit on dynamic pressure and a payload with a hard limit on heating, we will (1) predict the max-Q the vehicle would hit at full thrust, (2) design a throttle-down — in fact a constant-dynamic-pressure "q-hold" — that keeps the load under the structural limit, (3) size the fairing jettison altitude from the payload's heating limit, and (4) roll the results into an ascent-loads specification with an honest delta-v penalty. This is exactly the analysis a launch-vehicle team runs to shape a trajectory, and the one you will run in spirit for your own mission's MDR.
Skills applied
- Inverting $q = \tfrac12\rho v^2$ to find the maximum allowable speed at each altitude (§5.2).
- Designing a constant-$q$ throttle profile against a structural limit (§5.2, §5.6).
- Using the heating scaling $\dot q \propto \rho v^3$ to set a fairing jettison altitude (§5.4, §5.5).
- Trading a delta-v penalty against structural mass (§5.6; themes #2 and #4).
- Sanity-checking every number and flagging where the simple atmosphere model is weakest.
Background
The clean-sheet vehicle and its two hard limits
| Quantity | Value | Role |
|---|---|---|
| Body diameter | $3.5\ \text{m}$ | frontal area $A = \pi(1.75)^2 = 9.62\ \text{m}^2$ |
| Mass near max-Q | $\approx 200\ \text{t}$ | it is a medium launcher, lighter than Falcon 9 |
| Drag coefficient (transonic) | $C_d \approx 0.5$ | for load/deceleration estimates |
| Structural limit | $q_{\text{lim}} = 35\ \text{kPa}$ | the airframe is qualified to no more |
| Payload heating limit | jettison when $\dot q_{\text{fm}} < 1{,}135\ \text{W/m}^2$ | free-molecular heat flux on the bare payload |
| Atmosphere | $\rho_0 = 1.225\ \text{kg/m}^3$, $H = 8\ \text{km}$ | exponential model |
Everything below is a Tier 3 design exercise: the vehicle is invented, the numbers are round and plausible, and the atmosphere is the simple exponential. The method is what transfers to a real vehicle.
Phase 1: Predict the un-throttled max-Q
First we ask what the vehicle would do at full thrust, with no aerodynamic mercy. A plausible full-thrust profile through the dense air, and its dynamic pressure $q = \tfrac12\rho v^2$ with $\rho = 1.225\, e^{-h/8000}$:
| $h$ | $\rho$ (kg/m³) | full-thrust $v$ (m/s) | $q$ (kPa) |
|---|---|---|---|
| $8\ \text{km}$ | $0.451$ | $370$ | $30.9$ |
| $10\ \text{km}$ | $0.351$ | $460$ | $37.1$ |
| $12\ \text{km}$ | $0.273$ | $550$ | $41.3$ |
| $14\ \text{km}$ | $0.213$ | $640$ | $43.6$ |
| $16\ \text{km}$ | $0.166$ | $720$ | $43.0$ |
The un-throttled peak is $\approx 43.6\ \text{kPa}$ near $14\ \text{km}$ — well over the $35\ \text{kPa}$ structural limit. Flown this way, the vehicle would be torn apart at max-Q. We must intervene.
Phase 2: The design decision — throttle, don't reinforce
There are two ways to survive $43.6\ \text{kPa}$: build the airframe strong enough to take it, or fly so as never to reach it. The rocket equation decides for us. Reinforcing the structure adds mass, and (Chapter 3) mass carried toward orbit is punished exponentially; strengthening the whole airframe from $35$ to $44\ \text{kPa}$ would cost payload all the way up. Throttling costs only a few seconds of gentler acceleration — a small gravity-loss penalty paid once. This is theme #4 (mass is the enemy) meeting theme
2 (the unforgiving environment): we fly around the load rather than build for it. So we design a
throttle profile.
Phase 3: Design a constant-q throttle profile
The elegant target is a q-hold: throttle so the vehicle rides right at the $35\ \text{kPa}$ limit through the dangerous band, never exceeding it but not wastefully under it either. At each altitude, the maximum allowable speed follows from inverting $q = \tfrac12\rho v^2$ at $q = q_{\text{lim}}$:
$$ v_{\text{cap}}(h) = \sqrt{\frac{2\,q_{\text{lim}}}{\rho(h)}} = \sqrt{\frac{2\,q_{\text{lim}}}{\rho_0\,e^{-h/H}}}. $$
Computing the cap at each altitude:
| $h$ | $\rho$ (kg/m³) | $v_{\text{cap}} = \sqrt{2q_{\text{lim}}/\rho}$ | full-thrust $v$ | throttle needed? |
|---|---|---|---|---|
| $8\ \text{km}$ | $0.451$ | $394\ \text{m/s}$ | $370$ | no ($370 < 394$) |
| $10\ \text{km}$ | $0.351$ | $447\ \text{m/s}$ | $460$ | yes — cap to $447$ |
| $12\ \text{km}$ | $0.273$ | $506\ \text{m/s}$ | $550$ | yes — cap to $506$ |
| $14\ \text{km}$ | $0.213$ | $573\ \text{m/s}$ | $640$ | yes — cap to $573$ |
| $16\ \text{km}$ | $0.166$ | $650\ \text{m/s}$ | $720$ | yes — cap to $650$ |
By construction, flying at $v_{\text{cap}}$ gives $q = \tfrac12\rho\,(2q_{\text{lim}}/\rho) = q_{\text{lim}} = 35\ \text{kPa}$ *exactly* at every altitude — a flat-topped, constant-$q$ ascent that never exceeds the limit. The throttle-down begins just below $10\ \text{km}$ (where the full-thrust speed first reaches the cap) and releases above $16\ \text{km}$ (where the thinning air drops $q$ below the limit on its own, and full thrust resumes).
import math
RHO0, H, Q_LIM = 1.225, 8000.0, 35000.0 # SI units
def v_cap(h):
"""Max speed (m/s) at altitude h (m) that keeps q at the structural limit."""
rho = RHO0 * math.exp(-h / H)
return math.sqrt(2 * Q_LIM / rho)
for h in (10000, 12000, 14000, 16000):
print(f"{h/1000:.0f} km: v_cap = {v_cap(h):.0f} m/s")
# Expected output:
# 10 km: v_cap = 447 m/s
# 12 km: v_cap = 506 m/s
# 14 km: v_cap = 573 m/s
# 16 km: v_cap = 650 m/s
Phase 4: Size the fairing jettison altitude
The payload cannot be exposed until the heating is gentle enough. We model the free-molecular heat flux on the bare payload as the incident kinetic-energy flux $\dot q_{\text{fm}} \approx \tfrac12\rho v^3$ (the accommodation factor is absorbed into the threshold; Tier 3), and jettison once it falls below $1{,}135\ \text{W/m}^2$. Continuing the ascent to high altitude with a plausible speed profile:
| $h$ | $\rho = \rho_0 e^{-h/H}$ (kg/m³) | $v$ (m/s) | $\dot q_{\text{fm}} = \tfrac12\rho v^3$ (W/m²) | above threshold? |
|---|---|---|---|---|
| $100\ \text{km}$ | $4.6\times10^{-6}$ | $2{,}500$ | $\approx 35{,}700$ | yes — keep fairing |
| $120\ \text{km}$ | $3.8\times10^{-7}$ | $3{,}100$ | $\approx 5{,}600$ | yes — keep fairing |
| $140\ \text{km}$ | $3.1\times10^{-8}$ | $3{,}600$ | $\approx 720$ | no — jettison |
Even though the vehicle is now faster than ever ($v^3$ is rising), the exponential collapse of $\rho$ utterly dominates, and the heating plunges by orders of magnitude over a few tens of kilometers. Jettison becomes safe around $140\ \text{km}$. That is the payoff of §5.5: on the way up, you are fast only where the air is nearly gone, so heating — which needs both speed and density — falls off a cliff.
🔧 Engineering Reality: The single-scale-height exponential over-estimates density above $\sim 100\ \text{km}$ (the real thermosphere is more complex and, for a given altitude, thinner), so a high-fidelity model would likely allow jettison a bit lower — real launchers typically drop the fairing around $110$–$140\ \text{km}$. Our estimate lands at the top of that band, which is the right order of magnitude and, importantly, errs conservative (jettisoning later than necessary is safe for the payload, just slightly costly in mass). This is exactly the kind of place to flag the model's weakness rather than trust the third significant figure.
Phase 5: The ascent-loads spec and the delta-v penalty
Roll it all up into the specification the rest of the design must respect:
| Item | Design value | Drives |
|---|---|---|
| Max-Q (with q-hold) | $35\ \text{kPa}$ | airframe & fairing structural qualification |
| Throttle band | $\sim 10$–$16\ \text{km}$ | engine throttle range, guidance profile |
| Peak $q\alpha$ (allowable) | hold $\alpha \approx 0$; gust budget set by structure | flight-control gains, day-of-launch wind biasing |
| Fairing jettison | $\approx 140\ \text{km}$ ($\dot q_{\text{fm}} < 1{,}135\ \text{W/m}^2$) | fairing mass carried, payload exposure |
| Acoustic/buffeting | transonic broadband spectrum | payload vibration qualification |
The delta-v penalty. At the top of the throttle band ($16\ \text{km}$) the throttled vehicle is doing $650\ \text{m/s}$ versus the full-thrust $720\ \text{m/s}$ — a velocity deficit of about $70\ \text{m/s}$ at that instant. Much of that is recovered when the engines throttle back up (the propellant not burned during the throttle-down is still aboard and gets burned later). The net cost is the extra gravity loss from having climbed a little more slowly through those seconds — on the order of a few tens of m/s of delta-v (a rough estimate; the exact figure needs a trajectory integration). Weigh that against the alternative: qualifying the entire airframe to $44\ \text{kPa}$ instead of $35$, whose added structural mass the rocket equation would tax on every kilometer to orbit. A few tens of m/s of delta-v is a bargain for a lighter, safer vehicle — which is why essentially every launcher on Earth chooses the throttle.
🔗 Connection: This ascent-loads spec is the interface between the launch vehicle and everything it carries. The $35\ \text{kPa}$ and its $q\alpha$ budget become load cases for the structures analysis of Chapter 23; the acoustic spectrum sets the payload's vibration qualification; and the whole spec is what you check against a real rocket's published user's guide when you select a launch vehicle in Chapter 30.
Discussion Questions
- The q-hold flies at constant dynamic pressure through the throttle band. Why is that (rather than, say, throttling to a fixed lower thrust) an efficient way to respect the structural limit while wasting the least performance?
- The fairing heating dropped from $35{,}700$ to $720\ \text{W/m}^2$ between $100$ and $140\ \text{km}$ even as speed rose. Quantify how much of that drop is due to $\rho$ versus $v^3$, and explain which wins.
- Suppose the payload's heating limit were ten times stricter ($113\ \text{W/m}^2$). Roughly how much higher would the jettison altitude have to be, and what does that cost in fairing mass carried?
- If the airframe were requalified to $40\ \text{kPa}$, how would the throttle band and the delta-v penalty change? Argue qualitatively before estimating.
Your Turn: Extensions
- Option A (design). Redo Phase 3 for a structural limit of $30\ \text{kPa}$ (a lighter, cheaper airframe). Recompute the $v_{\text{cap}}$ table and describe how the throttle band widens. Does the delta-v penalty grow?
- Option B (computation). Write
jettison_altitude(profile, threshold)that scans a list of $(h, v)$ points and returns the first altitude where $\tfrac12\rho v^3 < \text{threshold}$. Reproduce the $\approx 140\ \text{km}$ result. (Do not run it — hand-trace and add# Expected output:.) - Option C (your mission). For your MDR's Ascent Loads note, adopt a max-Q design value and a fairing jettison condition, and state the one sentence of justification each (why that $q$-limit, why that heating threshold). Record them; Chapter 30 will test them against a real vehicle.
Key Takeaways
- You fly around the atmosphere, you don't build for it. Reinforcing the airframe to survive a higher max-Q costs exponential mass; throttling to cap $q$ costs only a small, one-time gravity-loss penalty.
- A q-hold is the clean design. Riding $v_{\text{cap}}(h) = \sqrt{2q_{\text{lim}}/\rho}$ keeps dynamic pressure exactly at the structural limit through the dangerous band — maximum climb for zero overshoot.
- Fairing jettison is set by heating, not pressure, and the exponential atmosphere makes the heating collapse over a few tens of km — so jettison happens high (here $\sim 140\ \text{km}$) and drops dead mass as early as the payload's heating limit allows.
- Every ascent-loads number is an interface requirement, feeding structures (Ch. 23), launch-vehicle selection (Ch. 30), and your MDR. Design them deliberately, and flag where the simple model is weakest.