This commit is contained in:
Khalim Conn-Kowlessar 2023-06-24 22:50:08 +01:00
parent 80a10e7981
commit c116adf3c0
2 changed files with 6 additions and 0 deletions

View file

@ -27,6 +27,8 @@ class FloorRecommendations(BaseUtility):
self.property.data["floor-energy-eff"]
self.property.data["floor-env-eff"]
# TODO: We neeed to know if the property is ground floor or not
if self.property.floor["another_property_below"]:
# If there's another property below, it's likely impractical to recommend a floor upgrade
return

View file

@ -209,6 +209,10 @@ class WallRecommendations(BaseUtility):
# we still consider it as an option
U_VALUE_ERROR = 0.01
# TODO: Review this value against RdSAP
# Page 19 of rdsap here:
# https://files.bregroup.com/bre-co-uk-file-library-copy/filelibrary/SAP/2012/RdSAP-9.93/RdSAP_2012_9.93.pdf
# provides default U-values for solid brick walls depending on age band
DEFAULT_U_VALUES = {
"solid_brick": 2,
}