2021-01-05 15:01:36 -05:00
|
|
|
"""
|
|
|
|
CaPhysicsParameters import the construction and material information for Canada
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
2021-06-10 08:29:24 -04:00
|
|
|
Copyright © 2020 Project Author Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
2021-01-05 15:01:36 -05:00
|
|
|
"""
|
2021-01-07 17:33:55 -05:00
|
|
|
import sys
|
|
|
|
|
2021-06-03 15:56:59 -04:00
|
|
|
from imports.construction.nrel_physics_interface import NrelPhysicsInterface
|
|
|
|
from imports.construction.helpers.construction_helper import ConstructionHelper
|
2021-08-12 11:58:24 -04:00
|
|
|
from city_model_structure.building_demand.layer import Layer
|
|
|
|
from city_model_structure.building_demand.material import Material
|
2021-01-05 15:01:36 -05:00
|
|
|
|
|
|
|
|
2021-01-06 16:42:38 -05:00
|
|
|
class CaPhysicsParameters(NrelPhysicsInterface):
|
2021-01-05 15:01:36 -05:00
|
|
|
"""
|
|
|
|
CaPhysicsParameters class
|
|
|
|
"""
|
|
|
|
def __init__(self, city, base_path):
|
2021-01-06 16:42:38 -05:00
|
|
|
super().__init__(base_path, 'ca_constructions_reduced.xml', 'ca_archetypes_reduced.xml')
|
2021-01-05 15:01:36 -05:00
|
|
|
self._city = city
|
2021-01-06 16:42:38 -05:00
|
|
|
|
2021-01-07 18:12:13 -05:00
|
|
|
def enrich_buildings(self):
|
2021-01-06 16:42:38 -05:00
|
|
|
"""
|
2021-05-26 18:17:23 -04:00
|
|
|
Returns the city with the construction parameters assigned to the buildings
|
2021-01-06 16:42:38 -05:00
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
city = self._city
|
|
|
|
# it is assumed that all buildings have the same archetypes' keys
|
|
|
|
for building in city.buildings:
|
2021-05-27 17:20:06 -04:00
|
|
|
archetype = self._search_archetype(ConstructionHelper.nrcan_from_function(building.function),
|
|
|
|
building.year_of_construction)
|
2021-01-06 16:42:38 -05:00
|
|
|
if archetype is None:
|
2021-05-27 17:20:06 -04:00
|
|
|
sys.stderr.write(f'Building {building.name} has unknown archetype for building function: '
|
|
|
|
f'{ConstructionHelper.nrcan_from_function(building.function)} '
|
2021-01-07 18:12:13 -05:00
|
|
|
f'and building year of construction: {building.year_of_construction}\n')
|
2021-01-06 16:42:38 -05:00
|
|
|
continue
|
|
|
|
self._assign_values(building, archetype)
|
|
|
|
|
2021-01-07 19:46:52 -05:00
|
|
|
def _search_archetype(self, function, year_of_construction):
|
2021-01-06 16:42:38 -05:00
|
|
|
for building_archetype in self._building_archetypes:
|
2021-01-07 18:12:13 -05:00
|
|
|
a_ft = str(building_archetype.archetype_keys['@function'])
|
|
|
|
a_pc = str(building_archetype.archetype_keys['@periodOfConstruction'])
|
2021-01-06 16:42:38 -05:00
|
|
|
a_yc1 = int(a_pc.split(sep='-')[0])
|
|
|
|
a_yc2 = int(a_pc.split(sep='-')[1])
|
2021-01-07 19:46:52 -05:00
|
|
|
if a_ft == str(function):
|
|
|
|
if a_yc1 <= int(year_of_construction) <= a_yc2:
|
2021-01-06 16:42:38 -05:00
|
|
|
return building_archetype
|
|
|
|
return None
|
|
|
|
|
|
|
|
def _assign_values(self, building, archetype):
|
|
|
|
building.average_storey_height = archetype.average_storey_height
|
|
|
|
building.storeys_above_ground = archetype.storeys_above_ground
|
|
|
|
for thermal_zone in building.thermal_zones:
|
|
|
|
thermal_zone.additional_thermal_bridge_u_value = archetype.additional_thermal_bridge_u_value
|
|
|
|
thermal_zone.effective_thermal_capacity = archetype.effective_thermal_capacity
|
|
|
|
thermal_zone.indirectly_heated_area_ratio = archetype.indirectly_heated_area_ratio
|
|
|
|
thermal_zone.infiltration_rate_system_on = archetype.infiltration_rate_system_on
|
|
|
|
thermal_zone.infiltration_rate_system_off = archetype.infiltration_rate_system_off
|
|
|
|
for thermal_boundary in thermal_zone.bounded:
|
2021-05-26 18:17:23 -04:00
|
|
|
construction_type = ConstructionHelper.nrcan_construction_types[thermal_boundary.type]
|
2021-01-06 16:42:38 -05:00
|
|
|
thermal_boundary_archetype = self._search_construction_in_archetype(archetype, construction_type)
|
|
|
|
thermal_boundary.u_value = thermal_boundary_archetype.overall_u_value
|
|
|
|
thermal_boundary.outside_solar_absorptance = thermal_boundary_archetype.outside_solar_absorptance
|
|
|
|
thermal_boundary.construction_name = thermal_boundary_archetype.construction_name
|
|
|
|
thermal_boundary.window_ratio = thermal_boundary_archetype.window_ratio
|
2021-08-26 09:36:10 -04:00
|
|
|
if thermal_boundary.thermal_openings is not None:
|
|
|
|
for thermal_opening in thermal_boundary.thermal_openings:
|
|
|
|
if thermal_boundary_archetype.thermal_opening is not None:
|
|
|
|
thermal_opening_archetype = thermal_boundary_archetype.thermal_opening
|
|
|
|
thermal_opening.frame_ratio = thermal_opening_archetype.frame_ratio
|
|
|
|
thermal_opening.g_value = thermal_opening_archetype.g_value
|
|
|
|
thermal_opening.overall_u_value = thermal_opening_archetype.overall_u_value
|