From 01fcb60f247feb51d73d8fa71e95c136b9d4c498 Mon Sep 17 00:00:00 2001 From: atef Date: Tue, 6 Feb 2024 11:47:06 +0100 Subject: [PATCH] Change the naming of daily and hourly data --- .../App/SaliMax/src/AggregationService/Aggregator.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/csharp/App/SaliMax/src/AggregationService/Aggregator.cs b/csharp/App/SaliMax/src/AggregationService/Aggregator.cs index 59b7cadc8..994f6747b 100644 --- a/csharp/App/SaliMax/src/AggregationService/Aggregator.cs +++ b/csharp/App/SaliMax/src/AggregationService/Aggregator.cs @@ -287,27 +287,27 @@ public static class Aggregator batterySoc.Add(value); break; - case "/SumPvPower": + case "/PvPower": pvPower.Add(value); break; - case "/SumDischargingBatteryPower" : + case "/DischargingBatteryPower" : batteryDischargePower.Add(value); break; - case "/SumChargingBatteryPower" : + case "/ChargingBatteryPower" : batteryChargePower.Add(value); break; - case "/SumGridExportPower": + case "/GridExportPower": gridPowerExport.Add(value); break; - case "/SumGridImportPower": + case "/GridImportPower": gridPowerImport.Add(value); break; - case "/HeatingPowerAvg": + case "/HeatingPower": heatingPowerAvg.Add(value); break; // Add more cases as needed