2021-10-18 11:37:20 -04:00
|
|
|
"""
|
|
|
|
EnergySystemsFactory retrieve the energy system module for the given region
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2020 Project Author Pilar Monsalvete pilar.monsalvete@concordi.ca
|
2021-12-15 04:25:37 -05:00
|
|
|
Contributor Peter Yefi peteryefi@gmail.com
|
2021-10-18 11:37:20 -04:00
|
|
|
"""
|
|
|
|
from pathlib import Path
|
2021-12-15 04:25:37 -05:00
|
|
|
from imports.energy_systems.air_source_hp_parameters import AirSourceHeatPumpParameters
|
|
|
|
from imports.energy_systems.water_to_water_hp_parameters import WaterToWaterHPParameters
|
2021-10-18 11:37:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
class EnergySystemsFactory:
|
|
|
|
"""
|
|
|
|
EnergySystemsFactory class
|
|
|
|
"""
|
2021-10-26 07:12:02 -04:00
|
|
|
|
2021-10-18 11:37:20 -04:00
|
|
|
def __init__(self, handler, city, base_path=None):
|
|
|
|
if base_path is None:
|
|
|
|
base_path = Path(Path(__file__).parent.parent / 'data/energy_systems')
|
|
|
|
self._handler = '_' + handler.lower().replace(' ', '_')
|
|
|
|
self._city = city
|
|
|
|
self._base_path = base_path
|
|
|
|
|
2021-12-15 04:25:37 -05:00
|
|
|
def _air_source_hp(self):
|
2021-10-18 11:37:20 -04:00
|
|
|
"""
|
|
|
|
Enrich the city by using xlsx heat pump information
|
|
|
|
"""
|
2021-12-15 04:25:37 -05:00
|
|
|
AirSourceHeatPumpParameters(self._city, self._base_path).enrich_city()
|
|
|
|
|
|
|
|
def _water_to_water_hp(self):
|
|
|
|
"""
|
|
|
|
Enrich the city by using water to water heat pump information
|
|
|
|
"""
|
|
|
|
WaterToWaterHPParameters(self._city, self._base_path).enrich_city()
|
2021-10-18 11:37:20 -04:00
|
|
|
|
|
|
|
def enrich(self):
|
|
|
|
"""
|
|
|
|
Enrich the city given to the class using the class given handler
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
getattr(self, self._handler, lambda: None)()
|