From 78f5532dd9236507accf96416afa9e99dc0552ad Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Tue, 24 Sep 2024 19:59:28 +0100 Subject: [PATCH] additional hot water system handled --- etl/epc_clean/epc_attributes/HotWaterAttributes.py | 1 + .../tests/test_data/test_hot_water_attributes_cases.py | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/etl/epc_clean/epc_attributes/HotWaterAttributes.py b/etl/epc_clean/epc_attributes/HotWaterAttributes.py index 67f5bebd..bd98ec50 100644 --- a/etl/epc_clean/epc_attributes/HotWaterAttributes.py +++ b/etl/epc_clean/epc_attributes/HotWaterAttributes.py @@ -19,6 +19,7 @@ class HotWaterAttributes(Definitions): 'solid fuel boiler', # burns solid materials to generate heat for water heating and/or space heating 'solid fuel range cooker', 'room heaters', # Generic/unspecified category + 'electric multipoint', ] # SYSTEM_TYPES refer to the larger system within which the heater operates. diff --git a/etl/epc_clean/tests/test_data/test_hot_water_attributes_cases.py b/etl/epc_clean/tests/test_data/test_hot_water_attributes_cases.py index 2d6f10a0..ae5348be 100644 --- a/etl/epc_clean/tests/test_data/test_hot_water_attributes_cases.py +++ b/etl/epc_clean/tests/test_data/test_hot_water_attributes_cases.py @@ -219,4 +219,9 @@ hotwater_cases = [ 'heater_type': 'electric instantaneous', 'system_type': None, 'thermostat_characteristics': None, 'heating_scope': None, 'energy_recovery': 'waste water heat recovery', 'tariff_type': None, 'extra_features': None, 'chp_systems': None, 'distribution_system': None, 'no_system_present': None, 'assumed': False, "appliance": None}, + {'original_description': 'Electric multipoint', 'heater_type': 'electric multipoint', 'system_type': None, + 'thermostat_characteristics': None, + 'heating_scope': None, 'energy_recovery': None, 'tariff_type': None, 'extra_features': None, 'chp_systems': None, + 'distribution_system': None, 'no_system_present': None, 'appliance': None, 'assumed': False} + ]