Parametric scalable MDO problem - MDF

We define a ScalableProblem with a shared design variable of size 1 and 2 strongly coupled disciplines. The first one has a local design variable of size 1 and a coupling variable of size 2 while the second one has a local design variable of size 3 and a coupling variable of size 4.

We would like to solve this MDO problem by means of an MDF formulation.

from __future__ import annotations

from gemseo import configure_logger
from gemseo import execute_algo
from gemseo import execute_post
from gemseo import generate_n2_plot
from gemseo.problems.mdo.scalable.parametric.core.scalable_discipline_settings import (
    ScalableDisciplineSettings,
)
from gemseo.problems.mdo.scalable.parametric.scalable_problem import ScalableProblem

configure_logger()
<RootLogger root (INFO)>

Instantiation of the scalable problem

problem = ScalableProblem(
    [ScalableDisciplineSettings(1, 2), ScalableDisciplineSettings(3, 4)], 1
)

Display the coupling structure

generate_n2_plot(problem.disciplines, save=False, show=True)
plot scalable param mdf

Solve the MDO using an MDF formulation

scenario = problem.create_scenario()
scenario.execute({"algo": "NLOPT_SLSQP", "max_iter": 100})
    INFO - 08:56:33:
    INFO - 08:56:33: *** Start MDOScenario execution ***
    INFO - 08:56:33: MDOScenario
    INFO - 08:56:33:    Disciplines: MainDiscipline ScalableDiscipline[1] ScalableDiscipline[2]
    INFO - 08:56:33:    MDO formulation: MDF
    INFO - 08:56:33: Optimization problem:
    INFO - 08:56:33:    minimize f(x_0, x_1, x_2)
    INFO - 08:56:33:    with respect to x_0, x_1, x_2
    INFO - 08:56:33:    subject to constraints:
    INFO - 08:56:33:       c_1(x_0, x_1, x_2) <= 0.0
    INFO - 08:56:33:       c_2(x_0, x_1, x_2) <= 0.0
    INFO - 08:56:33:    over the design space:
    INFO - 08:56:33:       +--------+-------------+-------+-------------+-------+
    INFO - 08:56:33:       | Name   | Lower bound | Value | Upper bound | Type  |
    INFO - 08:56:33:       +--------+-------------+-------+-------------+-------+
    INFO - 08:56:33:       | x_0    |      0      |  0.5  |      1      | float |
    INFO - 08:56:33:       | x_1    |      0      |  0.5  |      1      | float |
    INFO - 08:56:33:       | x_2[0] |      0      |  0.5  |      1      | float |
    INFO - 08:56:33:       | x_2[1] |      0      |  0.5  |      1      | float |
    INFO - 08:56:33:       | x_2[2] |      0      |  0.5  |      1      | float |
    INFO - 08:56:33:       +--------+-------------+-------+-------------+-------+
    INFO - 08:56:33: Solving optimization problem with algorithm NLOPT_SLSQP:
    INFO - 08:56:33:      1%|          | 1/100 [00:00<00:04, 20.65 it/sec, obj=3.07]
 WARNING - 08:56:33: MDAJacobi has reached its maximum number of iterations but the normed residual 2.1168696144554684e-06 is still above the tolerance 1e-06.
    INFO - 08:56:33:      2%|▏         | 2/100 [00:00<00:11,  8.82 it/sec, obj=1.21]
    INFO - 08:56:33:      3%|▎         | 3/100 [00:00<00:09, 10.14 it/sec, obj=0.991]
    INFO - 08:56:33:      4%|▍         | 4/100 [00:00<00:08, 10.99 it/sec, obj=0.986]
    INFO - 08:56:33:      5%|▌         | 5/100 [00:00<00:08, 11.57 it/sec, obj=0.982]
    INFO - 08:56:34:      6%|▌         | 6/100 [00:00<00:07, 11.99 it/sec, obj=0.971]
    INFO - 08:56:34:      7%|▋         | 7/100 [00:00<00:07, 12.28 it/sec, obj=0.97]
    INFO - 08:56:34:      8%|▊         | 8/100 [00:00<00:07, 12.51 it/sec, obj=0.969]
    INFO - 08:56:34:      9%|▉         | 9/100 [00:00<00:07, 12.69 it/sec, obj=0.969]
    INFO - 08:56:34:     10%|█         | 10/100 [00:00<00:07, 12.84 it/sec, obj=0.969]
    INFO - 08:56:34:     11%|█         | 11/100 [00:00<00:06, 14.11 it/sec, obj=Not evaluated]
    INFO - 08:56:34: Optimization result:
    INFO - 08:56:34:    Optimizer info:
    INFO - 08:56:34:       Status: None
    INFO - 08:56:34:       Message: Successive iterates of the design variables are closer than xtol_rel or xtol_abs. GEMSEO Stopped the driver
    INFO - 08:56:34:       Number of calls to the objective function by the optimizer: 11
    INFO - 08:56:34:    Solution:
    INFO - 08:56:34:       The solution is feasible.
    INFO - 08:56:34:       Objective: 0.9692177673322224
    INFO - 08:56:34:       Standardized constraints:
    INFO - 08:56:34:          c_1 = [-0.68664086 -0.21340455]
    INFO - 08:56:34:          c_2 = [-7.31227816e-01 -1.68967484e-01 -2.32695971e-01  1.19487753e-12]
    INFO - 08:56:34:       Design space:
    INFO - 08:56:34:          +--------+-------------+-----------------------+-------------+-------+
    INFO - 08:56:34:          | Name   | Lower bound |         Value         | Upper bound | Type  |
    INFO - 08:56:34:          +--------+-------------+-----------------------+-------------+-------+
    INFO - 08:56:34:          | x_0    |      0      |   0.7071349698120538  |      1      | float |
    INFO - 08:56:34:          | x_1    |      0      |   0.9999999999999997  |      1      | float |
    INFO - 08:56:34:          | x_2[0] |      0      | 2.906542539477308e-16 |      1      | float |
    INFO - 08:56:34:          | x_2[1] |      0      |   0.5233175560073929  |      1      | float |
    INFO - 08:56:34:          | x_2[2] |      0      | 6.286235338479938e-31 |      1      | float |
    INFO - 08:56:34:          +--------+-------------+-----------------------+-------------+-------+
    INFO - 08:56:34: *** End MDOScenario execution (time: 0:00:00.795360) ***

