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

fix wrong assignment of humidity #644

Merged
merged 2 commits into from
Apr 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ models for all libraries supporting the

## Version

TEASER is a ongoing research project, the current version is 0.7.2, which is
TEASER is a ongoing research project, the current version is 0.7.3, which is
still a pre-release.

## How to use TEASER
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# The short X.Y version.
version = "0.7."
# The full version, including alpha/beta/rc tags.
release = "0.7.1"
release = "0.7.3"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="teaser",
version="0.7.2",
version="0.7.3",
description="Tool for Energy Analysis and Simulation for " "Efficient Retrofit ",
url="https://github.com/RWTH-EBC/TEASER",
author="RWTH Aachen University, E.ON Energy Research Center, "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def max_relative_humidity_profile(self):
def max_relative_humidity_profile(self, value):
if not isinstance(value, list):
value = [value]
self._min_relative_humidity_profile = value
self._max_relative_humidity_profile = value
self.schedules["max_relative_humidity_profile"] = list(
islice(cycle(value), 8760)
)
Expand Down