-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update FT to account for Hydrogen and Electricity input #1226
Changes from 1 commit
dd20980
b94cb9b
f8d9c3a
5cff276
78edb91
ce16c42
29b1be2
c37002c
ff83efd
f4cc2de
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,13 +171,13 @@ def H2_liquid_fossil_conversions(n, costs): | |
bus1=spatial.oil.nodes, | ||
bus2=spatial.co2.nodes, | ||
carrier="Fischer-Tropsch", | ||
efficiency=costs.at["Fischer-Tropsch", "efficiency"], | ||
efficiency=1 / costs.at["Fischer-Tropsch", "electricity-input"], | ||
efficiency2=costs.at["Fischer-Tropsch", "hydrogen-input"] | ||
/ costs.at["Fischer-Tropsch", "electricity-input"], | ||
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"], | ||
/ costs.at["Fischer-Tropsch", "electricity-input"], | ||
marginal_cost=costs.at["Fischer-Tropsch", "VOM"] | ||
/ costs.at["Fischer-Tropsch", "electricity-input"], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same is true for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Indeed the multiplication with efficiency is appropriate because of the unit of measurement used for the calculation. |
||
p_nom_extendable=True, | ||
p_min_pu=options.get("min_part_load_fischer_tropsch", 0), | ||
lifetime=costs.at["Fischer-Tropsch", "lifetime"], | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, I think capital_cost should be multiplication of
fixed
withefficiency
as previously defined.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree, see comment below