Skip to content

Commit

Permalink
fix export of non-hydraulic system without THydSup_nominal
Browse files Browse the repository at this point in the history
  • Loading branch information
HvanderStok committed Dec 18, 2024
1 parent 7778e72 commit 7e2d10b
Show file tree
Hide file tree
Showing 2 changed files with 8 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
1 change: 1 addition & 0 deletions tests/test_besmod_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,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 7e2d10b

Please sign in to comment.