address Lisa's comments

This commit is contained in:
Philipp Glaum 2024-09-11 09:32:42 +02:00
parent 424ae3b5e6
commit 6cb68b191a

View File

@ -919,7 +919,7 @@ def add_methanol_to_power(n, costs, types={}):
carrier="CCGT methanol", carrier="CCGT methanol",
p_nom_extendable=True, p_nom_extendable=True,
capital_cost=capital_cost, capital_cost=capital_cost,
marginal_cost=2, marginal_cost=costs.at["CCGT", "VOM"],
efficiency=costs.at["CCGT", "efficiency"], efficiency=costs.at["CCGT", "efficiency"],
efficiency2=costs.at["methanolisation", "carbondioxide-input"], efficiency2=costs.at["methanolisation", "carbondioxide-input"],
lifetime=costs.at["CCGT", "lifetime"], lifetime=costs.at["CCGT", "lifetime"],
@ -952,7 +952,7 @@ def add_methanol_to_power(n, costs, types={}):
carrier="CCGT methanol CC", carrier="CCGT methanol CC",
p_nom_extendable=True, p_nom_extendable=True,
capital_cost=capital_cost_cc, capital_cost=capital_cost_cc,
marginal_cost=costs.at["CCGT", "VOM"] * costs.at["CCGT", "VOM"], marginal_cost=costs.at["CCGT", "VOM"],
efficiency=costs.at["CCGT", "efficiency"], efficiency=costs.at["CCGT", "efficiency"],
efficiency2=costs.at["cement capture", "capture_rate"] efficiency2=costs.at["cement capture", "capture_rate"]
* costs.at["methanolisation", "carbondioxide-input"], * costs.at["methanolisation", "carbondioxide-input"],
@ -982,7 +982,7 @@ def add_methanol_to_power(n, costs, types={}):
def add_methanol_to_olefins(n, costs): def add_methanol_to_olefins(n, costs):
nodes = pop_layout.index nodes = spatial.nodes
nhours = n.snapshot_weightings.generators.sum() nhours = n.snapshot_weightings.generators.sum()
nyears = nhours / 8760 nyears = nhours / 8760
@ -2617,7 +2617,7 @@ def add_methanol(n, costs):
logger.info("Add methanol") logger.info("Add methanol")
add_carrier_buses(n, "methanol") add_carrier_buses(n, "methanol")
if n.buses.carrier.str.contains("biomass").any(): if options["biomass"]:
if methanol_options["biomass_to_methanol"]: if methanol_options["biomass_to_methanol"]:
add_biomass_to_methanol(n, costs) add_biomass_to_methanol(n, costs)