Skip to content

Commit

Permalink
Merge pull request #796 from RWTH-EBC/795-besmod-examples-without-hyd…
Browse files Browse the repository at this point in the history
…raulic

795 besmod examples without hydraulic
  • Loading branch information
HvanderStok authored Dec 30, 2024
2 parents ea0fbbd + 7e2d10b commit 9689fe1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions teaser/data/output/besmod_output.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""This module contains function for BESMod model generation"""

import os
import warnings
from typing import Optional, Union, List, Dict
from mako.template import Template
from mako.lookup import TemplateLookup
Expand Down Expand Up @@ -103,6 +104,12 @@ def export_besmod(
"Examples 'HeatPumpMonoenergetic' and 'GasBoilerBuildingOnly' "
"require the `THydSup_nominal` parameter."
)
elif THydSup_nominal is None:
THydSup_nominal = 328.15
if custom_examples:
warnings.warn("If you set THydSup_nominal in your custom examples template, "
"please provide it in the export. "
"Otherwise, the default value of 328.15 K will be used.")

t_hyd_sup_nominal_bldg = convert_input(THydSup_nominal, buildings)
t_hyd_sup_old_design_bldg = (
Expand Down
3 changes: 3 additions & 0 deletions tests/test_besmod_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ def test_export_besmod(self):
with self.assertRaises(ValueError):
prj.export_besmod(examples=examples)

prj.export_besmod(examples=["TEASERHeatLoadCalculation"])

prj.export_besmod(examples=examples,
THydSup_nominal=55 + 273.15)

Expand Down Expand Up @@ -110,6 +112,7 @@ def test_export_besmod(self):
THydSupOld_design=t_hyd_sup_nominal_old,
custom_examples=custom_example_template,
custom_script=custom_script)
prj.export_besmod(custom_examples=custom_example_template)

def test_convert_heating_profile(self):
"""Test the conversion of heating profiles for BESMod"""
Expand Down

0 comments on commit 9689fe1

Please sign in to comment.