Expand description
Read-only max/phaseShift protocol surface.
Water expands roughly 1,700x when it crosses the boiling point into steam.
This surface projects that picture onto the law-state runtime: the boiling
point is the admission threshold and the 1,700x expansion is the
autonomic-mesh fan-out an admitted observation receives. max/phaseShift
resolves a hypothetical world-state into a bounded conformance phase and the
mesh amplification that phase carries.
This surface is read-only. It reports a phase and an expansion factor; it mutates nothing and propagates nothing on its own. The expansion factor is the intended mesh fan-out for an admitted observation, not an executed action — any actual propagation routes through the mesh’s own hook/action chain, never through this observation surface.
All status fields carry bounded statuses only (ADMITTED, PARTIAL,
UNKNOWN, REFUSED, BLOCKED). The three-state law holds: the UNKNOWN
phase (Unsettled) is never coerced into PARTIAL (Liquid) or ADMITTED
(Vapor). The precedence mirrors crate::repair::simulate_admission:
BLOCKED > REFUSED > UNKNOWN > the boiling-point comparison.
Structs§
- Phase
Shift Params - Parameters for
max/phaseShift: a hypothetical world-state to resolve. - Phase
Shift Result Msg - Result of
max/phaseShift.
Constants§
- METHOD_
PHASE_ SHIFT - max/phaseShift — Resolve a world-state into a bounded conformance phase and
its autonomic-mesh expansion factor. Read-only: returns a
PhaseShiftResultMsg; it neither writes state nor performs the fan-out. - PHASE_
DECOMPOSED - Emitted for the
Decomposedphase (statusREFUSED): an explicit refusal; nothing propagates. - PHASE_
FROZEN - Emitted for the
Frozenphase (statusBLOCKED): an ANDON signal is active and no observation propagates until it clears. - PHASE_
UNSETTLED - Emitted for the
Unsettledphase (statusUNKNOWN): the measurement is undetermined. Information severity —UNKNOWNis never raised to the refused/blocked (Error) polarity. - STATUS_
ADMITTED - Bounded status for the
Vaporphase: crossed the boiling point. - STATUS_
BLOCKED - Bounded status for the
Frozenphase: an ANDON signal is active. - STATUS_
PARTIAL - Bounded status for the
Liquidphase: flowing below the boiling point. - STATUS_
REFUSED - Bounded status for the
Decomposedphase: explicit refusal. - STATUS_
UNKNOWN - Bounded status for the
Unsettledphase: measurement undetermined. - STEAM_
EXPANSION_ FACTOR - Volumetric expansion of water into steam at standard pressure (~1,700x); the
autonomic-mesh amplification factor for an admitted (
Vapor) observation.
Functions§
- diagnostics_
for_ phase - Map a resolved phase status to zero or more
PHASE-*diagnostics, three-state law preserved. - phase_
shift - Resolve a world-state into its bounded phase and mesh expansion factor.