Added wood pellets as a fuel source

This commit is contained in:
Khalim Conn-Kowlessar 2023-07-01 17:54:17 +01:00
parent 322cd2b11d
commit eef0e8defa
2 changed files with 6 additions and 0 deletions

View file

@ -22,6 +22,10 @@ class MainFuelAttributes(BaseUtility):
'smokeless coal',
'house coal',
'wood chips',
# We don't treat wood chips and wood pelles as the same.
# Wood pellets have a higher energy density than wood chips. This is due to their manufacturing process,
# which compresses the wood and removes most of the moisture, making them more efficient as a fuel
'wood pellets',
]
COMPLEX_FUEL_KEYWORDS = [

View file

@ -58,5 +58,7 @@ mainfuel_cases = [
'fuel_type': 'unknown', 'tariff_type': None, 'is_community': False,
'no_individual_heating_or_community_network': True, 'complex_fuel_type': None},
{'original_description': 'wood chips', 'fuel_type': 'wood chips', 'tariff_type': None, 'is_community': False,
'no_individual_heating_or_community_network': False, 'complex_fuel_type': None},
{'original_description': 'wood pellets', 'fuel_type': 'wood pellets', 'tariff_type': None, 'is_community': False,
'no_individual_heating_or_community_network': False, 'complex_fuel_type': None}
]