2023-02-07 13:01:49 -05:00
|
|
|
"""
|
|
|
|
Result factory retrieve the specific tool results and store the data in the given city
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2022 Concordia CERC group
|
|
|
|
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|
|
|
Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
|
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
from hub.helpers.utils import validate_import_export_type
|
2023-05-19 16:01:06 -04:00
|
|
|
from hub.imports.results.insel_monthly_energry_balance import InselMonthlyEnergyBalance
|
|
|
|
from hub.imports.results.simplified_radiosity_algorithm import SimplifiedRadiosityAlgorithm
|
2023-02-07 13:01:49 -05:00
|
|
|
|
|
|
|
|
|
|
|
class ResultFactory:
|
|
|
|
"""
|
2023-02-20 18:36:34 -05:00
|
|
|
ResultFactory class
|
2023-02-07 13:01:49 -05:00
|
|
|
"""
|
2023-02-20 18:36:34 -05:00
|
|
|
|
|
|
|
def __init__(self, handler, city, base_path=None, hp_model=None):
|
|
|
|
"""
|
|
|
|
|
|
|
|
:param handler: pointer to results class to be called
|
|
|
|
:param city: the city object
|
|
|
|
:param base_path: the path to result output file
|
|
|
|
:param hp_model: (optional) the heat pump model for which
|
|
|
|
results are being retrieved
|
|
|
|
"""
|
2023-02-07 13:01:49 -05:00
|
|
|
if base_path is None:
|
|
|
|
base_path = Path(Path(__file__).parent.parent / 'data/results')
|
|
|
|
self._handler = '_' + handler.lower().replace(' ', '_')
|
2023-05-19 16:01:06 -04:00
|
|
|
validate_import_export_type(ResultFactory, handler)
|
2023-02-07 13:01:49 -05:00
|
|
|
self._city = city
|
|
|
|
self._base_path = base_path
|
2023-02-20 18:36:34 -05:00
|
|
|
self._hp_model = hp_model
|
2023-02-07 13:01:49 -05:00
|
|
|
|
|
|
|
def _sra(self):
|
|
|
|
"""
|
|
|
|
Enrich the city with Simplified Radiosity Algorithm results
|
|
|
|
"""
|
|
|
|
SimplifiedRadiosityAlgorithm(self._city, self._base_path).enrich()
|
|
|
|
|
2023-04-27 10:59:03 -04:00
|
|
|
def _insel_monthly_energy_balance(self):
|
2023-02-08 13:40:06 -05:00
|
|
|
"""
|
|
|
|
Enrich the city with insel monthly energy balance results
|
|
|
|
"""
|
|
|
|
InselMonthlyEnergyBalance(self._city, self._base_path).enrich()
|
|
|
|
|
2023-02-07 13:01:49 -05:00
|
|
|
def enrich(self):
|
|
|
|
"""
|
|
|
|
Enrich the city given to the class using the usage factory given handler
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
getattr(self, self._handler, lambda: None)()
|