You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Maximum charging rate (including virtual charging to move energy held in reserve back to available storage) must be less than symmetric power rating
[y in STOR_SYMMETRIC, t in1:T], EP[:vCHARGE][y,t] + EP[:vCAPRES_charge][y,t] <= EP[:eTotalCap][y]
# Max simultaneous charge and discharge cannot be greater than capacity
[y in STOR_SYMMETRIC, t in1:T], EP[:vP][y,t]+EP[:vCHARGE][y,t]+EP[:vCAPRES_discharge][y,t]+EP[:vCAPRES_charge][y,t] <= EP[:eTotalCap][y]
all these quantities are positive
the LHS of the second constraint equals the LHS of the first constraint plus some extra terms.
both RHS's are the same.
Therefore the first constraint is redundant. Not sure if we want to remove it, or keep it for future expansion/didactic reasons.
The text was updated successfully, but these errors were encountered:
This fixes#573, where Reserves + Num_VRE_Bins > 1 would lead to the
VRE_NO_POWER_OUT resources being able to contribute an infinite amount
to the reserves.
This fixes#574, where VRE power output constraints were being applied
length(VRE) times to all VRE resources, when Reserves = 1.
This fixed#566, where some constraints in storage_symmetric were redundant.
---------
Co-authored-by: Luca Bonaldo <[email protected]>
Therefore the first constraint is redundant. Not sure if we want to remove it, or keep it for future expansion/didactic reasons.
The text was updated successfully, but these errors were encountered: