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
|
|
|
|
"""
|
2020-05-29 07:25:33 -04:00
|
|
|
from unittest import TestCase
|
2020-06-04 12:47:48 -04:00
|
|
|
from pathlib import Path
|
|
|
|
from geometry.geometry_factory import GeometryFactory
|
|
|
|
from physics.physics_factory import PhysicsFactory
|
2020-05-29 07:25:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
class TestPhysicsFactory(TestCase):
|
2020-06-04 12:47:48 -04:00
|
|
|
def setUp(self) -> None:
|
|
|
|
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
|
|
|
|
2020-06-04 12:47:48 -04:00
|
|
|
def get_citygml(self):
|
|
|
|
if self._city_gml is None:
|
|
|
|
file_path = (self._example_path / 'buildings.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_city', self._nyc_with_physics, base_path=self._example_path)
|
|
|
|
return self._nyc_with_physics
|
|
|
|
|
|
|
|
def test_city_with_physics(self):
|
2020-06-05 12:24:03 -04:00
|
|
|
city = self.get_city_with_physics()
|
|
|
|
for city_object in city.city_objects:
|
|
|
|
self.assertIsNotNone(city_object.average_storey_height, 'average_storey_height is none')
|
|
|
|
self.assertIsNotNone(city_object.storeys_above_ground, 'storeys_above_ground is none')
|
|
|
|
for thermal_zone in city_object.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.outside_thermal_absorptance, 'outside_thermal_absorptance is none')
|
|
|
|
self.assertIsNotNone(thermal_boundary.outside_visible_absorptance, 'outside_visible_absorptance is none')
|
|
|
|
self.assertIsNotNone(thermal_boundary.window_ratio, 'window_ratio is none')
|
|
|
|
self.assertIsNotNone(thermal_boundary.layers, 'layers is none')
|