-
Notifications
You must be signed in to change notification settings - Fork 122
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
Modelling hydro reservoirs with LDS #572
Labels
bug
Something isn't working
Comments
lbonaldo
added a commit
that referenced
this issue
Feb 1, 2024
Fixed #572 : allow long duration hydro reservoirs to operate as long duration storage resources
filippopecci
added a commit
that referenced
this issue
Feb 14, 2024
filippopecci
added a commit
that referenced
this issue
Feb 14, 2024
filippopecci
added a commit
that referenced
this issue
Feb 14, 2024
filippopecci
added a commit
that referenced
this issue
Feb 14, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is probably a bug in modelling of inter-period linkage for hydro resources. In hydro_res.jl, the constraint
cHydroReservoir
models the state of charge for all hydro resources and all time steps. This includes the start time steps of each representative periods. As a result, start and end of each period are linked:However, when a hydro resource has LDS=1, the link between the state of charge at the start and the end of each period is modelled in hydro_inter_period_linkage.jl by constraint
cSoCBalLongDurationStorageStart_H
, which should be the only one to hold for start time steps for hydro resources with LDS.This is why, for normal storage resources, we have these constraint definitions in storage_all.jl:
and
We should modify constraint
cHydroReservoir
to match the formulation used in storage_all.jl.The text was updated successfully, but these errors were encountered: