Multi-objective optimization

class rtctools.optimization.goal_programming_mixin.Goal

Bases: object

Base class for lexicographic goal programming goals.

A goal is defined by overriding the function() method.

Variables:
  • function_range – Range of goal function. Required if a target is set.
  • function_nominal – Nominal value of function. Used for scaling. Default is 1.
  • target_min – Desired lower bound for goal function. Default is numpy.nan.
  • target_max – Desired upper bound for goal function. Default is numpy.nan.
  • priority – Integer priority of goal. Default is 1.
  • weight – Optional weighting applied to the goal. Default is 1.0.
  • order – Penalization order of goal violation. Default is 2.
  • critical – If True, the algorithm will abort if this goal cannot be fully met. Default is False.
  • relaxation – Amount of slack added to the hard constraints related to the goal. Must be a nonnegative value. Default is 0.0.

The target bounds indicate the range within the function should stay, if possible. Goals are, in that sense, soft, as opposed to standard hard constraints.

Four types of goals can be created:

  1. Minimization goal if no target bounds are set:

    \[\min f\]
  2. Lower bound goal if target_min is set:

    \[m \leq f\]
  3. Upper bound goal if target_max is set:

    \[f \leq M\]
  4. Combined lower and upper bound goal if target_min and target_max are both set:

    \[m \leq f \leq M\]

Lower priority goals take precedence over higher priority goals.

Goals with the same priority are weighted off against each other in a single objective function.

In goals where a target is set:
  • The function range interval must be provided as this is used to introduce hard constrains on the value that the function can take. If one is unsure about which value the function can take, it is recommended to overestimate this interval. However, an overestimated interval will negatively influence how accurately the target bounds are met.
  • The target provided must be contained in the function range.
  • The function nominal is used to scale the constraints.
  • If both a target_min and a target_max are set, the target maximum must be at least equal to minimum one.
In minimization goals:
  • The function range is not used and therefore cannot be set.
  • The function nominal is used to scale the function value in the objective function. To ensure that all goals are given a similar importance, it is crucial to provide an accurate estimate of this parameter.

The goal violation value is taken to the order’th power in the objective function of the final optimization problem.

Relaxation is used to loosen the constraints that are set after the optimization of the goal’s priority. The unit of the relaxation is equal to that of the goal function.

Example definition of the point goal \(x(t) \geq 1.1\) for \(t=1.0\) at priority 1:

class MyGoal(Goal):
    def function(self, optimization_problem, ensemble_member):
        # State 'x' at time t = 1.0
        t = 1.0
        return optimization_problem.state_at('x', t, ensemble_member)

    function_range = (1.0, 2.0)
    target_min = 1.1
    priority = 1

Example definition of the path goal \(x(t) \geq 1.1\) for all \(t\) at priority 2:

class MyPathGoal(Goal):
    def function(self, optimization_problem, ensemble_member):
        # State 'x' at any point in time
        return optimization_problem.state('x')

    function_range = (1.0, 2.0)
    target_min = 1.1
    priority = 2

Note that for path goals, the ensemble member index is not passed to the call to OptimizationProblem.state(). This call returns a time-independent symbol that is also independent of the active ensemble member. Path goals are applied to all times and all ensemble members simultaneously.

function(optimization_problem: rtctools.optimization.optimization_problem.OptimizationProblem, ensemble_member: int) → casadi.casadi.MX

This method returns a CasADi MX object describing the goal function.

Returns:A CasADi MX object.
get_function_key(optimization_problem: rtctools.optimization.optimization_problem.OptimizationProblem, ensemble_member: int) → str

Returns a key string uniquely identifying the goal function. This is used to eliminate linearly dependent constraints from the optimization problem.

has_target_bounds

True if the user goal has min/max bounds.

has_target_max

True if the user goal has max bounds.

has_target_min

True if the user goal has min bounds.

class rtctools.optimization.goal_programming_mixin.StateGoal(optimization_problem)

Bases: rtctools.optimization.goal_programming_mixin.Goal

Base class for lexicographic goal programming path goals that act on a single model state.

A state goal is defined by setting at least the state class variable.

Variables:
  • state – State on which the goal acts. Required.
  • target_min – Desired lower bound for goal function. Default is numpy.nan.
  • target_max – Desired upper bound for goal function. Default is numpy.nan.
  • priority – Integer priority of goal. Default is 1.
  • weight – Optional weighting applied to the goal. Default is 1.0.
  • order – Penalization order of goal violation. Default is 2.
  • critical – If True, the algorithm will abort if this goal cannot be fully met. Default is False.

