Case Study: Auditing the International Space Station's Life-Support System
"The station is the only place off Earth where humans have lived continuously for more than two decades — and it stays alive one recycled liter at a time."
Executive Summary
The International Space Station is humanity's longest-running experiment in keeping people alive off the planet, and it is the ideal specimen for this chapter because it is partly closed-loop: it recycles most of its water and about half of its oxygen, yet still leans on regular resupply from Earth. In this case study we audit the station as an engineer would — start from the crew's raw daily demand, compute what a pure open-loop architecture would cost in resupply mass, then credit the real regenerative systems and see how much they save. We will find that recycling cuts the station's consumables resupply roughly in half, and we will see precisely why it is only half and not more. The numbers here are rounded planning figures (Tier 2), chosen so the arithmetic is legible while staying true to the real system's behavior.
Skills applied
- Tallying crew consumables from per-person-day figures (§28.1).
- Building an open-loop resupply mass and using it as a baseline (§28.1–28.2).
- Crediting water recovery and oxygen regeneration, and quantifying the loop closure (§28.2).
- Explaining the hydrogen bottleneck that caps oxygen recovery near $50\%$ (§28.2).
Background
The ISS typically hosts a crew of six, at a sea-level-like atmosphere ($\approx 101\ \text{kPa}$, $21\%$ oxygen). Its US-segment regenerative hardware includes a Water Recovery System (distilling urine and reclaiming humidity condensate) and an Oxygen Generation System (electrolyzing water), paired with a CO$_2$ scrubber and, at times, a Sabatier reactor that recovers water from exhaled carbon dioxide. We audit a $180$-day increment for that crew of six, using the chapter's per-crew-day figures: oxygen $0.84\ \text{kg}$, potable water $2.5\ \text{kg}$, food $1.8\ \text{kg}$.
We will treat three regenerative performance numbers as the audit's assumptions (Tier 2, representative of the flown system): water recovery $\approx 90\%$, oxygen recovery $\approx 50\%$, and food recovery $0\%$ (no food is grown). Our question: how much resupply mass does regeneration save over the increment?
Phase 1: The crew's raw daily demand
First, the person-days: $6\ \text{crew} \times 180\ \text{days} = 1{,}080\ \text{crew-days}$. Multiply by each commodity rate:
| Commodity | Rate (kg/crew-day) | Increment demand (kg) |
|---|---|---|
| Oxygen | $0.84$ | $1{,}080 \times 0.84 = 907$ |
| Potable water | $2.5$ | $1{,}080 \times 2.5 = 2{,}700$ |
| Food | $1.8$ | $1{,}080 \times 1.8 = 1{,}944$ |
| Total supplied | $5.14$ | $\mathbf{5{,}551}$ |
So the crew consumes about $5.55\ \text{t}$ of oxygen, water, and food over six months. In an open-loop station, every one of those kilograms would have to be launched. That is the baseline we now try to beat.
Phase 2: The open-loop counterfactual
Imagine an ISS with no recycling — an orbital Apollo, carrying and dumping everything. Its consumables resupply for the increment is exactly the Phase 1 total:
$$ M_{\text{open}} = 5{,}551\ \text{kg} \approx 5.55\ \text{t}. $$
🔧 Engineering Reality: Even this is optimistic, because our $2.5\ \text{kg}$ of water is drinking and food-prep water only. The real station also uses water for hygiene, which would push open-loop water — and therefore the total — substantially higher. That is the first hint of where recycling earns its keep: the biggest, heaviest commodity (water) is also the most recoverable.
Phase 3: Credit the water loop
Water recovery is the station's highest-payoff loop precisely because water is its heaviest commodity. At $90\%$ recovery, only $10\%$ of the potable water must be resupplied as makeup:
$$ M_{\text{water,makeup}} = (1 - 0.90) \times 2{,}700 = 0.10 \times 2{,}700 = 270\ \text{kg}, $$
a saving of $2{,}700 - 270 = 2{,}430\ \text{kg}$ over the increment. In one stroke, closing the water loop removes nearly two and a half tonnes of resupply — more than the entire food budget. This is why, of all the loops, water is the one every serious long-duration vehicle closes first.
Phase 4: Credit the oxygen loop — and find its ceiling
Oxygen regeneration is subtler, because it is chained to water and to hydrogen. The Oxygen Generation System electrolyzes reclaimed water, $2\,\text{H}_2\text{O} \rightarrow 2\,\text{H}_2 + \text{O}_2$, and the Sabatier reactor, $\text{CO}_2 + 4\,\text{H}_2 \rightarrow \text{CH}_4 + 2\,\text{H}_2\text{O}$, feeds recovered water back. Crediting $50\%$ oxygen recovery, the makeup oxygen is
$$ M_{\text{O}_2,\text{makeup}} = (1 - 0.50) \times 907 = 0.50 \times 907 = 454\ \text{kg}, $$
a saving of $454\ \text{kg}$. But why only $50\%$? Because the loop is starved of hydrogen. Electrolysis produces about two H$_2$ molecules for every O$_2$ it hands the crew; the crew exhales about one CO$_2$ per O$_2$ consumed; and the Sabatier reaction demands four H$_2$ per CO$_2$. With only half the hydrogen it needs, the reactor can reclaim the oxygen from only half the carbon dioxide — the other half is vented, its oxygen lost. The hydrogen that escapes, chemically bound inside the vented methane, is the leak that caps the loop.
💡 Intuition: Follow the hydrogen and the whole "$50\%$" mystery dissolves. Every water molecule you electrolyze splits into oxygen (which you keep for the crew) and hydrogen (which you would like to use to claw oxygen back out of CO$_2$). But you only get two hydrogens per oxygen, and pulling one oxygen out of one CO$_2$ costs four. You are permanently short by half. Close that gap — recover the hydrogen from the methane — and you would close the oxygen loop; that is exactly what the carbon-fouling Bosch reaction does, at a price the station chose not to pay.
Phase 5: The net resupply, and the verdict
Sum the closed-loop resupply — full food (unrecycled), plus the two makeup streams:
| Commodity | Closed-loop resupply (kg) |
|---|---|
| Food (0% recovered) | $1{,}944$ |
| Water makeup (10%) | $270$ |
| Oxygen makeup (50%) | $454$ |
| Total | $\mathbf{2{,}668}$ |
$$ M_{\text{closed}} \approx 2{,}668\ \text{kg} \approx 2.67\ \text{t}, \qquad \text{saving} = 5{,}551 - 2{,}668 = 2{,}884\ \text{kg} \approx 2.88\ \text{t}. $$
Regeneration cuts the six-month consumables resupply roughly in half, from $5.55\ \text{t}$ to $2.67\ \text{t}$. We can reproduce the whole audit in a few lines:
def audit(crew, days, o2=0.84, water=2.5, food=1.8, w_rec=0.90, o2_rec=0.50):
pd = crew * days # person-days
open_total = pd * (o2 + water + food)
closed = pd*food + (1-w_rec)*pd*water + (1-o2_rec)*pd*o2
return open_total, closed, open_total - closed
o, c, s = audit(6, 180)
print(f"open-loop resupply: {o:.0f} kg")
print(f"closed-loop resupply: {c:.0f} kg")
print(f"saving: {s:.0f} kg")
# Expected output:
# open-loop resupply: 5551 kg
# closed-loop resupply: 2668 kg
# saving: 2884 kg
Sanity check. A single cargo ship (Cargo Dragon, Progress, Cygnus) delivers on the order of $2$–$3\ \text{t}$ of pressurized cargo. Our $2.67\ \text{t}$ of six-month consumables is therefore about one resupply flight's worth — which matches the station's real cadence of a handful of cargo flights per year carrying consumables plus spares, experiments, and hardware. The audit lands in the right ballpark.
The verdict is the chapter's thesis in miniature: in low Earth orbit, where a cargo ship is only hours away, the station recycles what is easy and heavy (water) and chained but partial (oxygen), and simply ships up what is hard (food) and the makeup for imperfect closure. It does not close the loop completely because in LEO it does not have to — resupply is cheap. Push the same crew toward Mars, where resupply is impossible, and every one of these loops is forced tighter. That is the design problem of the second case study.
Discussion Questions
- Water recovery saved more mass ($2{,}430\ \text{kg}$) than the entire food budget ($1{,}944\ \text{kg}$). Explain why water is the loop to close first, in terms of both its per-day mass and its recoverability.
- The oxygen loop is "chained" to the water loop. Trace the chain: what must happen to reclaimed water before it can become breathable oxygen, and where does the hydrogen go?
- If a future upgrade recovered hydrogen from the vented methane (approaching the Bosch limit) and pushed oxygen recovery to $90\%$, recompute the closed-loop resupply. Which commodity now dominates?
- Our audit ignored hygiene water. Qualitatively, how would including it change the relative value of the water loop versus the oxygen loop?
Your Turn: Extensions
- Option A (analysis). Redo the audit for a crew of $7$ over a full year ($365$ days). Does the fractional saving from recycling change, or only the absolute numbers? Explain why.
- Option B (computation). Extend the
auditfunction to accept hygiene water as a separate, $90\%$-recoverable stream (say $3\ \text{kg}$ per crew-day). Recompute the saving and comment on how much the water loop's value grew. (Do not run it — hand-trace and add# Expected output:.) - Option C (design). The station keeps a stock of single-use lithium-hydroxide canisters as a backup CO$_2$ scrubber. Explain why an open-loop backup makes sense even on a mostly closed-loop vehicle, and estimate the LiOH mass to scrub a crew of six for a $7$-day contingency (the reaction $2\,\text{LiOH} + \text{CO}_2 \rightarrow \text{Li}_2\text{CO}_3 + \text{H}_2\text{O}$ absorbs about $0.9\ \text{kg}$ of CO$_2$ per kilogram of LiOH).
Key Takeaways
- Start every life-support audit from the crew's raw daily demand, then credit each loop. For a crew of six over six months, the raw demand is about $5.55\ \text{t}$ of oxygen, water, and food.
- Water is the loop to close first — it is the heaviest commodity and the most recoverable; closing it at $90\%$ saved more mass than the entire food budget.
- Oxygen recovery is hydrogen-limited to about $50\%$ with Sabatier, because electrolysis supplies only half the hydrogen the reaction needs; the rest leaves as vented methane.
- The ISS recycles what is worth recycling in LEO and ships up the rest, cutting six-month consumables resupply roughly in half — a deliberate, distance-driven choice that a Mars mission cannot afford to make the same way.