hub/tests/test_physics_factory.py

60 lines
2.6 KiB
Python
Raw Normal View History

2020-06-09 14:07:47 -04:00
"""
TestPhysicsFactory test and validate the city model structure physics parameters
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
from pathlib import Path
from unittest import TestCase
2020-10-29 08:16:48 -04:00
from factories.geometry_factory import GeometryFactory
from factories.physics_factory import PhysicsFactory
2020-05-29 07:25:33 -04:00
class TestPhysicsFactory(TestCase):
"""
TestPhysicsFactory TestCase
"""
def setUp(self) -> None:
"""
Configure test environment
:return:
"""
self._city_gml = None
self._nyc_with_physics = None
self._example_path = (Path(__file__).parent.parent / 'tests_data').resolve()
2020-05-29 07:25:33 -04:00
def _get_citygml(self):
if self._city_gml is None:
file_path = (self._example_path / '20buildings.gml').resolve()
self._city_gml = GeometryFactory('citygml', file_path).city
self.assertIsNotNone(self._city_gml, 'city is none')
return self._city_gml
def _get_city_with_physics(self):
if self._nyc_with_physics is None:
self._nyc_with_physics = self._get_citygml()
PhysicsFactory('us_new_york', self._nyc_with_physics)
return self._nyc_with_physics
def test_city_with_physics(self):
"""
Enrich the city with the physic information and verify ot
:return: None
"""
city = self._get_city_with_physics()
2020-06-26 10:06:43 -04:00
for building in city.buildings:
self.assertIsNotNone(building.average_storey_height, 'average_storey_height is none')
2020-06-26 10:06:43 -04:00
self.assertIsNotNone(building.storeys_above_ground, 'storeys_above_ground is none')
for thermal_zone in building.thermal_zones:
self.assertIsNotNone(thermal_zone.effective_thermal_capacity, 'effective_thermal_capacity is none')
self.assertIsNotNone(thermal_zone.additional_thermal_bridge_u_value,
'additional_thermal_bridge_u_value is none')
self.assertIsNotNone(thermal_zone.indirectly_heated_area_ratio, 'indirectly_heated_area_ratio is none')
self.assertIsNotNone(thermal_zone.infiltration_rate_system_on, 'infiltration_rate_system_on is none')
self.assertIsNotNone(thermal_zone.infiltration_rate_system_off, 'infiltration_rate_system_off is none')
self.assertIsNotNone(thermal_zone.bounded, 'bounded is none')
for thermal_boundary in thermal_zone.bounded:
self.assertIsNotNone(thermal_boundary.outside_solar_absorptance, 'outside_solar_absorptance is none')
self.assertIsNotNone(thermal_boundary.window_ratio, 'window_ratio is none')
self.assertIsNotNone(thermal_boundary.layers, 'layers is none')