Skip to content
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

Add reserve margin constraints #517

Draft
wants to merge 33 commits into
base: 0.6
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
07e8b19
Adding capacity values
FraSanvit Jul 27, 2023
c990131
defaults adds and preprocess
FraSanvit Jul 28, 2023
f4d4259
updating defaults
FraSanvit Oct 25, 2023
40098bc
target-reserve group constraints allowed
FraSanvit Oct 31, 2023
861294d
update defaults.yaml
FraSanvit Oct 31, 2023
a2f4029
Add timeseries inputs to group-constraints
FraSanvit Nov 7, 2023
76c452a
Add operating reserve targets as timeseries
FraSanvit Nov 7, 2023
a4fffba
Add reserve-margin-constraints defaults
FraSanvit Nov 7, 2023
22be90d
Add reserve-margins-constraints
FraSanvit Nov 7, 2023
0139fff
Add reserve-margins-constraints
FraSanvit Nov 7, 2023
2dc1899
Revert "Add reserve-margins-constraints"
FraSanvit Nov 10, 2023
de033f7
Revert "Add reserve-margin-constraints defaults"
FraSanvit Nov 10, 2023
795423d
Revert "Add operating reserve targets as timeseries"
FraSanvit Nov 10, 2023
b19022b
Revert "Add timeseries inputs to group-constraints"
FraSanvit Nov 10, 2023
9c6712f
Merge branch '0.6-reserves-margins' of https://github.com/FraSanvit/c…
FraSanvit Nov 10, 2023
4ef37af
Allow timeseries parsing to group_constraints
FraSanvit Nov 10, 2023
b2d5ecd
Update checks.py
FraSanvit Nov 10, 2023
70bbca3
Add reserve margins defaults
FraSanvit Nov 10, 2023
d7bd470
Update math for reserve margin constraints
FraSanvit Nov 10, 2023
2cbc6af
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 10, 2023
8f2938d
fix group_constraints
FraSanvit Nov 10, 2023
c3e49c2
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 10, 2023
7eec65f
fix exclusion of transmission techs
FraSanvit Jan 3, 2024
c855752
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 3, 2024
796349d
add "adder" mode to operating reserve margins
FraSanvit Jan 3, 2024
5981d88
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 3, 2024
8e2c8e6
fix param and invalid constraint message
FraSanvit Jan 3, 2024
1a90cd8
Revert "Update math for reserve margin constraints"
FraSanvit Jan 8, 2024
6a3944d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 8, 2024
9920e3d
Merge branch '0.6-reserves-margins' of https://github.com/FraSanvit/c…
FraSanvit Mar 4, 2024
acae12b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 4, 2024
1b3a8db
Add operating reserve capacity
FraSanvit Mar 4, 2024
434609f
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions calliope/backend/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
Checks for model consistency and possible errors when preparing run in the backend.

"""

import numpy as np
import pandas as pd
import xarray as xr
Expand Down
Loading
Loading