From 92f7ac095f8f7104c8f662504924535f66f70ec1 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Wed, 20 Sep 2023 14:45:26 +0100 Subject: [PATCH] created walls uvalue table, just need to tidy up --- model_data/cleaner_app.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/model_data/cleaner_app.py b/model_data/cleaner_app.py index 23ac5654..26fc0ac5 100644 --- a/model_data/cleaner_app.py +++ b/model_data/cleaner_app.py @@ -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