guille
f2ff10ad47
# Conflicts: # city_model_structure/city.py # city_model_structure/energy_system.py # city_model_structure/fuel.py # city_model_structure/machine.py # city_model_structure/vehicle.py # data/life_cycle_assessment/lca_data.xml # exports/energy_systems_factory.py # helpers/constants.py # helpers/yearly_from_daily_schedules.py # imports/energy_systems/air_source_hp_parameters.py # imports/geometry/rhino.py # imports/geometry_factory.py # imports/life_cycle_assessment/lca_fuel.py # imports/life_cycle_assessment/lca_machine.py # imports/life_cycle_assessment/lca_vehicle.py # imports/life_cycle_assessment_factory.py # requirements.txt # unittests/test_life_cycle_assessment_factory.py
89 lines
3.8 KiB
Python
89 lines
3.8 KiB
Python
"""
|
|
TestUsageFactory test and validate the city model structure usage parameters
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2020 Project Author Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
|
"""
|
|
from pathlib import Path
|
|
from unittest import TestCase
|
|
|
|
from imports.geometry_factory import GeometryFactory
|
|
from imports.construction_factory import ConstructionFactory
|
|
from imports.usage_factory import UsageFactory
|
|
from imports.construction_factory import ConstructionFactory
|
|
from imports.geometry.helpers.geometry_helper import GeometryHelper
|
|
from imports.construction_factory import ConstructionFactory
|
|
|
|
|
|
class TestUsageFactory(TestCase):
|
|
"""
|
|
TestUsageFactory TestCase
|
|
"""
|
|
def setUp(self) -> None:
|
|
"""
|
|
Configure test environment
|
|
:return:
|
|
"""
|
|
self._example_path = (Path(__file__).parent / 'tests_data').resolve()
|
|
|
|
def _get_citygml(self, file):
|
|
file_path = (self._example_path / file).resolve()
|
|
_city = GeometryFactory('citygml', file_path).city
|
|
self.assertIsNotNone(_city, 'city is none')
|
|
return _city
|
|
|
|
def test_comnet(self):
|
|
file = 'pluto_building.gml'
|
|
city = self._get_citygml(file)
|
|
for building in city.buildings:
|
|
building.function = GeometryHelper.pluto_to_function[building.function]
|
|
|
|
ConstructionFactory('nrel', city).enrich()
|
|
UsageFactory('comnet', city).enrich()
|
|
|
|
def test_city_with_usage(self):
|
|
"""
|
|
Enrich the city with the usage information and verify it
|
|
:return: None
|
|
"""
|
|
# case 1: HFT
|
|
file = 'pluto_building.gml'
|
|
city = self._get_citygml(file)
|
|
for building in city.buildings:
|
|
building.function = GeometryHelper.pluto_to_function[building.function]
|
|
ConstructionFactory('nrel', city).enrich()
|
|
UsageFactory('hft', city).enrich()
|
|
for building in city.buildings:
|
|
self.assertIsNot(len(building.usage_zones), 0, 'no building usage_zones defined')
|
|
for usage_zone in building.usage_zones:
|
|
self.assertIsNotNone(usage_zone.usage, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.internal_gains, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.cooling_setpoint, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.heating_setback, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.heating_setpoint, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.occupancy_density, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.hours_day, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.days_year, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.dhw_average_volume_pers_day, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.dhw_preparation_temperature, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.electrical_app_average_consumption_sqm_year, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.is_heated, 'thermal_zone heated is none')
|
|
self.assertIsNotNone(usage_zone.is_cooled, 'thermal_zone cooled is none')
|
|
|
|
|
|
# case 2: CA
|
|
file = 'one_building_in_kelowna.gml'
|
|
city = self._get_citygml(file)
|
|
ConstructionFactory('nrel', city).enrich()
|
|
UsageFactory('ca', city).enrich()
|
|
for building in city.buildings:
|
|
self.assertIsNot(len(building.usage_zones), 0, 'no building usage_zones defined')
|
|
for usage_zone in building.usage_zones:
|
|
self.assertIsNotNone(usage_zone.usage, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.internal_gains, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.cooling_setpoint, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.heating_setback, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.heating_setpoint, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.occupancy_density, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.hours_day, 'usage is none')
|
|
self.assertIsNotNone(usage_zone.days_year, 'usage is none')
|