How to define a binary variable as part of constraints in the optimization problem(fmincon)?

41 visualizaciones (últimos 30 días)
I'm working on an optimization problem that optimizes the cost for a microgrid including Battery Storage Units. I used the fmincon function and wrote all constraints except the nonlinear inequalities c(x) which I indicated below. u_ch(t) is a binary variable and can be "1" when the battery is charging or be "0" when it is discharging. I need to know at which time the battery is charging or discharging so I need to calculate "u_ch(t)".
The problem is that I couldn't manage to define a binary variable in Matlab and use it for fmincon. P_Batt_charge(t) and P_Batt_disharge (t) are also decision variables. End of the optimization, I also need to calculate the values of them for each t. Is there any suggestion how can I write these constraints?
P_Batt_charge(t) ≤ 150kW*u_ch (t)
P_Batt_disharge (t)≤180kW*(1-u_ch) (t))

Respuesta aceptada

Alan Weiss
Alan Weiss el 4 de Feb. de 2022
Editada: Alan Weiss el 4 de Feb. de 2022
fmincon does not accept binary constraints, or any integer constraints. The only solvers that accept a nonlinear objective function or constraint function and integer constraints are ga and surrogateopt.
It is often possible to approximate the costs and constraints using linear objectives and constraints. If you can do that, you can use intlinprog as the solver. For an energy-related example, see Optimal Dispatch of Power Generators: Problem-Based.
Alan Weiss
MATLAB mathematical toolbox documentation
  7 comentarios
Alan Weiss
Alan Weiss el 6 de Feb. de 2022
As the Release Notes state, linear constraints were introduced to surrogateopt in R2021a. Without seeing the error, I suspect that you have an older version.
Alan Weiss
MATLAB mathematical toolbox documentation
Mehmet Türker TAKCI
Mehmet Türker TAKCI el 6 de Feb. de 2022
Hi, yes I use R2020b. So, I need to install R2021a or above to use all types of constraints. Ok, many thanks for all information.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by