2020-06-09 14:07:47 -04:00
|
|
|
"""
|
2021-05-26 18:17:23 -04:00
|
|
|
ConstructionFactory (before PhysicsFactory) retrieve the specific construction module for the given region
|
2020-06-09 14:07:47 -04:00
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
2022-04-08 09:35:33 -04:00
|
|
|
Copyright © 2022 Concordia CERC group
|
|
|
|
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
2022-12-15 07:42:59 -05:00
|
|
|
Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
2020-06-09 14:07:47 -04:00
|
|
|
"""
|
2022-12-15 07:42:59 -05:00
|
|
|
|
2023-01-25 19:13:00 -05:00
|
|
|
from hub.helpers.utils import validate_import_export_type
|
2023-01-26 05:21:34 -05:00
|
|
|
from hub.imports.construction.nrcan_physics_parameters import NrcanPhysicsParameters
|
2023-05-19 16:01:06 -04:00
|
|
|
from hub.imports.construction.nrel_physics_parameters import NrelPhysicsParameters
|
2023-07-12 11:36:35 -04:00
|
|
|
from hub.imports.construction.eilat_physics_parameters import EilatPhysicsParameters
|
2020-05-18 13:25:08 -04:00
|
|
|
|
|
|
|
|
2021-05-26 18:17:23 -04:00
|
|
|
class ConstructionFactory:
|
2020-06-11 15:45:11 -04:00
|
|
|
"""
|
2022-12-15 07:42:59 -05:00
|
|
|
ConstructionFactory class
|
2020-06-11 15:45:11 -04:00
|
|
|
"""
|
2023-04-28 16:31:53 -04:00
|
|
|
def __init__(self, handler, city):
|
2023-05-19 16:01:06 -04:00
|
|
|
self._handler = '_' + handler.lower()
|
|
|
|
validate_import_export_type(ConstructionFactory, handler)
|
2020-05-18 13:25:08 -04:00
|
|
|
self._city = city
|
|
|
|
|
2021-05-27 17:20:06 -04:00
|
|
|
def _nrel(self):
|
2021-09-22 07:25:53 -04:00
|
|
|
"""
|
|
|
|
Enrich the city by using NREL information
|
|
|
|
"""
|
2023-04-28 16:31:53 -04:00
|
|
|
NrelPhysicsParameters(self._city).enrich_buildings()
|
2022-11-25 15:25:59 -05:00
|
|
|
self._city.level_of_detail.construction = 2
|
2023-05-12 09:27:29 -04:00
|
|
|
for building in self._city.buildings:
|
|
|
|
building.level_of_detail.construction = 2
|
2020-05-18 13:25:08 -04:00
|
|
|
|
2022-12-15 07:42:59 -05:00
|
|
|
def _nrcan(self):
|
|
|
|
"""
|
|
|
|
Enrich the city by using NRCAN information
|
|
|
|
"""
|
2023-04-28 16:31:53 -04:00
|
|
|
NrcanPhysicsParameters(self._city).enrich_buildings()
|
2022-11-25 15:25:59 -05:00
|
|
|
self._city.level_of_detail.construction = 2
|
2023-05-12 09:27:29 -04:00
|
|
|
for building in self._city.buildings:
|
|
|
|
building.level_of_detail.construction = 2
|
2020-05-18 13:25:08 -04:00
|
|
|
|
2023-07-12 11:36:35 -04:00
|
|
|
def _eilat(self):
|
|
|
|
"""
|
|
|
|
Enrich the city by using Eilat information
|
|
|
|
"""
|
|
|
|
EilatPhysicsParameters(self._city).enrich_buildings()
|
|
|
|
self._city.level_of_detail.construction = 2
|
|
|
|
for building in self._city.buildings:
|
|
|
|
building.level_of_detail.construction = 2
|
|
|
|
|
2021-04-07 11:46:44 -04:00
|
|
|
def enrich(self):
|
2020-06-11 15:45:11 -04:00
|
|
|
"""
|
2021-09-22 07:25:53 -04:00
|
|
|
Enrich the city given to the class using the class given handler
|
2020-06-11 15:45:11 -04:00
|
|
|
:return: None
|
|
|
|
"""
|
2023-05-30 17:13:49 -04:00
|
|
|
getattr(self, self._handler, lambda: None)()
|
2024-06-27 10:22:57 -04:00
|
|
|
for building in self._city.buildings:
|
|
|
|
_ = building.thermal_zones_from_internal_zones # ensure internal zones initialization
|