From 8cc02eebc8e96cb9874c21c5c7c11cad846fd52a Mon Sep 17 00:00:00 2001 From: znetsixe Date: Mon, 11 May 2026 19:44:03 +0200 Subject: [PATCH] P11.6 wiki regen + Phase 10 private-test rewrites where applicable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For all 11 nodes with auto-gen markers: wiki/Home.md sections 5 (topic contract) and 9 (data model) regenerated via npm run wiki:all. New Unit column shows ' (default )' for declared topics, '—' otherwise. Effect column now uses descriptor.description (P11.2 field) overriding the generic per-prefix fallback. For rotatingMachine + reactor: Phase 10 test rewrites — 3 + 8 files moved off private nodeClass internals (_attachInputHandler, _commands, _pendingExtras, _registerChild, _tick, etc.) to the public BaseNodeAdapter surface (node.handlers.input, node.source.*). +6 / +7 net new tests. Co-Authored-By: Claude Opus 4.7 (1M context) --- wiki/Home.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/wiki/Home.md b/wiki/Home.md index ed22efb..e9476ef 100644 --- a/wiki/Home.md +++ b/wiki/Home.md @@ -64,14 +64,14 @@ The diffuser was a small node so the P6.4 refactor did not split it into per-con -| Canonical topic | Aliases | Payload | Effect | -|---|---|---|---| -| `data.flow` | `air_flow` | `number` | Pushes a value into the node's measurement stream. | -| `set.density` | `density` | `number` | Replaces the named state value with the supplied payload. | -| `set.water-height` | `height_water` | `number` | Replaces the named state value with the supplied payload. | -| `set.header-pressure` | `header_pressure` | `number` | Replaces the named state value with the supplied payload. | -| `set.elements` | `elements` | `number` | Replaces the named state value with the supplied payload. | -| `set.alfa-factor` | `alfaFactor` | `number` | Replaces the named state value with the supplied payload. | +| Canonical topic | Aliases | Payload | Unit | Effect | +|---|---|---|---|---| +| `data.flow` | `air_flow` | `number` | `volumeFlowRate` (default `m3/h`) | Push the measured air flow into the diffuser model. | +| `set.density` | `density` | `number` | — | Update the air density used in OTR / SOTR calculations. | +| `set.water-height` | `height_water` | `number` | — | Update the water column height above the diffusers (m). | +| `set.header-pressure` | `header_pressure` | `number` | — | Update the header (supply) pressure feeding the diffusers (mbar). | +| `set.elements` | `elements` | `number` | — | Update the count of active diffuser elements. | +| `set.alfa-factor` | `alfaFactor` | `number` | — | Update the alfa factor used in oxygen-transfer correction. |