Skip to content

Commit

Permalink
Merge pull request #299 from RWTH-EBC/issue298_SetDefaultBug
Browse files Browse the repository at this point in the history
Issue298 set default bug
  • Loading branch information
MichaMans authored Sep 1, 2016
2 parents 4e0ab5c + fead1ee commit ab0ce80
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ IEA-EBC [Annex60](https://github.com/iea-annex60/modelica-annex60).

### Version

The current version is 0.3.7, which is a pre-release.
The current version is 0.3.8, which is a pre-release.

### How to cite 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.3.'
# The full version, including alpha/beta/rc tags.
release = '0.3.7'
release = '0.3.8'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ IEA-EBC `Annex60 <https://github.com/iea-annex60/modelica-annex60>`_.
Version
==================

The current version is 0.3.7, which is a pre-release.
The current version is 0.3.8, which is a pre-release.

How to cite TEASER
==================
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.3.7',
version='0.3.8',
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, Institute of Energy Efficient Buildings and Indoor Climate',
Expand Down
24 changes: 24 additions & 0 deletions teaser/logic/buildingobjects/thermalzone.py
Original file line number Diff line number Diff line change
Expand Up @@ -1250,6 +1250,8 @@ def retrofit_zone(self, window_type=None, material=None):
win_count.replace_window(self.parent.year_of_retrofit, window_type)

def set_calc_default(self):
'''sets default calculation parameters
'''
self.outer_walls_help = []
self.rooftops = []
self.ground_floors = []
Expand Down Expand Up @@ -1284,6 +1286,28 @@ def set_calc_default(self):

self.r_rad_ow_iw = 0.0

self.r1_iw = 0.0
self.c1_iw = 0.0
self.ua_value_iw = 0.0
self.r_conv_iw = 0.0
self.r_rad_iw = 0.0
self.r_comb_iw = 0.0
self.area_iw = 0.0
self.r_conv_inner_iw = 0.0
self.r_rad_inner_iw = 0.0
self.r_comb_inner_iw = 0.0
self.r_conv_outer_iw = 0.0
self.r_rad_outer_iw = 0.0
self.r_comb_outer_iw = 0.0

self.alpha_conv_inner_iw = 0.0
self.alpha_rad_inner_iw = 0.0
self.alpha_comb_inner_iw = 0.0

self.alpha_conv_outer_iw = 0.0
self.alpha_rad_outer_iw = 0.0
self.alpha_comb_outer_iw = 0.0

self.r1_rt = 0.0
self.c1_rt = 0.0
self.r_rest_rt = 0.0
Expand Down

0 comments on commit ab0ce80

Please sign in to comment.