remove methanol transport because it has no impact
This commit is contained in:
parent
77385721b6
commit
5c577b6290
@ -590,10 +590,8 @@ sector:
|
|||||||
# - onshore # more than 50 km from sea
|
# - onshore # more than 50 km from sea
|
||||||
- nearshore # within 50 km of sea
|
- nearshore # within 50 km of sea
|
||||||
# - offshore
|
# - offshore
|
||||||
methanol: false # if industry is modelled, methanol is still added even if false
|
|
||||||
methanol_spatial: false # if true demand is also regional even if regional demand is set to false, since methanol is regionally resolved
|
|
||||||
regional_methanol_demand: false
|
regional_methanol_demand: false
|
||||||
methanol_transport: false
|
methanol: false
|
||||||
methanol_reforming: false
|
methanol_reforming: false
|
||||||
methanol_reforming_cc: false
|
methanol_reforming_cc: false
|
||||||
methanol_to_kerosene: false
|
methanol_to_kerosene: false
|
||||||
|
@ -153,24 +153,17 @@ def define_spatial(nodes, options):
|
|||||||
|
|
||||||
spatial.methanol = SimpleNamespace()
|
spatial.methanol = SimpleNamespace()
|
||||||
|
|
||||||
if options.get("methanol_spatial", False):
|
spatial.methanol.nodes = ["EU methanol"]
|
||||||
spatial.methanol.nodes = nodes + " methanol"
|
spatial.methanol.locations = ["EU"]
|
||||||
spatial.methanol.locations = nodes
|
|
||||||
|
if options["regional_methanol_demand"]:
|
||||||
spatial.methanol.demand_locations = nodes
|
spatial.methanol.demand_locations = nodes
|
||||||
spatial.methanol.industry = nodes + " industry methanol"
|
spatial.methanol.industry = nodes + " industry methanol"
|
||||||
spatial.methanol.shipping = nodes + " shipping methanol"
|
spatial.methanol.shipping = nodes + " shipping methanol"
|
||||||
else:
|
else:
|
||||||
spatial.methanol.nodes = ["EU methanol"]
|
spatial.methanol.demand_locations = ["EU"]
|
||||||
spatial.methanol.locations = ["EU"]
|
spatial.methanol.shipping = ["EU shipping methanol"]
|
||||||
|
spatial.methanol.industry = ["EU industry methanol"]
|
||||||
if options["regional_methanol_demand"]:
|
|
||||||
spatial.methanol.demand_locations = nodes
|
|
||||||
spatial.methanol.industry = nodes + " industry methanol"
|
|
||||||
spatial.methanol.shipping = nodes + " shipping methanol"
|
|
||||||
else:
|
|
||||||
spatial.methanol.demand_locations = ["EU"]
|
|
||||||
spatial.methanol.shipping = ["EU shipping methanol"]
|
|
||||||
spatial.methanol.industry = ["EU industry methanol"]
|
|
||||||
|
|
||||||
# oil
|
# oil
|
||||||
spatial.oil = SimpleNamespace()
|
spatial.oil = SimpleNamespace()
|
||||||
@ -2610,23 +2603,6 @@ def add_methanol(n, costs):
|
|||||||
capital_cost=0.02,
|
capital_cost=0.02,
|
||||||
)
|
)
|
||||||
|
|
||||||
if options["methanol_transport"]:
|
|
||||||
methanol_transport = create_network_topology(
|
|
||||||
n, "methanol transport ", bidirectional=True
|
|
||||||
)
|
|
||||||
n.madd(
|
|
||||||
"Link",
|
|
||||||
methanol_transport.index,
|
|
||||||
bus0=methanol_transport.bus0 + " methanol",
|
|
||||||
bus1=methanol_transport.bus1 + " methanol",
|
|
||||||
p_nom_extendable=False,
|
|
||||||
p_nom=5e4,
|
|
||||||
length=methanol_transport.length.values,
|
|
||||||
marginal_cost=0.027
|
|
||||||
* methanol_transport.length.values, # assuming 0.15€/ton-km and 0.183t/1000MWhMeOH
|
|
||||||
carrier="methanol transport",
|
|
||||||
)
|
|
||||||
|
|
||||||
if n.buses.carrier.str.contains("biomass").any():
|
if n.buses.carrier.str.contains("biomass").any():
|
||||||
if options["biomass_to_methanol"]:
|
if options["biomass_to_methanol"]:
|
||||||
add_biomass_to_methanol(n, costs)
|
add_biomass_to_methanol(n, costs)
|
||||||
|
Loading…
Reference in New Issue
Block a user