mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
minor
This commit is contained in:
parent
80a10e7981
commit
c116adf3c0
2 changed files with 6 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue