CRS-34 Docks at Harmony: The Quiet Topology of a 25-Year Building
SpaceX CRS-34 docked at the ISS on May 17 with 6,500 lbs of science. The real lesson for architects: draw your project's real dependency graph this week.
At 6:37 a.m. EDT on Sunday, the SpaceX Dragon for the 34th Commercial Resupply Services mission docked autonomously to the forward port of the International Space Station’s Harmony module, two days after lifting off from Space Launch Complex 40 at Cape Canaveral. Nearly 6,500 pounds of cargo for the Expedition 74 crew rode up on a Falcon 9. NASA’s blog and Space.com both flagged the weather delay on the 14th and the clean window on the 15th. Routine. That is the point.
←TODAY: CRS-34 lands 6,500 lbs of science at the only continuously-occupied building humans have ever run for 25 straight years.
→3012: The ISS will deorbit before 2031. Its real legacy is not the truss; it is the dependency graph we learned to draw.
Fulcrum: Resilience is a topology problem, not a redundancy problem — you cannot harden what you have not yet mapped.
Read CRS-34 as a system diagram, not a press release. The graph has maybe forty nodes: a launch site, one pad, one rocket family, one capsule family, one autonomous docking software stack, one set of ISS forward and zenith ports, one Expedition crew, one Pacific recovery zone. Each edge is a contract, a vendor, a control loop. Any single node fails, the building still eats — Cygnus, Soyuz Progress, HTV-X are the redundant edges in the graph — but the cost of a missing edge is measurable in days of crew rationing and bone-loss data lost. NASA has spent two decades quietly turning this graph into a textbook. Twenty-five years of continuous occupation is what it looks like when you treat your dependency map as a living document instead of an org chart.
The payloads riding up are themselves a small atlas of fragility: a bone scaffold milled from wood for osteoporosis treatment, red-blood-cell and spleen response in microgravity, an instrument for the charged particles that fry power grids and satellites, a sunlight-reflection radiometer for climate calibration. Every experiment exists because gravity on Earth is the single point of failure for that science — the payload is the architect’s diagram of what only works when the dependency is removed.
Atelier: The PAZ Atelier-Code studios run a recurring exercise we call “draw the real graph.” Take a built project — your own, ideally — and forget the floor plan. Map instead what fails when one thing fails: this chiller, this MEP riser, this fire-pump controller, this single Bauleitung WhatsApp group. The drawing that comes out is almost never the BIM model. It is closer to the ISS dependency map than to anything an Archicad LOD-400 export will give you. That is the gap PAZ teaches our cohorts to close before they ship a building into operations.
Hack: This Hack teaches you to surface the single points of failure in any project in five lines of Python. Treat your project as a graph of components and their dependencies; the node with the highest betweenness centrality is the one whose failure cascades furthest through the system. Run it on your next BEP scope or your studio Grasshopper definition and you will find at least one node you did not know was load-bearing.
import networkx as nx
G = nx.DiGraph()
G.add_edges_from([("structure","foundation"),("hvac","switchgear"),("lighting","switchgear"),("foundation","soil_survey"),("switchgear","grid_tap")])
spof = max(nx.betweenness_centrality(G).items(), key=lambda kv: kv[1])
print("Single point of failure:", spof)
I am writing to you from a vantage where we did not run out of compute, fiber, or Dragons. We ran out of intact cooling, intact bandwidth, and intact people who remembered how the old system worked. The CRS-34 lesson is not that resupply is solved — it is that resupply was treated as a topology problem first and a procurement problem second. Draw your real graph this week. Find the third single point you did not know you had. That exercise is the whole point.
Source: NASA Breaking News
SOURCE · ↗