hub/tests/test_idf.py

113 lines
3.8 KiB
Python
Raw Normal View History

"""
TestOccupancyFactory test and validate the city model structure occupancy 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
from factories.geometry.geometry_factory import GeometryFactory
from factories.physics.physics_factory import PhysicsFactory
from factories.usage.usage_factory import UsageFactory
from helpers.idf_helper import IdfHelper
2020-10-27 13:19:50 -04:00
from geomeppy import IDF
class TestIdf(TestCase):
"""
Test IDF Class
"""
def setUp(self) -> None:
"""
Test setup
:return: None
"""
self._city_gml = None
self._example_path = (Path(__file__).parent.parent / 'tests_data').resolve()
2020-10-27 13:19:50 -04:00
def _get_city(self):
if self._city_gml is None:
file_path = (self._example_path / 'attributes.gml').resolve()
self._city_gml = GeometryFactory('citygml', file_path).city
2020-10-27 13:19:50 -04:00
PhysicsFactory('us_new_york', self._city_gml, base_path=self._example_path)
UsageFactory('us_new_york', self._city_gml)
return self._city_gml
2020-10-27 13:19:50 -04:00
def test_idf_blocks(self):
idd_file_path = (self._example_path / 'energy+.idd').resolve()
idf_file_path = (self._example_path / 'minimal.idf').resolve()
epw_file_path = (self._example_path / 'montreal.epw').resolve()
2020-10-26 13:47:10 -04:00
_idf = IdfHelper(idf_file_path, idd_file_path, epw_file_path)
2020-10-27 13:19:50 -04:00
city = self._get_city()
for building in city.buildings:
_idf.add_block(building)
2020-10-27 13:19:50 -04:00
_idf.run(output_prefix='test_idf_blocks', output_directory="ep_outputs")
2020-10-28 12:20:13 -04:00
_idf.read_eso(str(self._example_path))
self.assertEqual(1, 2, "arent equal")
# todo: clean up the files
2020-10-26 13:33:03 -04:00
2020-10-27 13:19:50 -04:00
def test_idf_surfaces(self):
idd_file_path = (self._example_path / 'energy+.idd').resolve()
idf_file_path = (self._example_path / 'minimal.idf').resolve()
epw_file_path = (self._example_path / 'montreal.epw').resolve()
2020-10-28 12:20:13 -04:00
2020-10-27 13:19:50 -04:00
_idf = IdfHelper(idf_file_path, idd_file_path, epw_file_path)
city = self._get_city()
for building in city.buildings:
_idf.add_surfaces(building)
2020-10-28 12:20:13 -04:00
print("prepare to run")
_idf.run(output_prefix='test_idf_surfaces', output_directory="ep_outputs")
print("done...")
self.assertEqual(1, 2, "arent equal")
# todo: clean up the files
2020-10-26 13:33:03 -04:00
2020-10-27 13:19:50 -04:00
def test_tutorial_2(self):
idd_file_path = (self._example_path / 'energy+.idd').resolve()
idf_file_path = (self._example_path / 'minimal.idf').resolve()
epw_file_path = (self._example_path / 'montreal.epw').resolve()
2020-10-28 12:20:13 -04:00
IDF.setiddname(idd_file_path, testing=True)
idf = IDF(idf_file_path)
idf.epw = epw_file_path
2020-10-27 13:19:50 -04:00
idf.add_block(
name="Two storey",
coordinates=[(10, 0), (10, 5), (0, 5), (0, 0)],
height=6,
num_stories=2,
)
idf.add_block(
name="One storey", coordinates=[(10, 5), (10, 10), (0, 10), (0, 5)], height=3
)
idf.intersect_match()
idf.set_default_constructions()
# add a heating system
stat = idf.newidfobject(
"HVACTEMPLATE:THERMOSTAT",
Name="Zone Stat",
Constant_Heating_Setpoint=20,
Constant_Cooling_Setpoint=25,
)
for zone in idf.idfobjects["ZONE"]:
idf.newidfobject(
"HVACTEMPLATE:ZONE:IDEALLOADSAIRSYSTEM",
Zone_Name=zone.Name,
Template_Thermostat_Name=stat.Name,
)
# add some output variables
idf.newidfobject(
"OUTPUT:VARIABLE",
Variable_Name="Zone Ideal Loads Supply Air Total Heating Energy",
Reporting_Frequency="Hourly",
)
idf.newidfobject(
"OUTPUT:VARIABLE",
Variable_Name="Zone Ideal Loads Supply Air Total Cooling Energy",
Reporting_Frequency="Hourly",
)
2020-10-28 12:20:13 -04:00
idf.set_wwr(0.4, construction="Project External Window")
2020-10-27 13:19:50 -04:00
idf.run(
2020-10-28 12:20:13 -04:00
output_prefix=f"tutorial_2",
output_directory="ep_outputs",
expandobjects=True,
verbose="q",
)