-
Notifications
You must be signed in to change notification settings - Fork 5
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
Piecewise linear basin profile approx in allocation #2108
base: allocation_feature
Are you sure you want to change the base?
Piecewise linear basin profile approx in allocation #2108
Conversation
Here's a bit of theoretical background to the goal of this PR. For each basin, a table is given with levels and associated areas: Then to get the volume (storage) of water at some level giving a piecewise quadratic storage - level relationship. This is the relationship we want to approximate linearly. In the code we actually use the inverse of this relationship ( The level can also increase above the last level |
Hi @SouthEndMusic, Originally, the objective function of this problem is quadratic, and this pull request introduces binary decision variables, so your problem becomes a mixed-integer quadratic one. Unfortunately, there are no very good open source solvers for this type of discrete nonlinear optimization problem. In particular, HiGHS cannot solve QP models where some of the variables must take integer values. You could try other free solvers like bonmin, but the solution will probably not be very fast. Other alternatives, as discussed in our meeting last week, would be 1) to convert the objective function into a linear one (this is probably a no regret action), 2) to try to exploit the problem structure to avoid the use of binary variables (this will require a bit more investigation, and is not guaranteed to be achievable), or 3) try to solve the problem in stages, e.g. by first solving a simplified version with linear storage level tables, and then using that initial solution to solve a more detailed model with the piecewise storage curve representation (this staged approach will require some effort to set up). I would suggest trying first action 1), implemented as an option, so that the user can choose between the quadratic or linear objective. We could discuss this approach further and refine what has been suggested here. |
It makes sense to try to use a linear objective function. I'd prefer to not support multiple objective functions unless there is a good reason for it, to keep the maintenance lower. |
@jarsarasty thanks for your reply. I'll start implementing the linear objective function you suggested. |
The current implementation of the storage level relationship is like this: Say for basin
Then we define the constraints:
Now that I write this out, I doesn't make that much sense to me anymore. It seems that I only need 1 or 2 auxiliary variables to define the linear combination of the successive storage and level data. But then still I end up with the product of the binary variable and auxiliary variable. Asking Claude about this, it seems that what I should do is simply have and then make sure that only 2 consecutive auxiliary variables are non-zero by and |
Fixes #2060.