-
Notifications
You must be signed in to change notification settings - Fork 13
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
Limit H2 feedin to a share of CH4 load #602
base: dev
Are you sure you want to change the base?
Conversation
Each H2_feedin link becomes a p_max_pu time series and its p_nom value is overwritten to model the limitation of H2 feedin into the CH4 grid to a share of the (time dependant) total CH4 load at this bus.
The lines in the network.py adjusting accordingly the adjust_network function are in the previous commit (merge dev).
@@ -75,6 +75,7 @@ | |||
# Scenario variations: | |||
"scn_extension": None, # None or array of extension scenarios | |||
"scn_decommissioning": None, # None or decommissioning scenario | |||
"H2_vol_share": 15, # in % [50/20/15/10/5/2/1/0] allowed H2 volumetric share for feedin |
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.
Could you also add this parameter to the json file?
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.
Yes (61d31a4), sorry about forgetting this again!
All checks failed in this PR. It could be fixed by merging the most recent |
Yes, this looks better now :) |
The solution proposed by Clara in #354 (comment) is implemented in this branch.
This is a very conservative approach to limit the H2 feedin into the CH4 grid, but we'd rather go for this option than for a modification of the methanisation efficiency that I also presented at the project meeting. Doing so allows to have the H2_feedin independant of the methanisation and to use H2_feedin without building methanisation at all for instance.
A lot of changes are due to black and the content changes are all contained in the commit d107711.