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-05-17 17:10:30 -04:00
|
|
|
import logging
|
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.nrel_physics_parameters import NrelPhysicsParameters
|
|
|
|
from hub.imports.construction.nrcan_physics_parameters import NrcanPhysicsParameters
|
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):
|
2020-06-11 15:45:11 -04:00
|
|
|
self._handler = '_' + handler.lower().replace(' ', '_')
|
2023-01-25 19:13:00 -05:00
|
|
|
class_funcs = validate_import_export_type(ConstructionFactory)
|
|
|
|
if self._handler not in class_funcs:
|
2023-05-17 17:10:30 -04:00
|
|
|
error_message = f"Wrong import type [{self._handler}]. Valid functions include {class_funcs}"
|
|
|
|
logging.error(error_message)
|
|
|
|
raise Exception(error_message)
|
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
|
|
|
|
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
|
|
|
|
"""
|
2022-04-19 15:49:41 -04:00
|
|
|
getattr(self, self._handler, lambda: None)()
|
2022-11-23 10:20:33 -05:00
|
|
|
|
|
|
|
def enrich_debug(self):
|
|
|
|
"""
|
|
|
|
Enrich the city given to the class using the class given handler
|
|
|
|
:return: None
|
|
|
|
"""
|
2023-04-28 16:31:53 -04:00
|
|
|
NrelPhysicsParameters(self._city).enrich_buildings()
|