{'max_iter': 100, 'algo': 'NLOPT_SLSQP'}

Post-process the results

scenario.post_process("OptHistoryView", save=False, show=True)
  • Evolution of the optimization variables
  • Evolution of the objective value
  • Distance to the optimum
  • Hessian diagonal approximation
  • Evolution of the inequality constraints
<gemseo.post.opt_history_view.OptHistoryView object at 0x7f1db0ddcee0>

Solve the associated quadratic programming problem

problem = problem.create_quadratic_programming_problem()
execute_algo(problem, algo_name="NLOPT_SLSQP", max_iter=100)
    INFO - 08:56:35: Optimization problem:
    INFO - 08:56:35:    minimize f = 0.5x'Qx + c'x + d
    INFO - 08:56:35:    with respect to x
    INFO - 08:56:35:    subject to constraints:
    INFO - 08:56:35:       g: Ax-b <= 0 <= 0.0
    INFO - 08:56:35:    over the design space:
    INFO - 08:56:35:       +------+-------------+-------+-------------+-------+
    INFO - 08:56:35:       | Name | Lower bound | Value | Upper bound | Type  |
    INFO - 08:56:35:       +------+-------------+-------+-------------+-------+
    INFO - 08:56:35:       | x[0] |      0      |  0.5  |      1      | float |
    INFO - 08:56:35:       | x[1] |      0      |  0.5  |      1      | float |
    INFO - 08:56:35:       | x[2] |      0      |  0.5  |      1      | float |
    INFO - 08:56:35:       | x[3] |      0      |  0.5  |      1      | float |
    INFO - 08:56:35:       | x[4] |      0      |  0.5  |      1      | float |
    INFO - 08:56:35:       +------+-------------+-------+-------------+-------+
    INFO - 08:56:35: Solving optimization problem with algorithm NLOPT_SLSQP:
    INFO - 08:56:35:      1%|          | 1/100 [00:00<00:00, 2644.58 it/sec, obj=3.07]
    INFO - 08:56:35:      2%|▏         | 2/100 [00:00<00:00, 729.19 it/sec, obj=1.21]
    INFO - 08:56:35:      3%|▎         | 3/100 [00:00<00:00, 681.93 it/sec, obj=0.991]
    INFO - 08:56:35:      4%|▍         | 4/100 [00:00<00:00, 682.64 it/sec, obj=0.986]
    INFO - 08:56:35:      5%|▌         | 5/100 [00:00<00:00, 690.31 it/sec, obj=0.982]
    INFO - 08:56:35:      6%|▌         | 6/100 [00:00<00:00, 693.39 it/sec, obj=0.971]
    INFO - 08:56:35:      7%|▋         | 7/100 [00:00<00:00, 696.03 it/sec, obj=0.97]
   ERROR - 08:56:35: NLopt run failed: NLopt roundoff-limited, RoundoffLimited
