From 5d60e8c6e6790a3ed6ce492b03bab3a5792ef54b Mon Sep 17 00:00:00 2001 From: Irieo Date: Thu, 30 Jun 2022 17:37:40 +0200 Subject: [PATCH] Label oil and biomass buses also as MWh_LHV --- scripts/prepare_sector_network.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py index 03ffa4fa..bcf9cf6b 100644 --- a/scripts/prepare_sector_network.py +++ b/scripts/prepare_sector_network.py @@ -1285,7 +1285,7 @@ def add_land_transport(n, costs): spatial.oil.nodes, location=spatial.oil.locations, carrier="oil", - unit="MWh_th" + unit="MWh_LHV" ) ice_efficiency = options['transport_internal_combustion_efficiency'] @@ -1758,14 +1758,14 @@ def add_biomass(n, costs): spatial.gas.biogas, location=spatial.gas.locations, carrier="biogas", - unit="MWh_th" + unit="MWh_LHV" ) n.madd("Bus", spatial.biomass.nodes, location=spatial.biomass.locations, carrier="solid biomass", - unit="MWh_th" + unit="MWh_LHV" ) n.madd("Store", @@ -1877,7 +1877,7 @@ def add_industry(n, costs): spatial.biomass.industry, location=spatial.biomass.locations, carrier="solid biomass for industry", - unit="MWh_th" + unit="MWh_LHV" ) if options["biomass_transport"]: @@ -2036,7 +2036,7 @@ def add_industry(n, costs): spatial.oil.nodes, location=spatial.oil.locations, carrier="oil", - unit="MWh_th" + unit="MWh_LHV" ) if "oil" not in n.stores.carrier.unique():