Simple disciplinary DOE example on the Sobieski SSBJ test case

from __future__ import division, unicode_literals

from matplotlib import pyplot as plt

from gemseo.api import configure_logger, create_discipline, create_scenario
from gemseo.problems.sobieski.core import SobieskiProblem

configure_logger()

Out:

<RootLogger root (INFO)>

Instantiate the discipline

discipline = create_discipline("SobieskiMission")

Create the design space

design_space = SobieskiProblem().read_design_space()
design_space.filter(["y_24", "y_34"])

Out:

<gemseo.algos.design_space.DesignSpace object at 0x7f61b87fc5b0>

Create the scenario

Build scenario which links the disciplines with the formulation and The DOE algorithm.

scenario = create_scenario(
    [discipline],
    formulation="DisciplinaryOpt",
    objective_name="y_4",
    design_space=design_space,
    maximize_objective=True,
    scenario_type="DOE",
)

Execute the scenario

Here we use a latin hypercube sampling algorithm with 30 samples.

scenario.execute({"n_samples": 30, "algo": "lhs"})

Out:

    INFO - 09:23:30:
    INFO - 09:23:30: *** Start DOE Scenario execution ***
    INFO - 09:23:30: DOEScenario
    INFO - 09:23:30:    Disciplines: SobieskiMission
    INFO - 09:23:30:    MDOFormulation: DisciplinaryOpt
    INFO - 09:23:30:    Algorithm: lhs
    INFO - 09:23:30: Optimization problem:
    INFO - 09:23:30:    Minimize: -y_4(y_24, y_34)
    INFO - 09:23:30:    With respect to: y_24, y_34
    INFO - 09:23:30: DOE sampling:   0%|          | 0/30 [00:00<?, ?it]
    INFO - 09:23:30: DOE sampling: 100%|██████████| 30/30 [00:00<00:00, 1507.28 it/sec, obj=2.73e+3]
    INFO - 09:23:30: Optimization result:
    INFO - 09:23:30: Objective value = 2726.3660548732214
    INFO - 09:23:30: The result is feasible.
    INFO - 09:23:30: Status: None
    INFO - 09:23:30: Optimizer message: None
    INFO - 09:23:30: Number of calls to the objective function by the optimizer: 30
    INFO - 09:23:30: Design Space:
    INFO - 09:23:30: +------+-------------+--------------------+-------------+-------+
    INFO - 09:23:30: | name | lower_bound |       value        | upper_bound | type  |
    INFO - 09:23:30: +------+-------------+--------------------+-------------+-------+
    INFO - 09:23:30: | y_24 |     0.44    | 9.094543945649603  |    11.13    | float |
    INFO - 09:23:30: | y_34 |     0.44    | 0.4769766573300308 |     1.98    | float |
    INFO - 09:23:30: +------+-------------+--------------------+-------------+-------+
    INFO - 09:23:30: *** DOE Scenario run terminated ***

{'eval_jac': False, 'algo': 'lhs', 'n_samples': 30}

Plot optimization history view

scenario.post_process("OptHistoryView", save=False, show=False)
  • Evolution of the optimization variables
  • Evolution of the objective value
  • Distance to the optimum

Out:

<gemseo.post.opt_history_view.OptHistoryView object at 0x7f61b8e86580>

Plot parallel coordinates

scenario.post_process(
    "ScatterPlotMatrix", save=False, show=False, variables_list=["y_4", "y_24", "y_34"]
)
# Workaround for HTML rendering, instead of ``show=True``
plt.show()
plot sobieski doe disc example

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

Gallery generated by Sphinx-Gallery