Example definition of the goal \(x(t) \geq 1.1\) for all \(t\) at priority 2:

class MyStateGoal(StateGoal):
    state = 'x'
    target_min = 1.1
    priority = 2

Contrary to ordinary Goal objects, PathGoal objects need to be initialized with an OptimizationProblem instance to allow extraction of state metadata, such as bounds and nominal values. Consequently, state goals must be instantiated as follows:

my_state_goal = MyStateGoal(optimization_problem)

Note that StateGoal is a helper class. State goals can also be defined using Goal as direct base class, by implementing the function method and providing the function_range and function_nominal class variables manually.

__init__(optimization_problem)

Initialize the state goal object.

Parameters:optimization_problemOptimizationProblem instance.
class rtctools.optimization.goal_programming_mixin.GoalProgrammingMixin(**kwargs)

Bases: rtctools.optimization.optimization_problem.OptimizationProblem

Adds lexicographic goal programming to your optimization problem.

goal_programming_options() → Dict[str, Union[float, bool]]

Returns a dictionary of options controlling the goal programming process.

Option Type Default value
violation_relaxation float 0.0
constraint_relaxation float 0.0
mu_reinit bool True
fix_minimized_values bool True/False
check_monotonicity bool True
equality_threshold float 1e-8
interior_distance float 1e-6
scale_by_problem_size bool False
keep_soft_constraints bool False

Before turning a soft constraint of the goal programming algorithm into a hard constraint, the violation variable (also known as epsilon) of each goal is relaxed with the violation_relaxation. Use of this option is normally not required.

When turning a soft constraint of the goal programming algorithm into a hard constraint, the constraint is relaxed with constraint_relaxation. Use of this option is normally not required. Note that:

  1. Minimization goals do not get constraint_relaxation applied when fix_minimized_values is True.
  2. Because of the constraints it generates, when keep_soft_constraints is True, the option fix_minimized_values needs to be set to False for the constraint_relaxation to be applied at all.

A goal is considered to be violated if the violation, scaled between 0 and 1, is greater than the specified tolerance. Violated goals are fixed. Use of this option is normally not required.

When using the default solver (IPOPT), its barrier parameter mu is normally re-initialized a every iteration of the goal programming algorithm, unless mu_reinit is set to False. Use of this option is normally not required.

If fix_minimized_values is set to True, goal functions will be set to equal their optimized values in optimization problems generated during subsequent priorities. Otherwise, only an upper bound will be set. Use of this option is normally not required. Note that a non-zero goal relaxation overrules this option; a non-zero relaxation will always result in only an upper bound being set. Also note that the use of this option may add non-convex constraints to the optimization problem. The default value for this parameter is True for the default solvers IPOPT/BONMIN. If any other solver is used, the default value is False.

If check_monotonicity is set to True, then it will be checked whether goals with the same function key form a monotonically decreasing sequence with regards to the target interval.

The option equality_threshold controls when a two-sided inequality constraint is folded into an equality constraint.

The option interior_distance controls the distance from the scaled target bounds, starting from which the function value is considered to lie in the interior of the target space.

If scale_by_problem_size is set to True, the objective (i.e. the sum of the violation variables) will be divided by the number of goals, and the path objective will be divided by the number of path goals and the number of time steps. This will make sure the objectives are always in the range [0, 1], at the cost of solving each goal/time step less accurately.

The option keep_soft_constraints controls how the epsilon variables introduced in the target goals are dealt with in subsequent priorities. If keep_soft_constraints is set to False, each epsilon is replaced by its computed value and those are used to derive a new set of constraints. If keep_soft_constraints is set to True, the epsilons are kept as variables and the constraints are not modified. To ensure the goal programming philosophy, i.e., Pareto optimality, a single constraint is added to enforce that the objective function must always be at most the objective value. This method allows for a larger solution space, at the cost of having a (possibly) more complex optimization problem. Indeed, more variables are kept around throughout the optimization and any objective function is turned into a constraint for the subsequent priorities (while in the False option this was the case only for the function of minimization goals).

Returns:A dictionary of goal programming options.
goals() → List[rtctools.optimization.goal_programming_mixin.Goal]

User problem returns list of Goal objects.

Returns:A list of goals.
path_goals() → List[rtctools.optimization.goal_programming_mixin.Goal]

User problem returns list of path Goal objects.

Returns:A list of path goals.
priority_completed(priority: int) → None

Called after optimization for goals of certain priority is completed.

Parameters:priority – The priority level that was completed.
priority_started(priority: int) → None

Called when optimization for goals of certain priority is started.

Parameters:priority – The priority level that was started.