From 6a5e39fba6870cd65ee7bc404a48acbcc080d928 Mon Sep 17 00:00:00 2001 From: Guille Date: Mon, 16 Nov 2020 09:42:43 -0500 Subject: [PATCH] Merge changes for conflict solving and remove debug messages --- helpers/idf_helper.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/helpers/idf_helper.py b/helpers/idf_helper.py index e001f679..1218f05b 100644 --- a/helpers/idf_helper.py +++ b/helpers/idf_helper.py @@ -92,18 +92,6 @@ class IdfHelper: schedule_occupancy.Hour_23 = occupancy.occupant_schedule[22] schedule_occupancy.Hour_24 = occupancy.occupant_schedule[23] - def add_material(self, layer): - materials = self._idf.newidfobject("MATERIAL".upper()) - materials.Name = layer.material.name - materials.Roughness = cte.roughness - materials.Thickness = layer.thickness - materials.Conductivity = layer.material.conductivity - materials.Density = layer.material.density - materials.Specific_Heat = layer.material.specific_heat - materials.Thermal_Absorptance = layer.material.thermal_absorptance - materials.Solar_Absorptance = layer.material.solar_absorptance - materials.Visible_Absorptance = layer.material.visible_absorptance - def _add_construction(self, thermal_boundary): for construction in self._idf.idfobjects[self._CONSTRUCTION]: if construction.Name == thermal_boundary.construction_name: