From 17662ef7cb5ae566ea4ee1269953e887b897d09a Mon Sep 17 00:00:00 2001 From: "p.vanderwilt" Date: Fri, 31 Oct 2025 13:53:35 +0100 Subject: [PATCH 1/2] Add total suspended solids sensor to assetData --- datasets/assetData/assetData.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/datasets/assetData/assetData.json b/datasets/assetData/assetData.json index 316708a..3909520 100644 --- a/datasets/assetData/assetData.json +++ b/datasets/assetData/assetData.json @@ -66,6 +66,15 @@ "units": ["g/m³", "mol/m³"] } ] + }, + { + "name": "Quantity (TSS)", + "models": [ + { + "name": "VegaSolidsProbe", + "units": ["g/m³"] + } + ] } ] } From d5d078413cb382457bf99562ca8b109dda7a96dc Mon Sep 17 00:00:00 2001 From: "p.vanderwilt" Date: Fri, 31 Oct 2025 14:03:54 +0100 Subject: [PATCH 2/2] Add flowNumber configuration to define effluent flow handling --- src/configs/rotatingMachine.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/configs/rotatingMachine.json b/src/configs/rotatingMachine.json index 2c83be7..6ef9955 100644 --- a/src/configs/rotatingMachine.json +++ b/src/configs/rotatingMachine.json @@ -412,6 +412,14 @@ ], "description": "The frequency at which calculations are performed." } + }, + "flowNumber": { + "default": 1, + "rules": { + "type": "number", + "nullable": false, + "description": "Defines which effluent flow of the parent node to handle." + } } } \ No newline at end of file