2020-06-09 14:07:47 -04:00
|
|
|
"""
|
2021-06-03 15:56:59 -04:00
|
|
|
UsageFactory retrieve the specific usage module for the given region
|
2021-08-27 17:20:24 -04:00
|
|
|
This factory can only be called after calling the construction factory so the thermal zones are created.
|
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
|
|
|
|
Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
2020-06-09 14:07:47 -04:00
|
|
|
"""
|
2021-01-06 16:42:38 -05:00
|
|
|
from pathlib import Path
|
2023-01-24 10:51:50 -05:00
|
|
|
from hub.imports.usage.hft_usage_parameters import HftUsageParameters
|
|
|
|
from hub.imports.usage.comnet_usage_parameters import ComnetUsageParameters
|
2023-01-25 19:13:00 -05:00
|
|
|
from hub.hub_logger import logger
|
|
|
|
from hub.helpers.utils import validate_import_export_type
|
2021-08-12 14:18:44 -04:00
|
|
|
|
2020-05-18 13:25:08 -04:00
|
|
|
|
|
|
|
class UsageFactory:
|
2020-06-11 16:55:52 -04:00
|
|
|
"""
|
|
|
|
UsageFactory class
|
|
|
|
"""
|
2021-09-22 07:25:53 -04:00
|
|
|
def __init__(self, handler, city, base_path=None):
|
|
|
|
if base_path is None:
|
|
|
|
base_path = Path(Path(__file__).parent.parent / 'data/usage')
|
2020-06-11 16:55:52 -04:00
|
|
|
self._handler = '_' + handler.lower().replace(' ', '_')
|
2023-01-25 19:13:00 -05:00
|
|
|
class_funcs = validate_import_export_type(UsageFactory)
|
|
|
|
if self._handler not in class_funcs:
|
|
|
|
err_msg = f"Wrong import type. Valid functions include {class_funcs}"
|
|
|
|
logger.error(err_msg)
|
|
|
|
raise Exception(err_msg)
|
2020-05-18 13:25:08 -04:00
|
|
|
self._city = city
|
2021-01-06 16:42:38 -05:00
|
|
|
self._base_path = base_path
|
2020-05-18 13:25:08 -04:00
|
|
|
|
2021-05-27 17:20:06 -04:00
|
|
|
def _hft(self):
|
2021-09-22 07:25:53 -04:00
|
|
|
"""
|
|
|
|
Enrich the city with HFT usage library
|
|
|
|
"""
|
2022-11-25 15:25:59 -05:00
|
|
|
self._city.level_of_detail.usage = 2
|
2021-08-26 13:27:43 -04:00
|
|
|
return HftUsageParameters(self._city, self._base_path).enrich_buildings()
|
2020-05-18 13:25:08 -04:00
|
|
|
|
2021-11-11 17:25:53 -05:00
|
|
|
def _comnet(self):
|
|
|
|
"""
|
|
|
|
Enrich the city with COMNET usage library
|
|
|
|
"""
|
2022-11-25 15:25:59 -05:00
|
|
|
self._city.level_of_detail.usage = 2
|
2021-11-11 17:25:53 -05:00
|
|
|
return ComnetUsageParameters(self._city, self._base_path).enrich_buildings()
|
|
|
|
|
2021-04-07 11:46:44 -04:00
|
|
|
def enrich(self):
|
2020-06-11 16:55:52 -04:00
|
|
|
"""
|
2021-09-22 07:25:53 -04:00
|
|
|
Enrich the city given to the class using the usage factory given handler
|
2020-06-11 16:55:52 -04:00
|
|
|
:return: None
|
|
|
|
"""
|
2020-05-18 13:25:08 -04:00
|
|
|
getattr(self, self._handler, lambda: None)()
|