Traceback (most recent call last):
  File "/home/docs/checkouts/readthedocs.org/user_builds/gemseo/envs/develop/lib/python3.9/site-packages/gemseo/algos/opt/lib_nlopt.py", line 498, in _run
    nlopt_problem.optimize(x_0.real)
  File "/home/docs/checkouts/readthedocs.org/user_builds/gemseo/envs/develop/lib/python3.9/site-packages/nlopt/nlopt.py", line 335, in optimize
    return _nlopt.opt_optimize(self, *args)
nlopt.RoundoffLimited: NLopt roundoff-limited
    INFO - 08:56:35:      8%|▊         | 8/100 [00:00<00:00, 670.67 it/sec, obj=0.969]
    INFO - 08:56:35: Optimization result:
    INFO - 08:56:35:    Optimizer info:
    INFO - 08:56:35:       Status: None
    INFO - 08:56:35:       Message:  GEMSEO Stopped the driver
    INFO - 08:56:35:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:56:35:    Solution:
    INFO - 08:56:35:       The solution is feasible.
    INFO - 08:56:35:       Objective: 0.9692176254005034
    INFO - 08:56:35:       Standardized constraints:
    INFO - 08:56:35:          g = [-6.86640980e-01 -2.13404451e-01 -7.31227677e-01 -1.68967471e-01
    INFO - 08:56:35:  -2.32695870e-01 -2.22044605e-15]
    INFO - 08:56:35:       Design space:
    INFO - 08:56:35:          +------+-------------+--------------------+-------------+-------+
    INFO - 08:56:35:          | Name | Lower bound |       Value        | Upper bound | Type  |
    INFO - 08:56:35:          +------+-------------+--------------------+-------------+-------+
    INFO - 08:56:35:          | x[0] |      0      | 0.7071348743877915 |      1      | float |
    INFO - 08:56:35:          | x[1] |      0      |         1          |      1      | float |
    INFO - 08:56:35:          | x[2] |      0      |         0          |      1      | float |
    INFO - 08:56:35:          | x[3] |      0      | 0.5233180438726639 |      1      | float |
    INFO - 08:56:35:          | x[4] |      0      |         0          |      1      | float |
    INFO - 08:56:35:          +------+-------------+--------------------+-------------+-------+
Optimization result:
  • Design variables: [0.70713487 1. 0. 0.52331804 0. ]
  • Objective function: 0.9692176254005034
  • Feasible solution: True


Post-process the results

execute_post(problem, "OptHistoryView", save=False, show=True)
  • Evolution of the optimization variables
  • Evolution of the objective value
  • Distance to the optimum
  • Hessian diagonal approximation
  • Evolution of the inequality constraints
<gemseo.post.opt_history_view.OptHistoryView object at 0x7f1db116bbe0>

Total running time of the script: (0 minutes 3.446 seconds)

Gallery generated by Sphinx-Gallery