polca/wurst

ecoinvent filters for oil electricity have to exclude nuclear

Closed this issue · 0 comments

the current oil electricity filters have to exclude nuclear, because 'boiling water reactor' is also selected here.

oil_open_cycle_electricity = [
contains('name', 'oil'),
contains('name', 'electricity'),
equals('unit', 'kilowatt hour'),
exclude(contains('name', 'combined cycle')),
]

oil_combined_cycle_electricity = [
contains('name', 'oil'),
contains('name', 'electricity'),
equals('unit', 'kilowatt hour'),
contains('name', 'combined cycle'),
]

oil_chp_electricity = [
contains('name', 'oil'),
contains('name', 'heat and power'),
equals('unit', 'kilowatt hour'),
]