src/curves/ loader + normalizer (with cross-pressure anomaly
detection) + reverseCurve helper
src/prediction/ predictors (predictFlow/Power/Ctrl) +
groupPredictors (lazy group-scope views) +
OperatingPoint (pressure-driven prediction setpoints)
src/drift/ DriftAssessor (per-metric drift) + PredictionHealth
(composes flow/power/pressure into HealthStatus +
confidence sibling — see OPEN_QUESTIONS 2026-05-10)
src/pressure/ VirtualPressureChildren (dashboard-sim) +
PressureInitialization (real-vs-virtual tracking) +
PressureRouter (dispatches by position)
src/state/ stateBindings (state.emitter listener helper) +
isOperationalState
src/measurement/ measurementHandlers (dispatcher for flow/power/temp/pressure)
src/flow/ flowController (handleInput body — execSequence,
execMovement, flowMovement, emergencystop)
src/display/ workingCurves (showWorkingCurves + showCoG admin)
src/commands/ canonical names: set.mode, cmd.startup/shutdown/estop,
set.setpoint, set.flow-setpoint,
data.simulate-measurement, query.curves, query.cog,
child.register. execSequence demuxes by payload.action
to canonical cmd.* handlers.
CONTRACT.md inputs/outputs/events/children surface
110 basic tests pass (100 new + 10 pre-existing).
specificClass.js / nodeClass.js untouched — integration in P5 wave 2.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
18 lines
482 B
JavaScript
18 lines
482 B
JavaScript
/**
|
|
* Swap x and y of every pressure-keyed section so a forward "ctrl -> flow"
|
|
* curve becomes a reverse "flow -> ctrl" curve. Used to build predictCtrl
|
|
* from the same nq data feeding predictFlow.
|
|
*/
|
|
function reverseCurve(curveSection) {
|
|
const reversed = {};
|
|
for (const [pressure, values] of Object.entries(curveSection || {})) {
|
|
reversed[pressure] = {
|
|
x: [...values.y],
|
|
y: [...values.x],
|
|
};
|
|
}
|
|
return reversed;
|
|
}
|
|
|
|
module.exports = { reverseCurve };
|