Adding materials and construction
This commit is contained in:
parent
62e561824b
commit
ad9b40be48
|
@ -9,3 +9,4 @@ time_scale = {
|
||||||
'month': 'month',
|
'month': 'month',
|
||||||
'year': 'year'
|
'year': 'year'
|
||||||
}
|
}
|
||||||
|
roughness="MediumRough"
|
||||||
|
|
|
@ -7,7 +7,7 @@ from geomeppy import IDF
|
||||||
import os
|
import os
|
||||||
import esoreader
|
import esoreader
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
import helpers
|
||||||
|
|
||||||
class IdfHelper:
|
class IdfHelper:
|
||||||
_THERMOSTAT = 'HVACTEMPLATE:THERMOSTAT'
|
_THERMOSTAT = 'HVACTEMPLATE:THERMOSTAT'
|
||||||
|
@ -31,6 +31,33 @@ class IdfHelper:
|
||||||
self._idf = IDF(self._idf_file_path, self._epw_file_path)
|
self._idf = IDF(self._idf_file_path, self._epw_file_path)
|
||||||
self._idf.epw = self._epw_file_path
|
self._idf.epw = self._epw_file_path
|
||||||
|
|
||||||
|
def add_material(self, layer):
|
||||||
|
materials = self._idf.newidfobject("MATERIAL".upper())
|
||||||
|
materials.Name = layer.material.name
|
||||||
|
materials.Roughness = helpers.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 boundary in thermal_boundary:
|
||||||
|
for layer in boundary:
|
||||||
|
if len(layer) == 2:
|
||||||
|
self._idf.newidfobject("CONSTRUCTION", Name=boundary.construction_name,
|
||||||
|
Outside_Layer=layer[0].material.name, Layer_2=layer[1].material.name)
|
||||||
|
elif len(layer) == 3:
|
||||||
|
self._idf.newidfobject("CONSTRUCTION", Name=boundary.construction_name,
|
||||||
|
Outside_Layer=layer[0].material.name, Layer_2=layer[1].material.name, Layer_3=layer[2].material.name)
|
||||||
|
elif len(layer) == 4:
|
||||||
|
self._idf.newidfobject("CONSTRUCTION", Name=boundary.construction_name,
|
||||||
|
Outside_Layer=layer[0].material.name, Layer_2=layer[1].material.name, Layer_3=layer[2].material.name, Layer_4=layer[3].material.name)
|
||||||
|
else:
|
||||||
|
print("Could not find the true construction")
|
||||||
|
|
||||||
def add_heating_system(self, building):
|
def add_heating_system(self, building):
|
||||||
for usage_zone in building.usage_zones:
|
for usage_zone in building.usage_zones:
|
||||||
thermostat_name = f'Thermostat {building.name}'
|
thermostat_name = f'Thermostat {building.name}'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user