Add atributes for constructions materials and layers

This commit is contained in:
Guille 2020-11-05 11:45:39 -05:00
parent 7ffe395aa9
commit 794f41262b
2 changed files with 3 additions and 1 deletions

View File

@ -19,6 +19,9 @@ class IdfHelper:
'Ground': 'floor',
'Roof': 'roof'
}
idf_usage = {
'residential': 'residential_building'
}
def __init__(self, idf_file_path, idd_file_path, epw_file_path):
self._idd_file_path = str(idd_file_path)

View File

@ -57,4 +57,3 @@ class TestPhysicsFactory(TestCase):
self.assertIsNotNone(thermal_boundary.outside_solar_absorptance, 'outside_solar_absorptance is none')
self.assertIsNotNone(thermal_boundary.window_ratio, 'window_ratio is none')
self.assertIsNotNone(thermal_boundary.layers, 'layers is none')
print(thermal_boundary.construction_name)