From b52e66c263838de5219984e8a01fa3490b36a468 Mon Sep 17 00:00:00 2001 From: guille Date: Mon, 15 Apr 2024 07:13:53 +0200 Subject: [PATCH] bugfix in heating peak load units --- hub/city_model_structure/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/city_model_structure/building.py b/hub/city_model_structure/building.py index c01e5bf2..315f65d9 100644 --- a/hub/city_model_structure/building.py +++ b/hub/city_model_structure/building.py @@ -449,7 +449,7 @@ class Building(CityObject): monthly_values = PeakLoads(self).heating_peak_loads_from_methodology if monthly_values is None: return None - results[cte.MONTH] = [x * cte.WATTS_HOUR_TO_JULES for x in monthly_values] + results[cte.MONTH] = monthly_values results[cte.YEAR] = [max(monthly_values)] return results