Skip to content

Commit

Permalink
Merge pull request #552 from RWTH-EBC/bugfix_aixlib_version
Browse files Browse the repository at this point in the history
fixed aixlib version
  • Loading branch information
MichaMans authored Dec 10, 2018
2 parents b2d959c + bdec8a6 commit fee0cc9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ models for all libraries supporting the

## Version

TEASER is a ongoing research project, the current version is 0.6.4, which is
TEASER is a ongoing research project, the current version is 0.6.5, 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 @@ -60,7 +60,7 @@
# The short X.Y version.
version = '0.6.'
# The full version, including alpha/beta/rc tags.
release = '0.6.4'
release = '0.6.5'

# 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
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='teaser',
version='0.6.4',
version='0.6.5',
description='Tool for Energy Analysis and Simulation for '
'Efficient Retrofit ',
url='https://github.com/RWTH-EBC/TEASER',
Expand Down
2 changes: 1 addition & 1 deletion teaser/logic/buildingobjects/calculation/aixlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __init__(self, parent):
self.file_set_t = "Tset_" + self.parent.name + ".mat"
self.file_ahu = "AHU_" + self.parent.name + ".mat"
self.file_internal_gains = "InternalGains_" + self.parent.name + ".mat"
self.version = "0.7.2"
self.version = "0.7.3"
self.total_surface_area = None
self.consider_heat_capacity = True
self.use_set_back = True
Expand Down
2 changes: 1 addition & 1 deletion teaser/logic/buildingobjects/calculation/ibpsa.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __init__(self, parent):

self.parent = parent
self.file_internal_gains = "InternalGains_" + self.parent.name + ".mat"
self.version = {'AixLib': '0.7.2', 'Buildings': '5.1.0',
self.version = {'AixLib': '0.7.3', 'Buildings': '5.1.0',
'BuildingSystems': '2.0.0-beta2', 'IDEAS': '2.0.0'}
self.consider_heat_capacity = True

Expand Down

0 comments on commit fee0cc9

Please sign in to comment.