Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

806 add simplified transfer systems #807

Draft
wants to merge 29 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
208ae12
add dynamic heating and cooling profiles
DaJansenGit Nov 27, 2024
9c0e78b
adjust PI control values to be more realistic
DaJansenGit Nov 27, 2024
9f11638
add MFH living conditions with reduced persons/m2 and set back for he…
DaJansenGit Nov 30, 2024
0bca1c0
Merge branch 'main' into 787-dynamic-heating-and-cooling-profiles
DaJansenGit Dec 12, 2024
519fc1b
add simplified transfer systems to TEASER
DaJansenGit Jan 17, 2025
0ec957b
Merge branch 'refs/heads/803-wrong-values-in-shading_max_irr-array' i…
DaJansenGit Jan 17, 2025
32dd842
raise version
DaJansenGit Jan 17, 2025
20c45da
fix modelica path for transfer system
DaJansenGit Jan 17, 2025
2a12e78
correct path
DaJansenGit Jan 17, 2025
f0d2f18
use name of enum to fix path of transfer system
DaJansenGit Jan 17, 2025
d72b574
fix model attr check
DaJansenGit Jan 17, 2025
4156292
Merge branch 'refs/heads/787-dynamic-heating-and-cooling-profiles' in…
DaJansenGit Jan 17, 2025
ff93de0
temp commit: allow to overwrite pi control values
DaJansenGit Jan 17, 2025
6d3bb6d
add changes for two element as well
DaJansenGit Jan 17, 2025
7465c61
Update transfer system to set parameters in zone params
HoeppJ Jan 20, 2025
bd1e6b5
Delete TransferSystem class
HoeppJ Jan 20, 2025
336e303
Delete TransferSystem class since parameters are given via zone params
HoeppJ Jan 20, 2025
22d6050
Merge remote-tracking branch 'origin/806-add-simplified-transfer-syst…
HoeppJ Jan 20, 2025
31206cd
Change heater/cooler pi parameter input
HoeppJ Jan 20, 2025
41666b4
Change heater/cooler pi parameter input
HoeppJ Jan 20, 2025
7b30e4b
Change heater/cooler pi parameter input
HoeppJ Jan 21, 2025
d704d28
added dynamic supply temperature control in central ahu
HoeppJ Jan 22, 2025
fe6d9ab
bug fix
HoeppJ Jan 22, 2025
76def2a
bug fix
HoeppJ Jan 22, 2025
2ed0356
update default values of transfer system pt1 damper
HoeppJ Jan 23, 2025
8101a4f
add EnEv window for years 2016 to 2100
HoeppJ Jan 25, 2025
278d80a
add EnEv window for years 2016 to 2100
HoeppJ Jan 25, 2025
7c98cec
update outer walls in TypeElements_KFW.json
HoeppJ Feb 4, 2025
40ec6b3
update outer walls in TypeElements_KFW.json
HoeppJ Feb 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion teaser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import sys
import os

__version__ = "1.1.3"
__version__ = "1.1.4"


new_path = os.path.join(os.path.expanduser('~'), ("TEASEROutput"))
Expand Down
24 changes: 24 additions & 0 deletions teaser/data/input/inputdata/TypeElements_IWU.json
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,30 @@
}
}
},
"Window_[2016, 2100]_EnEv": {
"building_age_group": [
2016,
2100
],
"construction_data": "EnEv",
"inner_radiation": 5.0,
"inner_convection": 2.7,
"outer_radiation": 5.0,
"outer_convection": 20.0,
"g_value": 0.6,
"a_conv": 0.03,
"shading_g_total": 1.0,
"shading_max_irr": 100.0,
"layer": {
"0": {
"thickness": 0.024,
"material": {
"name": "Glas1995_2015EnEV",
"material_id": "36eb3906-855e-11e6-a498-2cd444b2e704"
}
}
}
},
"Rooftop_[0, 1918]_iwu_heavy": {
"building_age_group": [
0,
Expand Down
Loading
Loading