added surface type to construction names #36
|
@ -97,7 +97,7 @@ class EilatPhysicsParameters:
|
|||
thermal_zone.infiltration_rate_system_off = archetype.infiltration_rate_for_ventilation_system_off
|
||||
for thermal_boundary in thermal_zone.thermal_boundaries:
|
||||
construction_archetype = self._search_construction_in_archetype(archetype, thermal_boundary.type)
|
||||
thermal_boundary.construction_name = construction_archetype.name
|
||||
thermal_boundary.construction_name = f'{thermal_boundary.type}_{construction_archetype.name}'
|
||||
try:
|
||||
thermal_boundary.window_ratio = 0
|
||||
if thermal_boundary.type in (cte.WALL, cte.ROOF):
|
||||
|
|
|
@ -97,7 +97,7 @@ class NrcanPhysicsParameters:
|
|||
thermal_zone.infiltration_rate_system_off = archetype.infiltration_rate_for_ventilation_system_off
|
||||
for thermal_boundary in thermal_zone.thermal_boundaries:
|
||||
construction_archetype = self._search_construction_in_archetype(archetype, thermal_boundary.type)
|
||||
thermal_boundary.construction_name = construction_archetype.name
|
||||
thermal_boundary.construction_name = f'{thermal_boundary.type}_{construction_archetype.name}'
|
||||
try:
|
||||
thermal_boundary.window_ratio = 0
|
||||
if thermal_boundary.type in ( cte.WALL, cte.ROOF):
|
||||
|
|
Loading…
Reference in New Issue
Block a user