mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
created walls uvalue table, just need to tidy up
This commit is contained in:
parent
6f3dbb292d
commit
92f7ac095f
1 changed files with 5 additions and 2 deletions
|
|
@ -173,6 +173,8 @@ def app():
|
|||
"Cavity wall, as built, insulated": "Unfilled cavity with 100 mm external or internal insulation",
|
||||
"Cavity wall, with external insulation": "Unfilled cavity with 100 mm external or internal insulation",
|
||||
"Cavity wall, insulated": "Unfilled cavity with 100 mm external or internal insulation",
|
||||
'Cavity wall, partial insulation': "Unfilled cavity with 50 mm external or internal insulation",
|
||||
|
||||
"Cavity wall,": "Cavity as built", # General case of cavity wall without further details
|
||||
"Cavity wall, filled cavity and external insulation":
|
||||
"Filled cavity with 100 mm external or internal insulation",
|
||||
|
|
@ -246,6 +248,7 @@ def app():
|
|||
"Cob, as built": "Cob as built",
|
||||
"Cob, with external insulation": "Cob with 100 mm external or internal insulation",
|
||||
"Cob, with internal insulation": "Cob with 100 mm external or internal insulation",
|
||||
'Cob,': "Cob as built",
|
||||
|
||||
############################
|
||||
# Park home mappings
|
||||
|
|
@ -276,8 +279,8 @@ def app():
|
|||
if is_sandstone_or_limestone:
|
||||
return 3 - 0.002 * thickness
|
||||
|
||||
for wall in cleaned_data["walls-description"]:
|
||||
if wall["thermal_transmittance"] is not None:
|
||||
for i, wall in enumerate(cleaned_data["walls-description"]):
|
||||
if wall["thermal_transmittance"] is not None or "Average thermal transmittance" in wall["clean_description"]:
|
||||
continue
|
||||
|
||||
# TODO: Patched this already
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue