created walls uvalue table, just need to tidy up

This commit is contained in:
Khalim Conn-Kowlessar 2023-09-20 14:45:26 +01:00
parent 6f3dbb292d
commit 92f7ac095f

View file

@ -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