From 0a3528ef6b961e6caeac4ef10090fe99644ee817 Mon Sep 17 00:00:00 2001 From: JannekeTack26 Date: Tue, 18 Nov 2025 08:16:50 +0100 Subject: [PATCH] Commit --- src/specificClass.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/specificClass.js b/src/specificClass.js index 2cc04f2..d46deb2 100644 --- a/src/specificClass.js +++ b/src/specificClass.js @@ -115,7 +115,8 @@ class ValveGroupControl { if (softwareType === 'machinegroup') { this.logger.info("Total flow change from machineGroupControl detected by valveGroupControl"); //Opslaan nieuwe total flow - this.measurements.type("flow").variant("predicted").position("atEquipment").value(data.value); + let value = data.value * 3.6 ; // convert l/s to m3/h + this.measurements.type("flow").variant("predicted").position("atEquipment").value(value); // als totalflow van mg veranderd, bereken dan de nieuwe valve flows this.calcValveFlows(); };