-
Notifications
You must be signed in to change notification settings - Fork 249
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
[DNMY] Remove pre- and post- prefixes in sector coupled networks #716
base: master
Are you sure you want to change the base?
Conversation
@virio-andreyana could you add a comment to the release notes? |
@fneum do you agree with the changes? Note that this is a breaking change (which is however necessary to my opinion) |
Hmmm, while I agree that this change very nicely separates resources from results, I see one significant drawback. It considerably limits the use of For instance, if you have two config files
that only differ in prepare sector networks, you can't do that with |
@fneum, thinking about it, I see the problem as very minor. Assuming that the configuration overrides only contain changes in the |
@fneum what do you think? |
Yes, that's right, but only as long as you're not using In the old case, if the configfiles had different run names, prepare_sector_network would be triggered in any case. If you have everything run until right before prepare_sector_network, and you do the following two calls without waiting for the other to finish first, you could also get interference. (I am doing this a lot). snakemake ... --configfile config.scenario1.yaml --nolock
snakemake ... --configfile config.scenario2.yaml (this is a smaller argument as you should soon be able to do this in one call with new scenario management) |
Okay I see. Then, let's wait until we merge #724 and merge this one afterwards. |
Closes #708.
Changes proposed in this Pull Request
Networks that are stored in
results/prenetworks
are placed inresources/networks
. Remove the prefix of post- and pre- to suit pypsa-eur conventions. Brownfield networks are added with the word _brownfield in their name.Checklist
doc/release_notes.rst
is added.