Skip to content

Commit

Permalink
Merge pull request #240 from pypsa-meets-earth/fix_ft_capcost
Browse files Browse the repository at this point in the history
Add Fischer-Tropsch efficiency in capital cost calculation
  • Loading branch information
hazemakhalek authored Nov 2, 2023
2 parents 4058af5 + 8256eb0 commit 71134d2
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 71134d2

Please sign in to comment.