mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
reviewing cavitiy wall methodology
This commit is contained in:
parent
9ee8b53cae
commit
847370ed39
1 changed files with 9 additions and 4 deletions
|
|
@ -142,14 +142,19 @@ class WallRecommendations(Definitions):
|
|||
material will give us the best U-value.
|
||||
|
||||
We check for diminishing returns, however this function does not check for meeting building
|
||||
part L regulations right now
|
||||
Part L regulations right now. This is because Part L is less stringent for cavity walls
|
||||
|
||||
Width of a cavity:
|
||||
There are various sources online that suggest the width of a cavity wall is around 50mm. The retrofit course
|
||||
indicates that most cavities are 50-75mm. Many sources online indicate that 50mm is the standard figure
|
||||
therefore we'll use 50mm as the base assumption
|
||||
|
||||
:param u_value: u_value of the starting wall
|
||||
:return:
|
||||
"""
|
||||
|
||||
cavity_wall_fills = [m for m in self.materials if m["type"] == "cavity_wall_insulation"]
|
||||
# TODO: Check this and also check the methodology
|
||||
cavity_width = 125
|
||||
|
||||
cavity_width = 50
|
||||
# Test the different fill options
|
||||
lowest_selected_u_value = None
|
||||
recommendations = []
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue