Skip to content

Commit

Permalink
fix: add ft efficiency in capital cost calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
energyLS committed Oct 31, 2023
1 parent 5537672 commit 8256eb0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/prepare_sector_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,10 @@ def H2_liquid_fossil_conversions(n, costs):
bus2=spatial.co2.nodes,
carrier="Fischer-Tropsch",
efficiency=costs.at["Fischer-Tropsch", "efficiency"],
capital_cost=costs.at["Fischer-Tropsch", "fixed"],
capital_cost=costs.at["Fischer-Tropsch", "fixed"]
* costs.at[
"Fischer-Tropsch", "efficiency"
], # Use efficiency to convert from EUR/MW_FT/a to EUR/MW_H2/a
efficiency2=-costs.at["oil", "CO2 intensity"]
* costs.at["Fischer-Tropsch", "efficiency"],
p_nom_extendable=True,
Expand Down

0 comments on commit 8256eb0

Please sign in to comment.