mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
Added wood pellets as a fuel source
This commit is contained in:
parent
322cd2b11d
commit
eef0e8defa
2 changed files with 6 additions and 0 deletions
|
|
@ -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 = [
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue