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
|
|
|
|
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
2021-10-18 11:37:20 -04:00
|
|
|
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
|
2021-06-03 15:56:59 -04:00
|
|
|
from imports.usage.hft_usage_parameters import HftUsageParameters
|
2021-08-11 11:14:06 -04:00
|
|
|
from imports.usage.ca_usage_parameters import CaUsageParameters
|
2021-11-11 17:25:53 -05:00
|
|
|
from imports.usage.comnet_usage_parameters import ComnetUsageParameters
|
2021-08-12 14:18:44 -04:00
|
|
|
# todo: handle missing lambda and rise error.
|
|
|
|
|
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(' ', '_')
|
2020-05-18 13:25:08 -04:00
|
|
|
self._city = city
|
2021-01-06 16:42:38 -05:00
|
|
|
self._base_path = base_path
|
2021-08-27 17:20:24 -04:00
|
|
|
for building in city.buildings:
|
|
|
|
if len(building.thermal_zones) == 0:
|
|
|
|
raise Exception('It seems that the usage factory is being called before the construction factory. '
|
|
|
|
'Please ensure that the construction factory is called first.')
|
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
|
|
|
|
"""
|
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-08-11 11:14:06 -04:00
|
|
|
def _ca(self):
|
2021-09-22 07:25:53 -04:00
|
|
|
"""
|
|
|
|
Enrich the city with Canada usage library
|
|
|
|
"""
|
2021-08-26 13:27:43 -04:00
|
|
|
return CaUsageParameters(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
|
|
|
|
"""
|
|
|
|
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)()
|