-
Notifications
You must be signed in to change notification settings - Fork 36
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
Feature/planning/multi-commitments #1144
Draft
Flix6x
wants to merge
38
commits into
main
Choose a base branch
from
feature/planning/multi-commitments
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
…per group Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
…hould work under the assumption of positive prices) Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
…ts' into feature/planning/multi-commitments Signed-off-by: Victor Garcia Reolid <victor@seita.nl>
…mmitments, and fix scheduler logic Signed-off-by: F.N. Claessen <felix@seita.nl>
…t state non-negative penalties for the problem to be bounded) Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
…planning/multi-commitments Signed-off-by: F.N. Claessen <felix@seita.nl> # Conflicts: # flexmeasures/data/models/planning/storage.py # flexmeasures/data/models/planning/tests/test_solver.py # flexmeasures/data/schemas/scheduling/__init__.py
# Conflicts: # flexmeasures/data/schemas/scheduling/__init__.py
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
…planning/multi-commitments
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
…ach and one for each breach Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
…p.inf Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Signed-off-by: F.N. Claessen <felix@seita.nl>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
site-consumption-breach-price
: if set,site-consumption-capacity
becomes a soft constraint, and breaching it is penalized at the given price per kW. The higher the breach, the higher the costs, and it also matters if you breach it once or many times.site-production-breach-price
: if set,site-production-capacity
becomes a soft constraint, and breaching it is penalized at the given price. The higher the breach, the higher the costs, and it also matters if you breach it once or many times.site-peak-consumption
: used to record peak consumption, above which an additional price per kW is chargedsite-peak-production
: used to record peak production, above which an additional price per kW is chargedsite-peak-consumption-price
: if set, an additional price per kW is charged if the site power goes over the site-peak-consumption. The higher the peak, the higher the costs, but it doesn't matter how often you reach it.site-peak-production-price
: if set, an additional price per kW is charged if the site power goes over the site-peak-production. The higher the peak, the higher the costs, but it doesn't matter how often you reach it.VariableQuantityField
for the new fields introduced in this PR. Depended on feature: flex context prices as quantities #1028.Further Improvements
Rejected proposals
site-capacity-breach-price
that may look better, it provides users less control over their setting. In particular, the separate fields allow to keep a hard constraint for, say, the production capacity, while choosing a soft constraint for the consumption capacity.