Compare commits
3 Commits
dev-Rene
...
4e098eefaa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4e098eefaa | ||
|
|
90f87bb538 | ||
|
|
8fe9c7ec05 |
@@ -24,12 +24,6 @@
|
|||||||
heightInlet: { value: 0.8 }, // m, centre of inlet pipe above floor
|
heightInlet: { value: 0.8 }, // m, centre of inlet pipe above floor
|
||||||
heightOutlet: { value: 0.2 }, // m, centre of outlet pipe above floor
|
heightOutlet: { value: 0.2 }, // m, centre of outlet pipe above floor
|
||||||
heightOverflow: { value: 0.9 }, // m, overflow elevation
|
heightOverflow: { value: 0.9 }, // m, overflow elevation
|
||||||
timeleftToFullOrEmptyThresholdSeconds:{value:0}, // time threshold to safeguard starting or stopping pumps in seconds
|
|
||||||
enableDryRunProtection: { value: true },
|
|
||||||
enableOverfillProtection: { value: true },
|
|
||||||
dryRunThresholdPercent: { value: 2 },
|
|
||||||
overfillThresholdPercent: { value: 98 },
|
|
||||||
minHeightBasedOn: { value: "outlet" }, // basis for minimum height check: inlet or outlet
|
|
||||||
|
|
||||||
// Advanced reference information
|
// Advanced reference information
|
||||||
refHeight: { value: "NAP" }, // reference height
|
refHeight: { value: "NAP" }, // reference height
|
||||||
@@ -53,16 +47,7 @@
|
|||||||
hasDistance: { value: false },
|
hasDistance: { value: false },
|
||||||
distance: { value: 0 },
|
distance: { value: 0 },
|
||||||
distanceUnit: { value: "m" },
|
distanceUnit: { value: "m" },
|
||||||
distanceDescription: { value: "" },
|
distanceDescription: { value: "" }
|
||||||
|
|
||||||
// control strategy
|
|
||||||
controlMode: { value: "none" },
|
|
||||||
startLevel: { value: null },
|
|
||||||
stopLevel: { value: null },
|
|
||||||
minFlowLevel: { value: null },
|
|
||||||
maxFlowLevel: { value: null },
|
|
||||||
flowSetpoint: { value: null },
|
|
||||||
flowDeadband: { value: null }
|
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -101,68 +86,6 @@
|
|||||||
refHeightEl.value = this.refHeight || "NAP";
|
refHeightEl.value = this.refHeight || "NAP";
|
||||||
}
|
}
|
||||||
|
|
||||||
const minHeightBasedOnEl = document.getElementById("node-input-minHeightBasedOn");
|
|
||||||
if (minHeightBasedOnEl) {
|
|
||||||
minHeightBasedOnEl.value = this.minHeightBasedOn;
|
|
||||||
}
|
|
||||||
|
|
||||||
const dryRunToggle = document.getElementById("node-input-enableDryRunProtection");
|
|
||||||
const dryRunPercent = document.getElementById("node-input-dryRunThresholdPercent");
|
|
||||||
const overfillToggle = document.getElementById("node-input-enableOverfillProtection");
|
|
||||||
const overfillPercent = document.getElementById("node-input-overfillThresholdPercent");
|
|
||||||
|
|
||||||
const toggleInput = (toggleEl, inputEl) => {
|
|
||||||
if (!toggleEl || !inputEl) { return; }
|
|
||||||
inputEl.disabled = !toggleEl.checked;
|
|
||||||
inputEl.parentElement.classList.toggle('disabled', inputEl.disabled);
|
|
||||||
};
|
|
||||||
|
|
||||||
if (dryRunToggle && dryRunPercent) {
|
|
||||||
dryRunToggle.checked = !!this.enableDryRunProtection;
|
|
||||||
dryRunPercent.value = Number.isFinite(this.dryRunThresholdPercent) ? this.dryRunThresholdPercent : 2;
|
|
||||||
dryRunToggle.addEventListener('change', () => toggleInput(dryRunToggle, dryRunPercent));
|
|
||||||
toggleInput(dryRunToggle, dryRunPercent);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (overfillToggle && overfillPercent) {
|
|
||||||
overfillToggle.checked = !!this.enableOverfillProtection;
|
|
||||||
overfillPercent.value = Number.isFinite(this.overfillThresholdPercent) ? this.overfillThresholdPercent : 98;
|
|
||||||
overfillToggle.addEventListener('change', () => toggleInput(overfillToggle, overfillPercent));
|
|
||||||
toggleInput(overfillToggle, overfillPercent);
|
|
||||||
}
|
|
||||||
|
|
||||||
const timeLeftInput = document.getElementById("node-input-timeleftToFullOrEmptyThresholdSeconds");
|
|
||||||
if (timeLeftInput) {
|
|
||||||
timeLeftInput.value = Number.isFinite(this.timeleftToFullOrEmptyThresholdSeconds)
|
|
||||||
? this.timeleftToFullOrEmptyThresholdSeconds
|
|
||||||
: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// control mode toggle UI
|
|
||||||
const toggleModeSections = (val) => {
|
|
||||||
document.querySelectorAll('.ps-mode-section').forEach((el) => el.style.display = 'none');
|
|
||||||
const active = document.getElementById(`ps-mode-${val}`);
|
|
||||||
if (active) active.style.display = '';
|
|
||||||
};
|
|
||||||
|
|
||||||
const modeSelect = document.getElementById('node-input-controlMode');
|
|
||||||
if (modeSelect) {
|
|
||||||
modeSelect.value = this.controlMode || 'none';
|
|
||||||
toggleModeSections(modeSelect.value);
|
|
||||||
modeSelect.addEventListener('change', (e) => toggleModeSections(e.target.value));
|
|
||||||
}
|
|
||||||
|
|
||||||
const setNumberField = (id, val) => {
|
|
||||||
const el = document.getElementById(id);
|
|
||||||
if (el) el.value = Number.isFinite(val) ? val : '';
|
|
||||||
};
|
|
||||||
|
|
||||||
setNumberField('node-input-startLevel', this.startLevel);
|
|
||||||
setNumberField('node-input-stopLevel', this.stopLevel);
|
|
||||||
setNumberField('node-input-minFlowLevel', this.minFlowLevel);
|
|
||||||
setNumberField('node-input-maxFlowLevel', this.maxFlowLevel);
|
|
||||||
setNumberField('node-input-flowSetpoint', this.flowSetpoint);
|
|
||||||
setNumberField('node-input-flowDeadband', this.flowDeadband);
|
|
||||||
|
|
||||||
//------------------- END OF CUSTOM config UI ELEMENTS ------------------- //
|
//------------------- END OF CUSTOM config UI ELEMENTS ------------------- //
|
||||||
},
|
},
|
||||||
@@ -175,29 +98,14 @@
|
|||||||
|
|
||||||
//node specific
|
//node specific
|
||||||
node.refHeight = document.getElementById("node-input-refHeight").value || "NAP";
|
node.refHeight = document.getElementById("node-input-refHeight").value || "NAP";
|
||||||
node.minHeightBasedOn = document.getElementById("node-input-minHeightBasedOn").value || "outlet";
|
|
||||||
node.simulator = document.getElementById("node-input-simulator").checked;
|
node.simulator = document.getElementById("node-input-simulator").checked;
|
||||||
|
|
||||||
["basinVolume","basinHeight","heightInlet","heightOutlet","heightOverflow","basinBottomRef","timeleftToFullOrEmptyThresholdSeconds","dryRunThresholdPercent","overfillThresholdPercent"]
|
["basinVolume","basinHeight","heightInlet","heightOutlet","heightOverflow","basinBottomRef"]
|
||||||
.forEach(field => {
|
.forEach(field => {
|
||||||
node[field] = parseFloat(document.getElementById(`node-input-${field}`).value) || 0;
|
node[field] = parseFloat(document.getElementById(`node-input-${field}`).value) || 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
node.refHeight = document.getElementById("node-input-refHeight").value || "";
|
node.refHeight = document.getElementById("node-input-refHeight").value || "";
|
||||||
node.enableDryRunProtection = document.getElementById("node-input-enableDryRunProtection").checked;
|
|
||||||
node.enableOverfillProtection = document.getElementById("node-input-enableOverfillProtection").checked;
|
|
||||||
|
|
||||||
// control strategy
|
|
||||||
node.controlMode = document.getElementById('node-input-controlMode').value || 'none';
|
|
||||||
|
|
||||||
const parseNum = (id) => parseFloat(document.getElementById(id)?.value);
|
|
||||||
node.startLevel = parseNum('node-input-startLevel');
|
|
||||||
node.stopLevel = parseNum('node-input-stopLevel');
|
|
||||||
node.minFlowLevel = parseNum('node-input-minFlowLevel');
|
|
||||||
node.maxFlowLevel = parseNum('node-input-maxFlowLevel');
|
|
||||||
node.flowSetpoint = parseNum('node-input-flowSetpoint');
|
|
||||||
node.flowDeadband = parseNum('node-input-flowDeadband');
|
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
@@ -207,7 +115,7 @@
|
|||||||
|
|
||||||
<script type="text/html" data-template-name="pumpingStation">
|
<script type="text/html" data-template-name="pumpingStation">
|
||||||
|
|
||||||
<h4>Simulation</h4>
|
<!-- Simulator toggle -->
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-simulator"><i class="fa fa-play-circle"></i> Simulator</label>
|
<label for="node-input-simulator"><i class="fa fa-play-circle"></i> Simulator</label>
|
||||||
<input type="checkbox" id="node-input-simulator" style="width:20px;vertical-align:baseline;" />
|
<input type="checkbox" id="node-input-simulator" style="width:20px;vertical-align:baseline;" />
|
||||||
@@ -216,7 +124,7 @@
|
|||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<h4>Basin Geometry</h4>
|
<!-- Basin geometry -->
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-basinVolume"><i class="fa fa-cube"></i> Basin Volume (m³)</label>
|
<label for="node-input-basinVolume"><i class="fa fa-cube"></i> Basin Volume (m³)</label>
|
||||||
<input type="number" id="node-input-basinVolume" min="0" step="0.1" />
|
<input type="number" id="node-input-basinVolume" min="0" step="0.1" />
|
||||||
@@ -242,58 +150,7 @@
|
|||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<h4>Control Strategy</h4>
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-controlMode"><i class="fa fa-sliders"></i> Control mode</label>
|
|
||||||
<select id="node-input-controlMode">
|
|
||||||
<option value="none">None / Manual</option>
|
|
||||||
<option value="levelbased">Level-based</option>
|
|
||||||
<option value="flowbased">Flow-based</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="ps-mode-levelbased" class="ps-mode-section">
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-startLevel">startLevel</label>
|
|
||||||
<input type="number" id="node-input-startLevel" placeholder="m" />
|
|
||||||
</div>
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-stopLevel">stopLevel</label>
|
|
||||||
<input type="number" id="node-input-stopLevel" placeholder="m" />
|
|
||||||
</div>
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-minFlowLevel">Min flow (m)</label>
|
|
||||||
<input type="number" id="node-input-minFlowLevel" placeholder="m" />
|
|
||||||
</div>
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-maxFlowLevel">Max flow (m)</label>
|
|
||||||
<input type="number" id="node-input-maxFlowLevel" placeholder="m" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="ps-mode-flowbased" class="ps-mode-section" style="display:none">
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-flowSetpoint">Flow setpoint</label>
|
|
||||||
<input type="number" id="node-input-flowSetpoint" placeholder="m3/h" />
|
|
||||||
</div>
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-flowDeadband">Deadband</label>
|
|
||||||
<input type="number" id="node-input-flowDeadband" placeholder="m3/h" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<h4>Reference</h4>
|
|
||||||
|
|
||||||
<!-- Reference data -->
|
<!-- Reference data -->
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-minHeightBasedOn"><i class="fa fa-arrows-v"></i> Minimum Height Based On</label>
|
|
||||||
<select id="node-input-minHeightBasedOn" style="width:60%;">
|
|
||||||
<option value="inlet">Inlet Elevation</option>
|
|
||||||
<option value="outlet">Outlet Elevation</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-refHeight"><i class="fa fa-map-marker"></i> Reference height</label>
|
<label for="node-input-refHeight"><i class="fa fa-map-marker"></i> Reference height</label>
|
||||||
<select id="node-input-refHeight" style="width:60%;">
|
<select id="node-input-refHeight" style="width:60%;">
|
||||||
@@ -306,40 +163,6 @@
|
|||||||
<input type="number" id="node-input-basinBottomRef" step="0.01" />
|
<input type="number" id="node-input-basinBottomRef" step="0.01" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<h4>Safety</h4>
|
|
||||||
|
|
||||||
<!-- Safety settings -->
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-timeleftToFullOrEmptyThresholdSeconds"><i class="fa fa-clock-o"></i> Time To Empty/Full (s)</label>
|
|
||||||
<input type="number" id="node-input-timeleftToFullOrEmptyThresholdSeconds" min="0" step="1" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-enableDryRunProtection">
|
|
||||||
<i class="fa fa-shield"></i> Dry-run Protection
|
|
||||||
</label>
|
|
||||||
<input type="checkbox" id="node-input-enableDryRunProtection" style="width:20px;vertical-align:baseline;" />
|
|
||||||
<span>Prevent pumps from running on low volume</span>
|
|
||||||
</div>
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-dryRunThresholdPercent" style="padding-left:20px;">Low Volume Threshold (%)</label>
|
|
||||||
<input type="number" id="node-input-dryRunThresholdPercent" min="0" max="100" step="0.1" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-enableOverfillProtection">
|
|
||||||
<i class="fa fa-exclamation-triangle"></i> Overfill Protection
|
|
||||||
</label>
|
|
||||||
<input type="checkbox" id="node-input-enableOverfillProtection" style="width:20px;vertical-align:baseline;" />
|
|
||||||
<span>Stop filling when approaching overflow</span>
|
|
||||||
</div>
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-input-overfillThresholdPercent" style="padding-left:20px;">High Volume Threshold (%)</label>
|
|
||||||
<input type="number" id="node-input-overfillThresholdPercent" min="0" max="100" step="0.1" />
|
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
<!-- Shared asset/logger/position menus -->
|
<!-- Shared asset/logger/position menus -->
|
||||||
<div id="asset-fields-placeholder"></div>
|
<div id="asset-fields-placeholder"></div>
|
||||||
<div id="logger-fields-placeholder"></div>
|
<div id="logger-fields-placeholder"></div>
|
||||||
|
|||||||
152
src/nodeClass.js
152
src/nodeClass.js
@@ -39,21 +39,8 @@ class nodeClass {
|
|||||||
const cfgMgr = new configManager();
|
const cfgMgr = new configManager();
|
||||||
this.defaultConfig = cfgMgr.getConfig(this.name);
|
this.defaultConfig = cfgMgr.getConfig(this.name);
|
||||||
|
|
||||||
// Merge UI config over defaults
|
// Build config: base sections + pumpingStation-specific domain config
|
||||||
this.config = {
|
this.config = cfgMgr.buildConfig(this.name, uiConfig, node.id, {
|
||||||
general: {
|
|
||||||
name: this.name,
|
|
||||||
id: node.id, // node.id is for the child registration process
|
|
||||||
unit: uiConfig.unit, // add converter options later to convert to default units (need like a model that defines this which units we are going to use and then conver to those standards)
|
|
||||||
logging: {
|
|
||||||
enabled: uiConfig.enableLog,
|
|
||||||
logLevel: uiConfig.logLevel
|
|
||||||
}
|
|
||||||
},
|
|
||||||
functionality: {
|
|
||||||
positionVsParent: uiConfig.positionVsParent,// Default to 'atEquipment' if not specified
|
|
||||||
distance: uiConfig.hasDistance ? uiConfig.distance : undefined
|
|
||||||
},
|
|
||||||
basin: {
|
basin: {
|
||||||
volume: uiConfig.basinVolume,
|
volume: uiConfig.basinVolume,
|
||||||
height: uiConfig.basinHeight,
|
height: uiConfig.basinHeight,
|
||||||
@@ -63,28 +50,9 @@ class nodeClass {
|
|||||||
},
|
},
|
||||||
hydraulics: {
|
hydraulics: {
|
||||||
refHeight: uiConfig.refHeight,
|
refHeight: uiConfig.refHeight,
|
||||||
minHeightBasedOn: uiConfig.minHeightBasedOn,
|
|
||||||
basinBottomRef: uiConfig.basinBottomRef,
|
basinBottomRef: uiConfig.basinBottomRef,
|
||||||
},
|
|
||||||
control:{
|
|
||||||
mode: uiConfig.controlMode,
|
|
||||||
levelbased:{
|
|
||||||
startLevel:uiConfig.startLevel,
|
|
||||||
stopLevel:uiConfig.stopLevel,
|
|
||||||
minFlowLevel:uiConfig.minFlowLevel,
|
|
||||||
maxFlowLevel:uiConfig.maxFlowLevel
|
|
||||||
}
|
}
|
||||||
},
|
});
|
||||||
safety:{
|
|
||||||
enableDryRunProtection: uiConfig.enableDryRunProtection,
|
|
||||||
dryRunThresholdPercent: uiConfig.dryRunThresholdPercent,
|
|
||||||
enableOverfillProtection: uiConfig.enableOverfillProtection,
|
|
||||||
overfillThresholdPercent: uiConfig.overfillThresholdPercent,
|
|
||||||
timeleftToFullOrEmptyThresholdSeconds: uiConfig.timeleftToFullOrEmptyThresholdSeconds
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
console.log(`position vs child for ${this.name} is ${this.config.functionality.positionVsParent} the distance is ${this.config.functionality.distance}`);
|
|
||||||
|
|
||||||
// Utility for formatting outputs
|
// Utility for formatting outputs
|
||||||
this._output = new outputUtils();
|
this._output = new outputUtils();
|
||||||
@@ -118,58 +86,63 @@ class nodeClass {
|
|||||||
|
|
||||||
_updateNodeStatus() {
|
_updateNodeStatus() {
|
||||||
const ps = this.source;
|
const ps = this.source;
|
||||||
|
try {
|
||||||
const pickVariant = (type, prefer = ['measured', 'predicted'], position = 'atEquipment', unit) => {
|
// --- Basin & measurements -------------------------------------------------
|
||||||
for (const variant of prefer) {
|
|
||||||
const chain = ps.measurements.type(type).variant(variant).position(position);
|
|
||||||
const value = unit ? chain.getCurrentValue(unit) : chain.getCurrentValue();
|
|
||||||
if (value != null) return { value, variant };
|
|
||||||
}
|
|
||||||
return { value: null, variant: null };
|
|
||||||
};
|
|
||||||
|
|
||||||
const vol = pickVariant('volume', ['measured', 'predicted'], 'atEquipment', 'm3');
|
|
||||||
const volPercent = pickVariant('volumePercent', ['measured','predicted'], 'atEquipment'); // already unitless
|
|
||||||
const level = pickVariant('level', ['measured', 'predicted'], 'atEquipment', 'm');
|
|
||||||
const netFlow = pickVariant('netFlowRate', ['measured', 'predicted'], 'atEquipment', 'm3/h');
|
|
||||||
|
|
||||||
const maxVolBeforeOverflow = ps.basin?.maxVolOverflow ?? ps.basin?.maxVol ?? 0;
|
const maxVolBeforeOverflow = ps.basin?.maxVolOverflow ?? ps.basin?.maxVol ?? 0;
|
||||||
const currentVolume = vol.value ?? 0;
|
const volumeMeasurement = ps.measurements.type("volume").variant("measured").position("atEquipment");
|
||||||
const currentvolPercent = volPercent.value ?? 0;
|
const currentVolume = volumeMeasurement.getCurrentValue("m3") ?? 0;
|
||||||
const netFlowM3h = netFlow.value ?? 0;
|
const netFlowMeasurement = ps.measurements.type("netFlowRate").variant("predicted").position("atEquipment");
|
||||||
|
const netFlowM3s = netFlowMeasurement?.getCurrentValue("m3/s") ?? 0;
|
||||||
|
const netFlowM3h = netFlowM3s * 3600;
|
||||||
|
const percentFull = ps.measurements.type("volume").variant("procent").position("atEquipment").getCurrentValue() ?? 0;
|
||||||
|
|
||||||
const direction = ps.state?.direction ?? 'unknown';
|
// --- State information ----------------------------------------------------
|
||||||
|
const direction = ps.state?.direction || "unknown";
|
||||||
const secondsRemaining = ps.state?.seconds ?? null;
|
const secondsRemaining = ps.state?.seconds ?? null;
|
||||||
const timeRemainingMinutes = secondsRemaining != null ? Math.round(secondsRemaining / 60) : null;
|
|
||||||
|
|
||||||
const badgePieces = [];
|
const timeRemaining = secondsRemaining ? `${Math.round(secondsRemaining / 60)}` : 0 + " min";
|
||||||
badgePieces.push(`${currentvolPercent.toFixed(1)}% `);
|
|
||||||
badgePieces.push(
|
// --- Icon / colour selection ---------------------------------------------
|
||||||
`V=${currentVolume.toFixed(2)} / ${maxVolBeforeOverflow.toFixed(2)} m³`
|
let symbol = "❔";
|
||||||
);
|
let fill = "grey";
|
||||||
badgePieces.push(`net: ${netFlowM3h.toFixed(0)} m³/h`);
|
|
||||||
if (timeRemainingMinutes != null) {
|
|
||||||
badgePieces.push(`t≈${timeRemainingMinutes} min)`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const { symbol, fill } = (() => {
|
|
||||||
switch (direction) {
|
switch (direction) {
|
||||||
case 'filling': return { symbol: '⬆️', fill: 'blue' };
|
case "filling":
|
||||||
case 'draining': return { symbol: '⬇️', fill: 'orange' };
|
symbol = "⬆️";
|
||||||
case 'steady': return { symbol: '⏸️', fill: 'green' };
|
fill = "blue";
|
||||||
default: return { symbol: '❔', fill: 'grey' };
|
break;
|
||||||
|
case "draining":
|
||||||
|
symbol = "⬇️";
|
||||||
|
fill = "orange";
|
||||||
|
break;
|
||||||
|
case "stable":
|
||||||
|
symbol = "⏸️";
|
||||||
|
fill = "green";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
symbol = "❔";
|
||||||
|
fill = "grey";
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
})();
|
|
||||||
|
|
||||||
badgePieces[0] = `${symbol} ${badgePieces[0]}`;
|
// --- Status text ----------------------------------------------------------
|
||||||
|
const textParts = [
|
||||||
|
`${symbol} ${percentFull.toFixed(1)}%`,
|
||||||
|
`V=${currentVolume.toFixed(2)} / ${maxVolBeforeOverflow.toFixed(2)} m³`,
|
||||||
|
`net=${netFlowM3h.toFixed(1)} m³/h`,
|
||||||
|
`t≈${timeRemaining}`
|
||||||
|
];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
fill,
|
fill,
|
||||||
shape: 'dot',
|
shape: "dot",
|
||||||
text: badgePieces.join(' | ')
|
text: textParts.join(" | ")
|
||||||
};
|
};
|
||||||
|
} catch (error) {
|
||||||
|
this.node.error("Error in updateNodeStatus: " + error.message);
|
||||||
|
return { fill: "red", shape: "ring", text: "Status Error" };
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// any time based functions here
|
// any time based functions here
|
||||||
@@ -194,8 +167,8 @@ class nodeClass {
|
|||||||
//pumping station needs time based ticks to recalc level when predicted
|
//pumping station needs time based ticks to recalc level when predicted
|
||||||
this.source.tick();
|
this.source.tick();
|
||||||
const raw = this.source.getOutput();
|
const raw = this.source.getOutput();
|
||||||
const processMsg = this._output.formatMsg(raw, this.source.config, 'process');
|
const processMsg = this._output.formatMsg(raw, this.config, 'process');
|
||||||
const influxMsg = this._output.formatMsg(raw, this.source.config, 'influxdb');
|
const influxMsg = this._output.formatMsg(raw, this.config, 'influxdb');
|
||||||
|
|
||||||
// Send only updated outputs on ports 0 & 1
|
// Send only updated outputs on ports 0 & 1
|
||||||
this.node.send([processMsg, influxMsg]);
|
this.node.send([processMsg, influxMsg]);
|
||||||
@@ -208,33 +181,20 @@ class nodeClass {
|
|||||||
this.node.on('input', (msg, send, done) => {
|
this.node.on('input', (msg, send, done) => {
|
||||||
switch (msg.topic) {
|
switch (msg.topic) {
|
||||||
//example
|
//example
|
||||||
case 'changemode':
|
/*case 'simulator':
|
||||||
this.source.changeMode(msg.payload);
|
this.source.toggleSimulation();
|
||||||
break;
|
break;
|
||||||
case 'registerChild':
|
default:
|
||||||
|
this.source.handleInput(msg);
|
||||||
|
break;
|
||||||
|
*/
|
||||||
|
case 'registerChild': {
|
||||||
// Register this node as a child of the parent node
|
// Register this node as a child of the parent node
|
||||||
const childId = msg.payload;
|
const childId = msg.payload;
|
||||||
const childObj = this.RED.nodes.getNode(childId);
|
const childObj = this.RED.nodes.getNode(childId);
|
||||||
this.source.childRegistrationUtils.registerChild(childObj.source ,msg.positionVsParent);
|
this.source.childRegistrationUtils.registerChild(childObj.source ,msg.positionVsParent);
|
||||||
break;
|
break;
|
||||||
case 'calibratePredictedVolume':
|
|
||||||
const injectedVol = parseFloat(msg.payload);
|
|
||||||
this.source.calibratePredictedVolume(injectedVol);
|
|
||||||
break;
|
|
||||||
case 'calibratePredictedLevel':
|
|
||||||
const injectedLevel = parseFloat(msg.payload);
|
|
||||||
this.source.calibratePredictedLevel(injectedLevel);
|
|
||||||
break;
|
|
||||||
case 'q_in': {
|
|
||||||
// payload can be number or { value, unit, timestamp }
|
|
||||||
const val = Number(msg.payload);
|
|
||||||
const unit = msg?.unit;
|
|
||||||
const ts = msg?.timestamp || Date.now();
|
|
||||||
this.source.setManualInflow(val, ts, unit);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|||||||
1099
src/specificClass.js
1099
src/specificClass.js
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user