Case Study: Designing a Lunar Cargo Lander Architecture
"A lander is a delta-v budget with legs."
Executive Summary
In the first case study we audited someone else's design. Here we do the harder thing: we design a mission from a bare objective. The objective is Track B of the Design Your Mission project — deliver one tonne of cargo to the surface of the Moon — and we will run it through the full funnel of §29.1: requirements, orbit, delta-v budget with margins, a sized vehicle, and the mass–power–cost coupling, and we will find the driving requirement. The delta-v is more than double the comsat's, so the rocket equation's amplifier bites far harder, and we will watch a one-tonne payload demand a nearly fifteen-tonne vehicle. This is exactly the calculation that opens every real lander program, and it teaches the lesson that no amount of subsystem cleverness can repeal: on a high-delta-v mission, the budget is the design.
Skills applied
- Flowing requirements down from an objective to a subsystem specification (§29.2).
- Building a margined delta-v budget for a multi-leg mission from the delta-v map (§29.3–29.4).
- Sizing a vehicle by inverting the rocket equation, and tracing the amplifier (§29.5).
- Identifying the driving requirement and testing the design's sensitivity to it (§29.2, §29.5).
Background
The objective and its requirements
"Deliver one tonne of cargo to the lunar surface" is a sentence. Flow it down (§29.2):
- Mission requirement. The system shall deliver ≥ 1,000 kg of cargo to the lunar surface and place it there intact (soft landing).
- Orbit / trajectory requirements. The vehicle shall depart low Earth orbit on a trans-lunar trajectory, shall insert into low lunar orbit, and shall perform a powered descent to the surface. (No return — this is a one-way cargo lander.)
- Constraint requirements. The vehicle shall fit a single existing launch vehicle to LEO; the landed cargo shall survive ≤ 5 g of descent deceleration; the design shall close with ≥ 10% delta-v margin at this concept stage.
The architecture decision
We take the launch vehicle to LEO as a given (Chapter 30 chooses it once we know the mass), so the lander's own propulsion must supply everything from LEO outward. From the delta-v map (Appendix G; Ch. 3, Ch. 10) the legs are trans-lunar injection, lunar-orbit insertion, and powered descent.
Phase 1: Build the delta-v budget with margins
| Leg | Ideal $\Delta v$ | Margin | Why this margin |
|---|---|---|---|
| LEO → trans-lunar injection (TLI) | 3,100 m/s | 5% | well-characterized burn |
| TLI → low lunar orbit (LOI) | 700 m/s | 10% | navigation-dependent capture |
| Powered descent to surface | 1,700 m/s | 15% | hover/divert reserve, landing-site retargeting |
The descent leg carries the most margin (§29.4): landing is the least forgiving maneuver, and a lander that runs out of propellant while hovering does not get a second try (theme 2 — space is unforgiving). Roll it up:
$$\Delta v_{\text{ideal}} = 3{,}100 + 700 + 1{,}700 = 5{,}500\ \text{m/s},$$ $$\Delta v_{\text{margined}} = 3{,}100(1.05) + 700(1.10) + 1{,}700(1.15) = 3{,}255 + 770 + 1{,}955 = 5{,}980\ \text{m/s}.$$
Sanity check: 5,980 m/s is about 8.7% above the ideal 5,500 — consistent with our "≥ 10% overall" intent once you weight the legs, and in the right ballpark for a lunar lander (roughly 5.5 km/s one-way is the textbook figure). Good.
Phase 2: Size the vehicle
Assume a storable bipropellant descent engine, $I_{sp} = 320\ \text{s}$ (Tier 3, illustrative), and a landed dry mass — lander structure, legs, tanks, avionics, plus the cargo — of
$$m_f = \underbrace{1{,}200\ \text{kg}}_{\text{lander dry}} + \underbrace{1{,}000\ \text{kg}}_{\text{cargo}} = 2{,}200\ \text{kg}.$$
Invert the rocket equation (size_vehicle, §29.5): $v_e = 320 \times 9.80665 = 3{,}138\ \text{m/s}$, so
the mass ratio is
$$\frac{m_0}{m_f} = e^{\Delta v/v_e} = e^{5980/3138} = e^{1.906} = 6.72.$$
Then the wet mass and propellant are
$$m_0 = 6.72 \times 2{,}200 = 14{,}791\ \text{kg}, \qquad m_p = 14{,}791 - 2{,}200 = 12{,}591\ \text{kg}.$$
import math
G0 = 9.80665
def size_vehicle(dv, isp, payload):
ve = isp * G0
m_wet = math.exp(dv / ve) * payload
return m_wet - payload, m_wet
m_prop, m_wet = size_vehicle(5980, 320, 2200)
print(f"mass ratio {m_wet/2200:.2f}, propellant {m_prop:.0f} kg, wet mass {m_wet:.0f} kg")
# Expected output:
# mass ratio 6.72, propellant 12591 kg, wet mass 14791 kg
A one-tonne payload has demanded a ~14.8-tonne lander. The payload is under 7% of the vehicle. That is not a design error; it is the rocket equation's verdict on a 6-km/s mission with a chemical engine.
Phase 3: Feel the amplifier
Compare this to the comsat of §29.5, whose mass ratio was 2.38. Here it is 6.72 — nearly three times larger — because the delta-v is more than double and the mass ratio is exponential in delta-v. The consequence for systems engineering is severe: every kilogram of dry mass now drags 6.72 kg of wet mass behind it. Add 100 kg of cargo and the vehicle grows by $6.72 \times 100 = 672\ \text{kg}$:
$$m_0' = 6.72 \times 2{,}300 = 15{,}463\ \text{kg} \quad (+672\ \text{kg for } +100\ \text{kg cargo}).$$
On the comsat the amplifier was 2.38; here it is 6.72. This is why lander programs are so unforgiving of mass growth, and why the descent stage's structural mass fraction is fought over more fiercely than almost any number in spaceflight. The amplifier is the driving requirement's lever, and on a lander it is long.
🔗 Connection: Notice that a higher-$I_{sp}$ engine would shorten the lever dramatically, just as it did for the comsat. A LOX/hydrogen descent stage at $I_{sp} \approx 450\ \text{s}$ gives $v_e = 4{,}414$ m/s and mass ratio $e^{5980/4414} = 3.90$ — cutting the wet mass from ~14.8 t to $3.90 \times 2{,}200 = 8{,}580\ \text{kg}$. That is why the Apollo Lunar Module's descent stage, and most modern landers, reach for the highest-$I_{sp}$ propellant the mission can tolerate. (Hydrogen's penalty — bulk and boil-off, Ch. 18, 24 — is why storable propellants are still chosen when the coast to the Moon is long.)
Phase 4: The mass–power–cost coupling and the launch vehicle
The 14.8-tonne wet mass is the number the whole mission now turns on. It must be lifted to LEO by a launch vehicle (Chapter 30), and 14.8 t to LEO is a heavy-lift class requirement — far more than the comsat's launch. Trace the coupling (§29.5): the descent delta-v set the mass ratio, which set the propellant, which set the wet mass, which set the launch vehicle class, which dominates the cost. Unlike the comsat, where power and array mass were significant players in the loop, here the delta-v leg so dominates that the lander is, to first order, a set of tanks with legs and a payload bolted on. The systems-engineering character of the mission is set by which leg of the coupling is largest — and for a lander, it is propellant.
🔧 Engineering Reality: Real landers stage to beat this amplifier, exactly as launch vehicles do (Ch. 3, Ch. 22). Apollo's Lunar Module left its descent stage on the surface so the ascent engine did not have to lift empty descent tanks back to orbit. A cargo lander with no return needs no ascent stage, but it may still separate a trans-lunar/insertion stage before descent, so the descent engine does not haul spent TLI/LOI tanks down to the surface. Folding staging into this design would lower the wet mass below our single-stage 14.8 t — a worthwhile Phase-2 iteration, and a reminder that "size it as one stage" is a first estimate, not a final architecture.
Phase 5: Identify the driving requirement
Test the sensitivities. Three requirements could plausibly drive this design:
- Landed cargo mass (1,000 kg). Through the 6.72 amplifier, every kilogram here costs 6.72 kg of vehicle. Highly sensitive.
- Descent delta-v (1,700 m/s + 15% margin). It sits in the exponent; trimming the descent reserve or the landing-site flexibility would lower the mass ratio directly. Highly sensitive.
- Choice of propellant ($I_{sp}$). Phase 3 showed hydrogen nearly halves the wet mass. Highly sensitive — but constrained by the coast time.
The driving requirement is the total delta-v budget, and within it the descent leg, because it is the input the exponential amplifier is most sensitive to and the one that pushes the vehicle into a costly launch class. A program manager should interrogate that leg hardest: does the mission truly need 1,700 m/s of descent capability with 15% margin, or would a more benign landing site and a tighter reserve let the whole vehicle — and its launch vehicle — shrink a class? On a lander, negotiating the delta-v budget is worth more than optimizing any subsystem, because the budget is the design.
Discussion Questions
- The comsat's amplifier was 2.38 and the lander's is 6.72. Explain why the same 100 kg of payload costs so much more vehicle mass on the lander, referring to where delta-v sits in the rocket equation.
- Phase 3 showed hydrogen cuts the wet mass to ~8.6 t. Why, then, do many landers still use storable propellants? (Consider Chapters 18 and 24.)
- The descent leg carried the largest margin. Justify that choice in terms of theme 2 (space is unforgiving) and the consequence of running out of propellant while hovering.
- Would staging (Phase 4's engineering-reality note) help more on this lander or on the §29.5 comsat? Reason from each mission's delta-v.
Your Turn: Extensions
- Option A (design). Re-size the lander with a LOX/hydrogen stage ($I_{sp} = 450\ \text{s}$) and confirm the ~8.6 t wet mass by hand. Then decide, given a 4-day trans-lunar coast, whether the mass saving is worth the boil-off risk. Record your decision and its reasoning in your MDR.
- Option B (computation). Turn the single-stage sizing into a two-stage design: a TLI/LOI stage
(delivering 3,800 m/s) that is discarded before descent, and a descent stage (delivering 2,180 m/s with
margin). Size from the payload up and compare the total wet mass to the 14.8 t single-stage number. (Do
not run it; hand-trace and add
# Expected output:.) - Option C (your mission). Whatever your track, build your full delta-v budget with per-leg margins,
size your vehicle with
size_vehicle, compute your amplifier (the mass ratio), and name your driving requirement. This is your MDR's core, and Chapter 40 will ask you to defend it.
Key Takeaways
- On a high-delta-v mission, the budget is the design. A 6-km/s lander is, to first order, tanks with legs; the delta-v leg dominates the mass–power–cost coupling.
- The amplifier grows exponentially with delta-v. The lander's mass ratio (6.72) dwarfs the comsat's (2.38), so mass growth is far more punishing — every dry kilogram drags 6.72 wet kilograms.
- Higher $I_{sp}$ shortens the lever. Switching descent propellant to hydrogen nearly halves the wet mass — the most powerful single lever, bounded only by the mission's tolerance for a cryogenic coast.
- Negotiate the driving requirement before optimizing subsystems. Trimming the descent delta-v or its margin moves the whole vehicle — and its launch class — more than any subsystem optimization can.