From 8c7a834d3963684c43e829c4ee85fa58254ec50f Mon Sep 17 00:00:00 2001 From: atef Date: Mon, 29 Jan 2024 13:24:38 +0100 Subject: [PATCH] add heating power to hourly data --- csharp/App/SaliMax/src/AggregationService/HourlyData.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/csharp/App/SaliMax/src/AggregationService/HourlyData.cs b/csharp/App/SaliMax/src/AggregationService/HourlyData.cs index 11dc12231..80d003dbe 100644 --- a/csharp/App/SaliMax/src/AggregationService/HourlyData.cs +++ b/csharp/App/SaliMax/src/AggregationService/HourlyData.cs @@ -19,6 +19,7 @@ public class AggregatedData public required Double SumChargingBatteryPower { get; set; } public required Double SumGridExportPower { get; set; } public required Double SumGridImportPower { get; set; } + public required Double HeatingPowerAvg { get; set; } private readonly S3Config? _S3Config = Config.Load().S3;