|
|
|
|
@@ -1,48 +1,3 @@
|
|
|
|
|
/**
|
|
|
|
|
* @file machine.js
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted to any person obtaining a copy of this software
|
|
|
|
|
* and associated documentation files (the "Software"), to use it for personal
|
|
|
|
|
* or non-commercial purposes, with the following restrictions:
|
|
|
|
|
*
|
|
|
|
|
* 1. **No Copying or Redistribution**: The Software or any of its parts may not
|
|
|
|
|
* be copied, merged, distributed, sublicensed, or sold without explicit
|
|
|
|
|
* prior written permission from the author.
|
|
|
|
|
*
|
|
|
|
|
* 2. **Commercial Use**: Any use of the Software for commercial purposes requires
|
|
|
|
|
* a valid license, obtainable only with the explicit consent of the author.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Ownership of this code remainregisterChilds solely with the original author. Unauthorized
|
|
|
|
|
* use of this Software is strictly prohibited.
|
|
|
|
|
*
|
|
|
|
|
* @summary A class to interact and manipulate machines with a non-euclidian curve
|
|
|
|
|
* @description A class to interact and manipulate machines with a non-euclidian curve
|
|
|
|
|
* @module machine
|
|
|
|
|
* @exports machine
|
|
|
|
|
* @version 0.1.0
|
|
|
|
|
* @since 0.1.0
|
|
|
|
|
*
|
|
|
|
|
* Author:
|
|
|
|
|
* - Rene De Ren
|
|
|
|
|
* Email:
|
|
|
|
|
* - r.de.ren@brabantsedelta.nl
|
|
|
|
|
*
|
|
|
|
|
* Add functionality later
|
|
|
|
|
// -------- Operational Metrics -------- //
|
|
|
|
|
maintenanceAlert: this.state.checkMaintenanceStatus()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
//load local dependencies
|
|
|
|
|
const EventEmitter = require('events');
|
|
|
|
|
const {loadCurve,logger,configUtils,configManager,state, nrmse, MeasurementContainer, predict, interpolation , childRegistrationUtils} = require('generalFunctions');
|
|
|
|
|
const { name } = require('../../generalFunctions/src/convert/lodash/lodash._shimkeys');
|
|
|
|
|
@@ -113,6 +68,10 @@ class Machine {
|
|
|
|
|
this.updatePosition();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// used for holding the source and sink unit operations or other object with setInfluent / getEffluent method for e.g. recirculation.
|
|
|
|
|
this.upstreamSource = null;
|
|
|
|
|
this.downstreamSink = null;
|
|
|
|
|
|
|
|
|
|
this.child = {}; // object to hold child information so we know on what to subscribe
|
|
|
|
|
this.childRegistrationUtils = new childRegistrationUtils(this); // Child registration utility
|
|
|
|
|
|
|
|
|
|
@@ -120,72 +79,83 @@ class Machine {
|
|
|
|
|
|
|
|
|
|
/*------------------- Register child events -------------------*/
|
|
|
|
|
registerChild(child, softwareType) {
|
|
|
|
|
this.logger.debug('Setting up child event for softwaretype ' + softwareType);
|
|
|
|
|
if(!child) {
|
|
|
|
|
this.logger.error(`Invalid ${softwareType} child provided.`);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(softwareType === "measurement"){
|
|
|
|
|
const position = child.config.functionality.positionVsParent;
|
|
|
|
|
const distance = child.config.functionality.distanceVsParent || 0;
|
|
|
|
|
const measurementType = child.config.asset.type;
|
|
|
|
|
const key = `${measurementType}_${position}`;
|
|
|
|
|
//rebuild to measurementype.variant no position and then switch based on values not strings or names.
|
|
|
|
|
const eventName = `${measurementType}.measured.${position}`;
|
|
|
|
|
switch (softwareType) {
|
|
|
|
|
case "measurement":
|
|
|
|
|
this.logger.debug(`Registering measurement child...`);
|
|
|
|
|
this._connectMeasurement(child);
|
|
|
|
|
break;
|
|
|
|
|
case "reactor":
|
|
|
|
|
this.logger.debug(`Registering reactor child...`);
|
|
|
|
|
this._connectReactor(child);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
this.logger.error(`Unrecognized softwareType: ${softwareType}`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.logger.debug(`Setting up listener for ${eventName} from child ${child.config.general.name}`);
|
|
|
|
|
// Register event listener for measurement updates
|
|
|
|
|
child.measurements.emitter.on(eventName, (eventData) => {
|
|
|
|
|
this.logger.debug(`🔄 ${position} ${measurementType} from ${eventData.childName}: ${eventData.value} ${eventData.unit}`);
|
|
|
|
|
_connectMeasurement(measurementChild) {
|
|
|
|
|
const position = measurementChild.config.functionality.positionVsParent;
|
|
|
|
|
const distance = measurementChild.config.functionality.distanceVsParent || 0;
|
|
|
|
|
const measurementType = measurementChild.config.asset.type;
|
|
|
|
|
//rebuild to measurementype.variant no position and then switch based on values not strings or names.
|
|
|
|
|
const eventName = `${measurementType}.measured.${position}`;
|
|
|
|
|
|
|
|
|
|
this.logger.debug(`Setting up listener for ${eventName} from child ${measurementChild.config.general.name}`);
|
|
|
|
|
// Register event listener for measurement updates
|
|
|
|
|
measurementChild.measurements.emitter.on(eventName, (eventData) => {
|
|
|
|
|
this.logger.debug(`🔄 ${position} ${measurementType} from ${eventData.childName}: ${eventData.value} ${eventData.unit}`);
|
|
|
|
|
|
|
|
|
|
// Store directly in parent's measurement container
|
|
|
|
|
this.measurements
|
|
|
|
|
.type(measurementType)
|
|
|
|
|
.variant("measured")
|
|
|
|
|
.position(position)
|
|
|
|
|
.value(eventData.value, eventData.timestamp, eventData.unit);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log(` Emitting... ${eventName} with data:`);
|
|
|
|
|
// Store directly in parent's measurement container
|
|
|
|
|
this.measurements
|
|
|
|
|
.type(measurementType)
|
|
|
|
|
.variant("measured")
|
|
|
|
|
.position(position)
|
|
|
|
|
.value(eventData.value, eventData.timestamp, eventData.unit);
|
|
|
|
|
// Call the appropriate handler
|
|
|
|
|
switch (measurementType) {
|
|
|
|
|
case 'pressure':
|
|
|
|
|
this.updateMeasuredPressure(eventData.value, position, eventData);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
// Call the appropriate handler
|
|
|
|
|
this._callMeasurementHandler(measurementType, eventData.value, position, eventData);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
case 'flow':
|
|
|
|
|
this.updateMeasuredFlow(eventData.value, position, eventData);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
this.logger.warn(`No handler for measurement type: ${measurementType}`);
|
|
|
|
|
// Generic handler - just update position
|
|
|
|
|
this.updatePosition();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Centralized handler dispatcher
|
|
|
|
|
_callMeasurementHandler(measurementType, value, position, context) {
|
|
|
|
|
switch (measurementType) {
|
|
|
|
|
case 'pressure':
|
|
|
|
|
this.updateMeasuredPressure(value, position, context);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'flow':
|
|
|
|
|
this.updateMeasuredFlow(value, position, context);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
this.logger.warn(`No handler for measurement type: ${measurementType}`);
|
|
|
|
|
// Generic handler - just update position
|
|
|
|
|
this.updatePosition();
|
|
|
|
|
break;
|
|
|
|
|
_connectReactor(reactorChild) {
|
|
|
|
|
this.downstreamSink = reactorChild; // downstream from the pumps perpective
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------- END child stuff -------------//
|
|
|
|
|
//---------------- END child stuff -------------//
|
|
|
|
|
|
|
|
|
|
// Method to assess drift using errorMetrics
|
|
|
|
|
assessDrift(measurement, processMin, processMax) {
|
|
|
|
|
this.logger.debug(`Assessing drift for measurement: ${measurement} processMin: ${processMin} processMax: ${processMax}`);
|
|
|
|
|
const predictedMeasurement = this.measurements.type(measurement).variant("predicted").position("downstream").getAllValues().values;
|
|
|
|
|
const measuredMeasurement = this.measurements.type(measurement).variant("measured").position("downstream").getAllValues().values;
|
|
|
|
|
// Method to assess drift using errorMetrics
|
|
|
|
|
assessDrift(measurement, processMin, processMax) {
|
|
|
|
|
this.logger.debug(`Assessing drift for measurement: ${measurement} processMin: ${processMin} processMax: ${processMax}`);
|
|
|
|
|
const predictedMeasurement = this.measurements.type(measurement).variant("predicted").position("downstream").getAllValues().values;
|
|
|
|
|
const measuredMeasurement = this.measurements.type(measurement).variant("measured").position("downstream").getAllValues().values;
|
|
|
|
|
|
|
|
|
|
if (!predictedMeasurement || !measuredMeasurement) return null;
|
|
|
|
|
|
|
|
|
|
return this.errorMetrics.assessDrift(
|
|
|
|
|
predictedMeasurement,
|
|
|
|
|
measuredMeasurement,
|
|
|
|
|
processMin,
|
|
|
|
|
processMax
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if (!predictedMeasurement || !measuredMeasurement) return null;
|
|
|
|
|
|
|
|
|
|
return this.errorMetrics.assessDrift(
|
|
|
|
|
predictedMeasurement,
|
|
|
|
|
measuredMeasurement,
|
|
|
|
|
processMin,
|
|
|
|
|
processMax
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
reverseCurve(curve) {
|
|
|
|
|
const reversedCurve = {};
|
|
|
|
|
@@ -513,13 +483,12 @@ _callMeasurementHandler(measurementType, value, position, context) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// rich context handler for pressure updates
|
|
|
|
|
// context handler for pressure updates
|
|
|
|
|
updateMeasuredPressure(value, position, context = {}) {
|
|
|
|
|
|
|
|
|
|
// Enhanced logging with child context
|
|
|
|
|
this.logger.debug(`Pressure update: ${value} at ${position} from ${context.childName || 'child'} (${context.childId || 'unknown-id'})`);
|
|
|
|
|
|
|
|
|
|
// Store in parent's measurement container (your existing logic)
|
|
|
|
|
// Store in parent's measurement container
|
|
|
|
|
this.measurements.type("pressure").variant("measured").position(position).value(value, context.timestamp, context.unit);
|
|
|
|
|
|
|
|
|
|
// Determine what kind of value to use as pressure (upstream , downstream or difference)
|
|
|
|
|
@@ -531,12 +500,17 @@ _callMeasurementHandler(measurementType, value, position, context) {
|
|
|
|
|
|
|
|
|
|
// NEW: Flow handler
|
|
|
|
|
updateMeasuredFlow(value, position, context = {}) {
|
|
|
|
|
|
|
|
|
|
if (!this._isOperationalState()) {
|
|
|
|
|
this.logger.warn(`Machine not operational, skipping flow update from ${context.childName || 'unknown'}`);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.logger.debug(`Flow update: ${value} at ${position} from ${context.childName || 'child'}`);
|
|
|
|
|
|
|
|
|
|
if (this.upstreamSource && this.downstreamSink) {
|
|
|
|
|
this._updateSourceSink();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Store in parent's measurement container
|
|
|
|
|
this.measurements.type("flow").variant("measured").position(position).value(value, context.timestamp, context.unit);
|
|
|
|
|
@@ -547,6 +521,12 @@ _callMeasurementHandler(measurementType, value, position, context) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_updateSourceSink() {
|
|
|
|
|
// Handles flow according to the configured "flow number"
|
|
|
|
|
this.logger.debug(`Updating source-sink pair: ${this.upstreamSource.config.functionality.softwareType} - ${this.downstreamSink.config.functionality.softwareType}`);
|
|
|
|
|
this.downstreamSink.setInfluent = this.upstreamSource.getEffluent[this.config.flowNumber];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Helper method for operational state check
|
|
|
|
|
_isOperationalState() {
|
|
|
|
|
const state = this.state.getCurrentState();
|
|
|
|
|
|