Skip to content

Commit

Permalink
fix size of shading_max_irr
Browse files Browse the repository at this point in the history
  • Loading branch information
DaJansenGit committed Jan 14, 2025
1 parent 97c1a4a commit a219fe2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
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.2"
__version__ = "1.1.3"


new_path = os.path.join(os.path.expanduser('~'), ("TEASEROutput"))
Expand Down
1 change: 1 addition & 0 deletions teaser/logic/buildingobjects/calculation/four_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -1490,6 +1490,7 @@ def _fill_zone_lists(self):
if not wins:
self.weightfactor_win.append(0.0)
self.shading_g_total.append(1.0)
self.shading_max_irr.append(0.0)
self.window_areas.append(0.0)
self.transparent_areas.append(0.0)
else:
Expand Down
1 change: 1 addition & 0 deletions teaser/logic/buildingobjects/calculation/one_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -939,6 +939,7 @@ def _fill_zone_lists(self):
if not wins:
self.weightfactor_win.append(0.0)
self.shading_g_total.append(1.0)
self.shading_max_irr.append(0.0)
self.window_areas.append(0.0)
self.transparent_areas.append(0.0)
else:
Expand Down
1 change: 1 addition & 0 deletions teaser/logic/buildingobjects/calculation/three_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -1239,6 +1239,7 @@ def _fill_zone_lists(self):
if not wins:
self.weightfactor_win.append(0.0)
self.shading_g_total.append(1.0)
self.shading_max_irr.append(0.0)
self.window_areas.append(0.0)
self.transparent_areas.append(0.0)
else:
Expand Down
1 change: 1 addition & 0 deletions teaser/logic/buildingobjects/calculation/two_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -1127,6 +1127,7 @@ def _fill_zone_lists(self):
if not wins:
self.weightfactor_win.append(0.0)
self.shading_g_total.append(1.0)
self.shading_max_irr.append(0.0)
self.window_areas.append(0.0)
self.transparent_areas.append(0.0)
self.shading_max_irr.append(9999.9)
Expand Down

0 comments on commit a219fe2

Please sign in to comment.