system_assignation/hub/imports/usage_factory.py

52 lines
1.8 KiB
Python
Raw Normal View History

2020-06-09 14:07:47 -04:00
"""
UsageFactory retrieve the specific usage module for the given region
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 © 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
"""
2023-05-17 17:10:30 -04:00
import logging
2023-01-24 10:51:50 -05:00
from hub.imports.usage.comnet_usage_parameters import ComnetUsageParameters
from hub.imports.usage.nrcan_usage_parameters import NrcanUsageParameters
from hub.helpers.utils import validate_import_export_type
class UsageFactory:
"""
UsageFactory class
"""
def __init__(self, handler, city):
self._handler = '_' + handler.lower().replace(' ', '_')
class_funcs = validate_import_export_type(UsageFactory)
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)
self._city = city
def _comnet(self):
2021-09-22 07:25:53 -04:00
"""
Enrich the city with COMNET usage library
2021-09-22 07:25:53 -04:00
"""
ComnetUsageParameters(self._city).enrich_buildings()
2023-05-12 09:27:29 -04:00
self._city.level_of_detail.usage = 2
for building in self._city.buildings:
building.level_of_detail.usage = 2
def _nrcan(self):
"""
Enrich the city with NRCAN usage library
"""
NrcanUsageParameters(self._city).enrich_buildings()
2023-05-12 09:27:29 -04:00
self._city.level_of_detail.usage = 2
for building in self._city.buildings:
building.level_of_detail.usage = 2
def enrich(self):
"""
2021-09-22 07:25:53 -04:00
Enrich the city given to the class using the usage factory given handler
:return: None
"""
getattr(self, self._handler, lambda: None)()