Replies: 1 comment
-
Complicating variable: This is an implementation detail similar to what you raised in #479. We do relatively little to differentiate between technologies of different What is the additional constraint that could actually help solver performance? Variable bounds: |
Beta Was this translation helpful? Give feedback.
-
Complicating variable
Similar to #480, demand "power" is a "investment" decision, even if it does not come with an associated cost in that model. That leads to constraints like
Furthermore, this prevents us from "solving" infeasibilities in demand coverage just by relying on "unmet demand", since the following combination fails
if
energy_cap(_region1__demand_power_)
is not at least the amount of peak demand power. This could be an additional constraint that could actually help with solver performance (or would allow easier decomposition).Variable bounds
comes with bounds (
-inf
to0
), while it would be more beneficial to make sure that this is a free variable. It comes "fixed" anyways, byor do we already know that all solvers properly pick that up as "direct replacement" during presolve? (I know that wasn't always the case for non-free variables)
Beta Was this translation helpful? Give feedback.
All reactions