Reserve Inventory¶
Physical stockpile (artifact) — instantiates Safety Margin Design
Holds physical stock above expected consumption, with a reorder trigger, so supply delay or a demand surge can't run a critical item to a stockout that halts function.
Reserve Inventory is a standing physical stock held above forecast use, sized to the tail of demand and lead-time variability, and rebuilt by an explicit reorder trigger. The failure boundary is a stockout of something critical — the point at which the shelf hits zero during the one event that matters and a function simply stops. Its defining trait, distinct from live Capacity Headroom or a reserve of money, is that the margin is stuff on a shelf, sized not against average consumption but against the worst plausible burst over the longest plausible resupply, and it carries a replenishment trigger to restore itself after a draw.
Example¶
A hospital pharmacy stocks a rarely-used but life-saving reversal agent — say, an antivenin for a venomous-snake envenomation. Average use is a couple of vials a month, but the pattern is bursty: a cluster of cases can arrive in a single week, and the manufacturer's lead time swings unpredictably. A stockout during a mass-casualty event is the boundary the pharmacy cannot cross. So the reserve is sized not to the monthly average but to the worst plausible burst of cases stretched over the longest plausible resupply — the tail of the variation profile, not its mean. A reorder point sits above that reserve: when stock is drawn down to the trigger level, replenishment fires automatically to rebuild the cushion before the next event. When three cases hit in a weekend, the reserve covers them and the reorder restores it.
How it works¶
The distinguishing features:
- Sized to the variation tail — demand burstiness and lead-time swings, not the average draw; the reserve exists precisely for the case the mean ignores.
- Held as physical stock, positioned where the shortage would actually stop the work.
- Rebuilt by a reorder trigger — a reorder point fires replenishment when the stock falls, so a draw doesn't leave the reserve permanently depleted.
- Rotated where the item perishes, so the cushion is real product and not expired inventory.
Tuning parameters¶
- Service level — how deep into the demand/lead-time tail the reserve covers; higher protection means more capital and more spoilage risk.
- Reorder point and quantity — the level that triggers replenishment and how much refills; sets how fast the cushion rebuilds.
- Shelf-life rotation — rotation cadence for perishables, so held stock stays usable.
- Centralized vs. distributed — one pooled reserve is efficient; distributed stock is closer to the point of need but costs more in total.
When it helps, and when it misleads¶
It is the right tool for critical, hard-to-substitute items with variable supply and severe stockout consequences — a modest standing stock converts a catastrophic shortage into a non-event. Its failure modes are quiet: a reserve sized to average demand looks prudent on a spreadsheet yet is empty in the surge; held stock silently expires or goes obsolete; and local hoarding beyond real need starves the wider network (the bullwhip effect). The classic misuse is drawing the reserve for routine consumption "just this once," so the emergency stock is gone when the emergency comes. The discipline is to size to the tail, protect the reserve from routine draw, and rotate what perishes.[^ss]
How it implements the components¶
Reserve Inventory fills the physical-stock and replenishment side of the margin:
variation_profile— the reserve is sized to the tail of demand burstiness and lead-time variability, not the mean.safety_margin— the stock held above expected consumption is the distance to a stockout.restoration_trigger— the reorder point that fires replenishment when the reserve is drawn down.
It does not hold live throughput capacity — that is Capacity Headroom — nor set an inviolable floor with escalation and an owner (Minimum Reserve Requirement), nor reserve funds (Budget Contingency).
Related¶
- Instantiates: Safety Margin Design — Reserve Inventory is the margin held as replenishing physical stock.
- Sibling mechanisms: Capacity Headroom · Minimum Reserve Requirement · Budget Contingency · Risk Capital Buffer · Structural Safety Factor · Conservative Estimate · Schedule Float · Setback Requirement · Safe Operating Limit Chart · Stress-Test Margin Check · Premortem Margin Review
Notes¶
The reorder trigger rebuilds the reserve but does not defend it from being spent down in the first place. Where routine and emergency demand draw from the same shelf, Reserve Inventory needs a floor rule on top of it — Minimum Reserve Requirement — so the emergency stock cannot be quietly consumed by ordinary use.