forked from s_ranjbar/city_retrofit
Merge pull request 'added surface type to construction names' (#36) from bug_in_construction_importers into main
Reviewed-on: https://nextgenerations-cities.encs.concordia.ca/gitea/CERC/hub/pulls/36
This commit is contained in:
commit
e82d20bfd7
|
@ -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