additional hot water system handled

This commit is contained in:
Khalim Conn-Kowlessar 2024-09-24 19:59:28 +01:00
parent 9fe9586d06
commit 78f5532dd9
2 changed files with 6 additions and 0 deletions

View file

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

View file

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