diff --git a/hub/imports/results/insel_monthly_energry_balance.py b/hub/imports/results/insel_monthly_energry_balance.py index 37783185..8d33c302 100644 --- a/hub/imports/results/insel_monthly_energry_balance.py +++ b/hub/imports/results/insel_monthly_energry_balance.py @@ -70,7 +70,7 @@ class InselMonthlyEnergyBalance: total_day += value for day_type in schedule.day_types: total_lighting += total_day * cte.WEEK_DAYS_A_MONTH[month][day_type] \ - * lighting_density / cte.WATTS_HOUR_TO_JULES + * lighting_density * cte.WATTS_HOUR_TO_JULES lighting_demand.append(total_lighting * area) for schedule in thermal_zone.appliances.schedules: @@ -79,7 +79,7 @@ class InselMonthlyEnergyBalance: total_day += value for day_type in schedule.day_types: total_appliances += total_day * cte.WEEK_DAYS_A_MONTH[month][day_type] \ - * appliances_density / cte.WATTS_HOUR_TO_JULES + * appliances_density * cte.WATTS_HOUR_TO_JULES appliances_demand.append(total_appliances * area) for schedule in thermal_zone.domestic_hot_water.schedules: @@ -89,7 +89,7 @@ class InselMonthlyEnergyBalance: for day_type in schedule.day_types: demand = ( peak_flow * cte.WATER_DENSITY * cte.WATER_HEAT_CAPACITY - * (service_temperature - cold_water[i_month]) / cte.WATTS_HOUR_TO_JULES + * (service_temperature - cold_water[i_month]) * cte.WATTS_HOUR_TO_JULES ) total_dhw_demand += total_day * cte.WEEK_DAYS_A_MONTH[month][day_type] * demand domestic_hot_water_demand.append(total_dhw_demand * area)