From aa0f790d8e01b4106d23351e9bab25bf60d70f5d Mon Sep 17 00:00:00 2001 From: guille Date: Mon, 22 Jan 2024 14:33:44 +0100 Subject: [PATCH] remove commented code and debug prints --- hub/exports/building_energy/idf.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/hub/exports/building_energy/idf.py b/hub/exports/building_energy/idf.py index 2c4d43c7..2203bd3e 100644 --- a/hub/exports/building_energy/idf.py +++ b/hub/exports/building_energy/idf.py @@ -622,23 +622,10 @@ class Idf: _total_heat = (_occ.sensible_convective_internal_gain + _occ.sensible_radiative_internal_gain + _occ.latent_internal_gain) / _occ.occupancy_density _new_schedules = self._create_constant_value_schedules('Activity Level', _total_heat) - print('add schedules') self._add_schedules(usage, 'Activity Level', _new_schedules) - print('add zone') self._add_zone(thermal_zone, building.name) - print('add heating system') self._add_heating_system(thermal_zone, building.name) - print('add infiltration') self._add_infiltration(thermal_zone, building.name) - # print('add ventilation') - # self._add_ventilation(thermal_zone, building.name) - # print('add occupancy') - # self._add_occupancy(thermal_zone, building.name) - # print('add lighting') - # self._add_lighting(thermal_zone, building.name) - # print('appliances') - # self._add_appliances(thermal_zone, building.name) - #print('dhw') self._add_dhw(thermal_zone, building.name) if self._export_type == "Surfaces": if building.name in self._target_buildings or building.name in self._adjacent_buildings: