Note
Click here to download the full example code
Simple disciplinary DOE example on the Sobieski SSBJ test case¶
from __future__ import annotations
from gemseo.api import configure_logger
from gemseo.api import create_discipline
from gemseo.api import create_scenario
from gemseo.problems.sobieski.core.problem import SobieskiProblem
configure_logger()
<RootLogger root (INFO)>
Instantiate the discipline¶
discipline = create_discipline("SobieskiMission")
Create the design space¶
design_space = SobieskiProblem().design_space
design_space.filter(["y_24", "y_34"])
<gemseo.algos.design_space.DesignSpace object at 0x7fccd35f6a00>
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"})
INFO - 17:26:06:
INFO - 17:26:06: *** Start DOEScenario execution ***
INFO - 17:26:06: DOEScenario
INFO - 17:26:06: Disciplines: SobieskiMission
INFO - 17:26:06: MDO formulation: DisciplinaryOpt
INFO - 17:26:06: Optimization problem:
INFO - 17:26:06: minimize -y_4(y_24, y_34)
INFO - 17:26:06: with respect to y_24, y_34
INFO - 17:26:06: over the design space:
INFO - 17:26:06: +------+-------------+------------+-------------+-------+
INFO - 17:26:06: | name | lower_bound | value | upper_bound | type |
INFO - 17:26:06: +------+-------------+------------+-------------+-------+
INFO - 17:26:06: | y_24 | 0.44 | 4.15006276 | 11.13 | float |
INFO - 17:26:06: | y_34 | 0.44 | 1.10754577 | 1.98 | float |
INFO - 17:26:06: +------+-------------+------------+-------------+-------+
INFO - 17:26:06: Solving optimization problem with algorithm lhs:
INFO - 17:26:06: ... 0%| | 0/30 [00:00<?, ?it]
INFO - 17:26:06: ... 3%|▎ | 1/30 [00:00<00:00, 157.81 it/sec, obj=-1.53e+3]
INFO - 17:26:06: ... 7%|▋ | 2/30 [00:00<00:00, 263.25 it/sec, obj=-1.66e+3]
INFO - 17:26:06: ... 10%|█ | 3/30 [00:00<00:00, 343.12 it/sec, obj=-832]
INFO - 17:26:06: ... 13%|█▎ | 4/30 [00:00<00:00, 405.66 it/sec, obj=-1.62e+3]
INFO - 17:26:06: ... 17%|█▋ | 5/30 [00:00<00:00, 453.14 it/sec, obj=-994]
INFO - 17:26:06: ... 20%|██ | 6/30 [00:00<00:00, 492.56 it/sec, obj=-601]
INFO - 17:26:06: ... 23%|██▎ | 7/30 [00:00<00:00, 526.87 it/sec, obj=-180]
INFO - 17:26:06: ... 27%|██▋ | 8/30 [00:00<00:00, 556.14 it/sec, obj=-755]
INFO - 17:26:06: ... 30%|███ | 9/30 [00:00<00:00, 578.20 it/sec, obj=-691]
INFO - 17:26:06: ... 33%|███▎ | 10/30 [00:00<00:00, 599.21 it/sec, obj=-393]
INFO - 17:26:06: ... 37%|███▋ | 11/30 [00:00<00:00, 618.21 it/sec, obj=-362]
INFO - 17:26:06: ... 40%|████ | 12/30 [00:00<00:00, 632.74 it/sec, obj=-748]
INFO - 17:26:06: ... 43%|████▎ | 13/30 [00:00<00:00, 646.36 it/sec, obj=-719]
INFO - 17:26:06: ... 47%|████▋ | 14/30 [00:00<00:00, 659.81 it/sec, obj=-293]
INFO - 17:26:06: ... 50%|█████ | 15/30 [00:00<00:00, 671.70 it/sec, obj=-931]
INFO - 17:26:06: ... 53%|█████▎ | 16/30 [00:00<00:00, 680.46 it/sec, obj=-264]
INFO - 17:26:06: ... 57%|█████▋ | 17/30 [00:00<00:00, 689.12 it/sec, obj=-1.17e+3]
INFO - 17:26:06: ... 60%|██████ | 18/30 [00:00<00:00, 695.69 it/sec, obj=-495]
INFO - 17:26:06: ... 63%|██████▎ | 19/30 [00:00<00:00, 702.57 it/sec, obj=-189]
INFO - 17:26:06: ... 67%|██████▋ | 20/30 [00:00<00:00, 709.56 it/sec, obj=-2.23e+3]
INFO - 17:26:06: ... 70%|███████ | 21/30 [00:00<00:00, 716.84 it/sec, obj=-344]
INFO - 17:26:06: ... 73%|███████▎ | 22/30 [00:00<00:00, 723.70 it/sec, obj=-799]
INFO - 17:26:06: ... 77%|███████▋ | 23/30 [00:00<00:00, 728.43 it/sec, obj=-55.9]
INFO - 17:26:06: ... 80%|████████ | 24/30 [00:00<00:00, 731.78 it/sec, obj=-123]
INFO - 17:26:06: ... 83%|████████▎ | 25/30 [00:00<00:00, 737.44 it/sec, obj=-875]
INFO - 17:26:06: ... 87%|████████▋ | 26/30 [00:00<00:00, 741.34 it/sec, obj=-726]
INFO - 17:26:06: ... 90%|█████████ | 27/30 [00:00<00:00, 745.51 it/sec, obj=-69.6]
INFO - 17:26:06: ... 93%|█████████▎| 28/30 [00:00<00:00, 750.20 it/sec, obj=-1.51e+3]
INFO - 17:26:06: ... 97%|█████████▋| 29/30 [00:00<00:00, 754.50 it/sec, obj=-1.15e+3]
INFO - 17:26:06: ... 100%|██████████| 30/30 [00:00<00:00, 757.14 it/sec, obj=-2.73e+3]
INFO - 17:26:06: Optimization result:
INFO - 17:26:06: Optimizer info:
INFO - 17:26:06: Status: None
INFO - 17:26:06: Message: None
INFO - 17:26:06: Number of calls to the objective function by the optimizer: 30
INFO - 17:26:06: Solution:
INFO - 17:26:06: Objective: -2726.3660548732214
INFO - 17:26:06: Design space:
INFO - 17:26:06: +------+-------------+--------------------+-------------+-------+
INFO - 17:26:06: | name | lower_bound | value | upper_bound | type |
INFO - 17:26:06: +------+-------------+--------------------+-------------+-------+
INFO - 17:26:06: | y_24 | 0.44 | 9.094543945649603 | 11.13 | float |
INFO - 17:26:06: | y_34 | 0.44 | 0.4769766573300308 | 1.98 | float |
INFO - 17:26:06: +------+-------------+--------------------+-------------+-------+
INFO - 17:26:06: *** End DOEScenario execution (time: 0:00:00.056020) ***
{'eval_jac': False, 'algo': 'lhs', 'n_samples': 30}
Plot optimization history view¶
scenario.post_process("OptHistoryView", save=False, show=True)
<gemseo.post.opt_history_view.OptHistoryView object at 0x7fccd35f6940>
Plot parallel coordinates¶
scenario.post_process(
"ScatterPlotMatrix",
variable_names=["y_4", "y_24", "y_34"],
save=False,
show=True,
)

<gemseo.post.scatter_mat.ScatterPlotMatrix object at 0x7fccf0458c10>
Total running time of the script: ( 0 minutes 2.096 seconds)