Note
Go to the end to download the full example code
Create a DOE Scenario¶
from __future__ import annotations
from gemseo import configure_logger
from gemseo import create_design_space
from gemseo import create_discipline
from gemseo import create_scenario
from gemseo import get_available_doe_algorithms
from gemseo import get_available_post_processings
configure_logger()
<RootLogger root (INFO)>
Let \((P)\) be a simple optimization problem:
In this example, we will see how to use GEMSEO to solve this problem \((P)\) by means of a Design Of Experiments (DOE)
Define the discipline¶
Firstly, by means of the create_discipline()
API function,
we create an MDODiscipline
of AnalyticDiscipline
type
from a Python function:
expressions = {"y": "x1+x2"}
discipline = create_discipline("AnalyticDiscipline", expressions=expressions)
Now, we want to minimize this MDODiscipline
over a design of experiments (DOE).
Define the design space¶
For that, by means of the create_design_space()
API function,
we define the DesignSpace
\([-5, 5]\times[-5, 5]\)
by using its DesignSpace.add_variable()
method.
design_space = create_design_space()
design_space.add_variable("x1", l_b=-5, u_b=5, var_type="integer")
design_space.add_variable("x2", l_b=-5, u_b=5, var_type="integer")
Define the DOE scenario¶
Then, by means of the create_scenario()
API function,
we define a DOEScenario
from the MDODiscipline
and the DesignSpace
defined above:
scenario = create_scenario(
discipline, "DisciplinaryOpt", "y", design_space, scenario_type="DOE"
)
Execute the DOE scenario¶
Lastly, we solve the OptimizationProblem
included in the
DOEScenario
defined above by minimizing the objective function
over a design of experiments included in the DesignSpace
.
Precisely, we choose a full factorial design of size \(11^2\):
scenario.execute({"algo": "fullfact", "n_samples": 11**2})
INFO - 13:55:59:
INFO - 13:55:59: *** Start DOEScenario execution ***
INFO - 13:55:59: DOEScenario
INFO - 13:55:59: Disciplines: AnalyticDiscipline
INFO - 13:55:59: MDO formulation: DisciplinaryOpt
INFO - 13:55:59: Optimization problem:
INFO - 13:55:59: minimize y(x1, x2)
INFO - 13:55:59: with respect to x1, x2
INFO - 13:55:59: over the design space:
INFO - 13:55:59: +------+-------------+-------+-------------+---------+
INFO - 13:55:59: | name | lower_bound | value | upper_bound | type |
INFO - 13:55:59: +------+-------------+-------+-------------+---------+
INFO - 13:55:59: | x1 | -5 | None | 5 | integer |
INFO - 13:55:59: | x2 | -5 | None | 5 | integer |
INFO - 13:55:59: +------+-------------+-------+-------------+---------+
INFO - 13:55:59: Solving optimization problem with algorithm fullfact:
INFO - 13:55:59: ... 0%| | 0/121 [00:00<?, ?it]
INFO - 13:55:59: ... 1%| | 1/121 [00:00<00:00, 321.58 it/sec, obj=-10]
INFO - 13:55:59: ... 2%|▏ | 2/121 [00:00<00:00, 516.79 it/sec, obj=-9]
INFO - 13:55:59: ... 2%|▏ | 3/121 [00:00<00:00, 662.82 it/sec, obj=-8]
INFO - 13:55:59: ... 3%|▎ | 4/121 [00:00<00:00, 774.89 it/sec, obj=-7]
INFO - 13:55:59: ... 4%|▍ | 5/121 [00:00<00:00, 859.77 it/sec, obj=-6]
INFO - 13:55:59: ... 5%|▍ | 6/121 [00:00<00:00, 930.62 it/sec, obj=-5]
INFO - 13:55:59: ... 6%|▌ | 7/121 [00:00<00:00, 983.89 it/sec, obj=-4]
INFO - 13:55:59: ... 7%|▋ | 8/121 [00:00<00:00, 1033.62 it/sec, obj=-3]
INFO - 13:55:59: ... 7%|▋ | 9/121 [00:00<00:00, 1075.68 it/sec, obj=-2]
INFO - 13:55:59: ... 8%|▊ | 10/121 [00:00<00:00, 1112.25 it/sec, obj=-1]
INFO - 13:55:59: ... 9%|▉ | 11/121 [00:00<00:00, 1142.13 it/sec, obj=0]
INFO - 13:55:59: ... 10%|▉ | 12/121 [00:00<00:00, 1169.50 it/sec, obj=-9]
INFO - 13:55:59: ... 11%|█ | 13/121 [00:00<00:00, 1187.67 it/sec, obj=-8]
INFO - 13:55:59: ... 12%|█▏ | 14/121 [00:00<00:00, 1209.01 it/sec, obj=-7]
INFO - 13:55:59: ... 12%|█▏ | 15/121 [00:00<00:00, 1228.82 it/sec, obj=-6]
INFO - 13:55:59: ... 13%|█▎ | 16/121 [00:00<00:00, 1246.89 it/sec, obj=-5]
INFO - 13:55:59: ... 14%|█▍ | 17/121 [00:00<00:00, 1260.91 it/sec, obj=-4]
INFO - 13:55:59: ... 15%|█▍ | 18/121 [00:00<00:00, 1274.84 it/sec, obj=-3]
INFO - 13:55:59: ... 16%|█▌ | 19/121 [00:00<00:00, 1283.57 it/sec, obj=-2]
INFO - 13:55:59: ... 17%|█▋ | 20/121 [00:00<00:00, 1295.36 it/sec, obj=-1]
INFO - 13:55:59: ... 17%|█▋ | 21/121 [00:00<00:00, 1307.01 it/sec, obj=0]
INFO - 13:55:59: ... 18%|█▊ | 22/121 [00:00<00:00, 1317.83 it/sec, obj=1]
INFO - 13:55:59: ... 19%|█▉ | 23/121 [00:00<00:00, 1327.84 it/sec, obj=-8]
INFO - 13:55:59: ... 20%|█▉ | 24/121 [00:00<00:00, 1335.50 it/sec, obj=-7]
INFO - 13:55:59: ... 21%|██ | 25/121 [00:00<00:00, 1342.23 it/sec, obj=-6]
INFO - 13:55:59: ... 21%|██▏ | 26/121 [00:00<00:00, 1349.77 it/sec, obj=-5]
INFO - 13:55:59: ... 22%|██▏ | 27/121 [00:00<00:00, 1357.36 it/sec, obj=-4]
INFO - 13:55:59: ... 23%|██▎ | 28/121 [00:00<00:00, 1364.62 it/sec, obj=-3]
INFO - 13:55:59: ... 24%|██▍ | 29/121 [00:00<00:00, 1371.61 it/sec, obj=-2]
INFO - 13:55:59: ... 25%|██▍ | 30/121 [00:00<00:00, 1376.69 it/sec, obj=-1]
INFO - 13:55:59: ... 26%|██▌ | 31/121 [00:00<00:00, 1382.42 it/sec, obj=0]
INFO - 13:55:59: ... 26%|██▋ | 32/121 [00:00<00:00, 1385.69 it/sec, obj=1]
INFO - 13:55:59: ... 27%|██▋ | 33/121 [00:00<00:00, 1390.92 it/sec, obj=2]
INFO - 13:55:59: ... 28%|██▊ | 34/121 [00:00<00:00, 1396.06 it/sec, obj=-7]
INFO - 13:55:59: ... 29%|██▉ | 35/121 [00:00<00:00, 1401.00 it/sec, obj=-6]
INFO - 13:55:59: ... 30%|██▉ | 36/121 [00:00<00:00, 1404.67 it/sec, obj=-5]
INFO - 13:55:59: ... 31%|███ | 37/121 [00:00<00:00, 1408.93 it/sec, obj=-4]
INFO - 13:55:59: ... 31%|███▏ | 38/121 [00:00<00:00, 1411.54 it/sec, obj=-3]
INFO - 13:55:59: ... 32%|███▏ | 39/121 [00:00<00:00, 1415.57 it/sec, obj=-2]
INFO - 13:55:59: ... 33%|███▎ | 40/121 [00:00<00:00, 1419.49 it/sec, obj=-1]
INFO - 13:55:59: ... 34%|███▍ | 41/121 [00:00<00:00, 1423.47 it/sec, obj=0]
INFO - 13:55:59: ... 35%|███▍ | 42/121 [00:00<00:00, 1426.47 it/sec, obj=1]
INFO - 13:55:59: ... 36%|███▌ | 43/121 [00:00<00:00, 1429.61 it/sec, obj=2]
INFO - 13:55:59: ... 36%|███▋ | 44/121 [00:00<00:00, 1431.06 it/sec, obj=3]
INFO - 13:55:59: ... 37%|███▋ | 45/121 [00:00<00:00, 1434.09 it/sec, obj=-6]
INFO - 13:55:59: ... 38%|███▊ | 46/121 [00:00<00:00, 1437.21 it/sec, obj=-5]
INFO - 13:55:59: ... 39%|███▉ | 47/121 [00:00<00:00, 1440.23 it/sec, obj=-4]
INFO - 13:55:59: ... 40%|███▉ | 48/121 [00:00<00:00, 1443.33 it/sec, obj=-3]
INFO - 13:55:59: ... 40%|████ | 49/121 [00:00<00:00, 1445.37 it/sec, obj=-2]
INFO - 13:55:59: ... 41%|████▏ | 50/121 [00:00<00:00, 1448.08 it/sec, obj=-1]
INFO - 13:55:59: ... 42%|████▏ | 51/121 [00:00<00:00, 1449.39 it/sec, obj=0]
INFO - 13:55:59: ... 43%|████▎ | 52/121 [00:00<00:00, 1451.78 it/sec, obj=1]
INFO - 13:55:59: ... 44%|████▍ | 53/121 [00:00<00:00, 1454.07 it/sec, obj=2]
INFO - 13:55:59: ... 45%|████▍ | 54/121 [00:00<00:00, 1456.45 it/sec, obj=3]
INFO - 13:55:59: ... 45%|████▌ | 55/121 [00:00<00:00, 1457.71 it/sec, obj=4]
INFO - 13:55:59: ... 46%|████▋ | 56/121 [00:00<00:00, 1459.87 it/sec, obj=-5]
INFO - 13:55:59: ... 47%|████▋ | 57/121 [00:00<00:00, 1460.80 it/sec, obj=-4]
INFO - 13:55:59: ... 48%|████▊ | 58/121 [00:00<00:00, 1462.91 it/sec, obj=-3]
INFO - 13:55:59: ... 49%|████▉ | 59/121 [00:00<00:00, 1464.89 it/sec, obj=-2]
INFO - 13:55:59: ... 50%|████▉ | 60/121 [00:00<00:00, 1466.91 it/sec, obj=-1]
INFO - 13:55:59: ... 50%|█████ | 61/121 [00:00<00:00, 1467.97 it/sec, obj=0]
INFO - 13:55:59: ... 51%|█████ | 62/121 [00:00<00:00, 1469.65 it/sec, obj=1]
INFO - 13:55:59: ... 52%|█████▏ | 63/121 [00:00<00:00, 1470.16 it/sec, obj=2]
INFO - 13:55:59: ... 53%|█████▎ | 64/121 [00:00<00:00, 1471.86 it/sec, obj=3]
INFO - 13:55:59: ... 54%|█████▎ | 65/121 [00:00<00:00, 1473.56 it/sec, obj=4]
INFO - 13:55:59: ... 55%|█████▍ | 66/121 [00:00<00:00, 1475.26 it/sec, obj=5]
INFO - 13:55:59: ... 55%|█████▌ | 67/121 [00:00<00:00, 1476.86 it/sec, obj=-4]
INFO - 13:55:59: ... 56%|█████▌ | 68/121 [00:00<00:00, 1477.58 it/sec, obj=-3]
INFO - 13:55:59: ... 57%|█████▋ | 69/121 [00:00<00:00, 1478.10 it/sec, obj=-2]
INFO - 13:55:59: ... 58%|█████▊ | 70/121 [00:00<00:00, 1479.49 it/sec, obj=-1]
INFO - 13:55:59: ... 59%|█████▊ | 71/121 [00:00<00:00, 1481.02 it/sec, obj=0]
INFO - 13:55:59: ... 60%|█████▉ | 72/121 [00:00<00:00, 1482.56 it/sec, obj=1]
INFO - 13:55:59: ... 60%|██████ | 73/121 [00:00<00:00, 1484.10 it/sec, obj=2]
INFO - 13:55:59: ... 61%|██████ | 74/121 [00:00<00:00, 1484.99 it/sec, obj=3]
INFO - 13:55:59: ... 62%|██████▏ | 75/121 [00:00<00:00, 1486.41 it/sec, obj=4]
INFO - 13:55:59: ... 63%|██████▎ | 76/121 [00:00<00:00, 1486.77 it/sec, obj=5]
INFO - 13:55:59: ... 64%|██████▎ | 77/121 [00:00<00:00, 1487.99 it/sec, obj=6]
INFO - 13:55:59: ... 64%|██████▍ | 78/121 [00:00<00:00, 1489.20 it/sec, obj=-3]
INFO - 13:55:59: ... 65%|██████▌ | 79/121 [00:00<00:00, 1490.45 it/sec, obj=-2]
INFO - 13:55:59: ... 66%|██████▌ | 80/121 [00:00<00:00, 1490.98 it/sec, obj=-1]
INFO - 13:55:59: ... 67%|██████▋ | 81/121 [00:00<00:00, 1492.26 it/sec, obj=0]
INFO - 13:55:59: ... 68%|██████▊ | 82/121 [00:00<00:00, 1492.60 it/sec, obj=1]
INFO - 13:55:59: ... 69%|██████▊ | 83/121 [00:00<00:00, 1489.77 it/sec, obj=2]
INFO - 13:55:59: ... 69%|██████▉ | 84/121 [00:00<00:00, 1490.68 it/sec, obj=3]
INFO - 13:55:59: ... 70%|███████ | 85/121 [00:00<00:00, 1491.77 it/sec, obj=4]
INFO - 13:55:59: ... 71%|███████ | 86/121 [00:00<00:00, 1492.26 it/sec, obj=5]
INFO - 13:55:59: ... 72%|███████▏ | 87/121 [00:00<00:00, 1491.71 it/sec, obj=6]
INFO - 13:55:59: ... 73%|███████▎ | 88/121 [00:00<00:00, 1491.43 it/sec, obj=7]
INFO - 13:55:59: ... 74%|███████▎ | 89/121 [00:00<00:00, 1492.21 it/sec, obj=-2]
INFO - 13:55:59: ... 74%|███████▍ | 90/121 [00:00<00:00, 1493.15 it/sec, obj=-1]
INFO - 13:55:59: ... 75%|███████▌ | 91/121 [00:00<00:00, 1494.23 it/sec, obj=0]
INFO - 13:55:59: ... 76%|███████▌ | 92/121 [00:00<00:00, 1494.83 it/sec, obj=1]
INFO - 13:55:59: ... 77%|███████▋ | 93/121 [00:00<00:00, 1495.71 it/sec, obj=2]
INFO - 13:55:59: ... 78%|███████▊ | 94/121 [00:00<00:00, 1495.83 it/sec, obj=3]
INFO - 13:55:59: ... 79%|███████▊ | 95/121 [00:00<00:00, 1496.51 it/sec, obj=4]
INFO - 13:55:59: ... 79%|███████▉ | 96/121 [00:00<00:00, 1497.47 it/sec, obj=5]
INFO - 13:55:59: ... 80%|████████ | 97/121 [00:00<00:00, 1498.38 it/sec, obj=6]
INFO - 13:55:59: ... 81%|████████ | 98/121 [00:00<00:00, 1499.33 it/sec, obj=7]
INFO - 13:55:59: ... 82%|████████▏ | 99/121 [00:00<00:00, 1499.68 it/sec, obj=8]
INFO - 13:55:59: ... 83%|████████▎ | 100/121 [00:00<00:00, 1499.55 it/sec, obj=-1]
INFO - 13:55:59: ... 83%|████████▎ | 101/121 [00:00<00:00, 1500.18 it/sec, obj=0]
INFO - 13:55:59: ... 84%|████████▍ | 102/121 [00:00<00:00, 1501.10 it/sec, obj=1]
INFO - 13:55:59: ... 85%|████████▌ | 103/121 [00:00<00:00, 1501.87 it/sec, obj=2]
INFO - 13:55:59: ... 86%|████████▌ | 104/121 [00:00<00:00, 1502.66 it/sec, obj=3]
INFO - 13:55:59: ... 87%|████████▋ | 105/121 [00:00<00:00, 1502.86 it/sec, obj=4]
INFO - 13:55:59: ... 88%|████████▊ | 106/121 [00:00<00:00, 1503.70 it/sec, obj=5]
INFO - 13:55:59: ... 88%|████████▊ | 107/121 [00:00<00:00, 1503.58 it/sec, obj=6]
INFO - 13:55:59: ... 89%|████████▉ | 108/121 [00:00<00:00, 1504.37 it/sec, obj=7]
INFO - 13:55:59: ... 90%|█████████ | 109/121 [00:00<00:00, 1505.15 it/sec, obj=8]
INFO - 13:55:59: ... 91%|█████████ | 110/121 [00:00<00:00, 1505.95 it/sec, obj=9]
INFO - 13:55:59: ... 92%|█████████▏| 111/121 [00:00<00:00, 1506.20 it/sec, obj=0]
INFO - 13:55:59: ... 93%|█████████▎| 112/121 [00:00<00:00, 1506.88 it/sec, obj=1]
INFO - 13:55:59: ... 93%|█████████▎| 113/121 [00:00<00:00, 1506.90 it/sec, obj=2]
INFO - 13:55:59: ... 94%|█████████▍| 114/121 [00:00<00:00, 1507.56 it/sec, obj=3]
INFO - 13:55:59: ... 95%|█████████▌| 115/121 [00:00<00:00, 1508.33 it/sec, obj=4]
INFO - 13:55:59: ... 96%|█████████▌| 116/121 [00:00<00:00, 1508.97 it/sec, obj=5]
INFO - 13:55:59: ... 97%|█████████▋| 117/121 [00:00<00:00, 1509.30 it/sec, obj=6]
INFO - 13:55:59: ... 98%|█████████▊| 118/121 [00:00<00:00, 1509.96 it/sec, obj=7]
INFO - 13:55:59: ... 98%|█████████▊| 119/121 [00:00<00:00, 1510.02 it/sec, obj=8]
INFO - 13:55:59: ... 99%|█████████▉| 120/121 [00:00<00:00, 1510.61 it/sec, obj=9]
INFO - 13:55:59: ... 100%|██████████| 121/121 [00:00<00:00, 1511.25 it/sec, obj=10]
INFO - 13:55:59: Optimization result:
INFO - 13:55:59: Optimizer info:
INFO - 13:55:59: Status: None
INFO - 13:55:59: Message: None
INFO - 13:55:59: Number of calls to the objective function by the optimizer: 121
INFO - 13:55:59: Solution:
INFO - 13:55:59: Objective: -10.0
INFO - 13:55:59: Design space:
INFO - 13:55:59: +------+-------------+-------+-------------+---------+
INFO - 13:55:59: | name | lower_bound | value | upper_bound | type |
INFO - 13:55:59: +------+-------------+-------+-------------+---------+
INFO - 13:55:59: | x1 | -5 | -5 | 5 | integer |
INFO - 13:55:59: | x2 | -5 | -5 | 5 | integer |
INFO - 13:55:59: +------+-------------+-------+-------------+---------+
INFO - 13:55:59: *** End DOEScenario execution (time: 0:00:00.093077) ***
{'eval_jac': False, 'n_samples': 121, 'algo': 'fullfact'}
The optimum results can be found in the execution log. It is also possible to
access them with Scenario.optimization_result
:
optimization_result = scenario.optimization_result
f"The solution of P is (x*, f(x*)) = ({optimization_result.x_opt}, {optimization_result.f_opt})"
'The solution of P is (x*, f(x*)) = ([-5. -5.], -10.0)'
Available DOE algorithms¶
In order to get the list of available DOE algorithms, use:
get_available_doe_algorithms()
['CustomDOE', 'DiagonalDOE', 'OT_SOBOL', 'OT_RANDOM', 'OT_HASELGROVE', 'OT_REVERSE_HALTON', 'OT_HALTON', 'OT_FAURE', 'OT_MONTE_CARLO', 'OT_FACTORIAL', 'OT_COMPOSITE', 'OT_AXIAL', 'OT_OPT_LHS', 'OT_LHS', 'OT_LHSC', 'OT_FULLFACT', 'OT_SOBOL_INDICES', 'fullfact', 'ff2n', 'pbdesign', 'bbdesign', 'ccdesign', 'lhs']
Available post-processing¶
In order to get the list of available post-processing algorithms, use:
get_available_post_processings()
['Animation', 'BasicHistory', 'Compromise', 'ConstraintsHistory', 'Correlations', 'GradientSensitivity', 'HighTradeOff', 'MultiObjectiveDiagram', 'ObjConstrHist', 'OptHistoryView', 'ParallelCoordinates', 'ParetoFront', 'Petal', 'QuadApprox', 'Radar', 'RadarChart', 'Robustness', 'SOM', 'ScatterPareto', 'ScatterPlotMatrix', 'TopologyView', 'VariableInfluence']
You can also look at the examples:
Total running time of the script: ( 0 minutes 0.107 seconds)