4. Multi-objective optimization#
In this chapter, we’ll cover how to solve multi-objective optimization problem using scipy
. As a reminder, nonlinear constrained optimization considers:
with:
and , the linear or nonlinear objective functions. , the design variablesConstraints and bounds as for single-objective optimization problems.
Model#
Three different ways of solving multi-objective optimization problems were introduced, which all effectively convert the problem to a single-objective optimization problem. All of this is assuming minimization problems:
Weighted objective function: setting pre-determined weight on the two objectives. In general this requires the two objectives to have a comparable unit:
Goal attainment, minimizing the maximum difference with respect to two goal values for the objectives. Again, this requires the two objectives to have a comparable unit:
Pareto front: finding many possible optimal solution for a large set weights. It’s good practise to normalize the objective functions.
All of these methods could also be applied to problems which include more than two goals.
Normalize objective functions#
Normalizing the objectives functions can be done by setting the domain of every goal
Method#
Because the models are all single-objective, we can use our earlier methods to solve these problems.