Note
Go to the end to download the full example code
GEMSEO in 10 minutes¶
Introduction¶
This is a short introduction to GEMSEO, geared mainly for new users. In this example, we will set up a simple Multi-disciplinary Design Optimization (MDO) problem based on a simple analytic problem.
Imports¶
First, we will import all the classes and functions needed for the tutorials.
from __future__ import annotations
from math import exp
from numpy import array
from numpy import ones
from gemseo import configure_logger
from gemseo import create_design_space
from gemseo import create_discipline
from gemseo import create_scenario
from gemseo import generate_n2_plot
These imports are needed to compute mathematical expressions and to instantiate NumPy arrays. NumPy arrays are used to store numerical data in GEMSEO at a low level. If you are not comfortable using NumPy, please have a look at the Numpy Quickstart tutorial.
Here, we configure the GEMSEO logger in order to get information of the process as it is executed.
configure_logger()
<RootLogger root (INFO)>
A simple MDO test case: the Sellar Problem¶
We will consider in this example the Sellar’s problem:
where the coupling variables are
and
and where the general constraints are
Definition of the disciplines using Python functions¶
The Sellar’s problem is composed of two disciplines and an objective function. As they are expressed analytically, it is possible to write them as simple Python functions which take as parameters the design variables and the coupling variables. The returned values may be the outputs of a discipline, the values of the constraints or the value of the objective function. Their definitions read:
def f_sellar_system(x_local=1.0, x_shared_2=3.0, y_1=1.0, y_2=1.0):
"""Objective function."""
obj = x_local**2 + x_shared_2 + y_1**2 + exp(-y_2)
c_1 = 3.16 - y_1**2
c_2 = y_2 - 24.0
return obj, c_1, c_2
def f_sellar_1(x_local=1.0, y_2=1.0, x_shared_1=1.0, x_shared_2=3.0):
"""Function for discipline 1."""
y_1 = (x_shared_1**2 + x_shared_2 + x_local - 0.2 * y_2) ** 0.5
return y_1
def f_sellar_2(y_1=1.0, x_shared_1=1.0, x_shared_2=3.0):
"""Function for discipline 2."""
y_2 = abs(y_1) + x_shared_1 + x_shared_2
return y_2
These Python functions can be easily converted into GEMSEO
MDODiscipline
objects by using the AutoPyDiscipline
discipline. It enables the automatic wrapping of a Python function into a
GEMSEO
MDODiscipline
by only passing a reference to the function to be
wrapped. GEMSEO handles the wrapping and the grammar creation under the
hood. The AutoPyDiscipline
discipline can be instantiated using the
create_discipline()
function from the GEMSEO API:
disc_sellar_system = create_discipline("AutoPyDiscipline", py_func=f_sellar_system)
disc_sellar_1 = create_discipline("AutoPyDiscipline", py_func=f_sellar_1)
disc_sellar_2 = create_discipline("AutoPyDiscipline", py_func=f_sellar_2)
WARNING - 08:59:21: Discipline f_sellar_system: py_func has inconsistent type hints: either both the signature arguments and the return values shall have type hints or none. The grammars will not use the type hints at all.
WARNING - 08:59:21: Discipline f_sellar_1: py_func has inconsistent type hints: either both the signature arguments and the return values shall have type hints or none. The grammars will not use the type hints at all.
WARNING - 08:59:21: Discipline f_sellar_2: py_func has inconsistent type hints: either both the signature arguments and the return values shall have type hints or none. The grammars will not use the type hints at all.
Note that it is possible to define the Sellar disciplines by subclassing the
MDODiscipline
class and implementing the constuctor and the _run
method by hand. Although it would take more time, it may also provide more
flexibility and more options. This method is illustrated in the Sellar
from scratch tutorial.
We then create a list of disciplines, which will be used later to create an
MDOScenario
:
disciplines = [disc_sellar_system, disc_sellar_1, disc_sellar_2]
We can quickly access the most relevant information of any discipline (name, inputs, and outputs) with their string representations:
disc_sellar_1
Moreover,
we can get the default input values of a discipline
with the attribute MDODiscipline.default_inputs
:
disc_sellar_1.default_inputs
{'x_local': array([1.]), 'x_shared_1': array([1.]), 'y_2': array([1.]), 'x_shared_2': array([3.])}
You may also be interested in plotting the couplings of your disciplines.
A quick way of getting this information is the high-level function
generate_n2_plot()
. A much more detailed explanation of coupling
visualization is available here.
generate_n2_plot(disciplines, save=False, show=True)
Note
For the sake of clarity, these disciplines are overly simple. Yet, GEMSEO enables the definition of much more complex disciplines, such as wrapping complex COTS. Check out the other tutorials and our publications list for more information.
Definition of the design space¶
In order to define MDOScenario
,
a design space has to be defined by creating a DesignSpace
object. The design space definition reads:
design_space = create_design_space()
design_space.add_variable("x_local", l_b=0.0, u_b=10.0, value=ones(1))
design_space.add_variable("x_shared_1", l_b=-10, u_b=10.0, value=array([4.0]))
design_space.add_variable("x_shared_2", l_b=0.0, u_b=10.0, value=array([3.0]))
design_space.add_variable("y_1", l_b=-100.0, u_b=100.0, value=ones(1))
design_space.add_variable("y_2", l_b=-100.0, u_b=100.0, value=ones(1))
design_space
Definition of the MDO scenario¶
Once the disciplines and the design space have been defined,
we can create our MDO scenario
by using the high-level function create_scenario()
.
In this simple example,
we are using a Multiple Disciplinary Feasible (MDF) strategy.
The Multiple Disciplinary Analyses (MDA) are carried out using the
Gauss-Seidel method. The scenario definition reads:
scenario = create_scenario(
disciplines,
"MDF",
"obj",
design_space,
inner_mda_name="MDAGaussSeidel",
)
It can be noted that neither a workflow nor a dataflow has been defined. By design, there is no need to explicitly define the workflow and the dataflow in GEMSEO:
the workflow is determined from the MDO formulation used.
the dataflow is determined from the variable names used in the disciplines. Then, it is of uttermost importance to be consistent while choosing and using the variable names in the disciplines.
Warning
As the workflow and the dataflow are implicitly determined by GEMSEO, set-up errors may easily occur. Although it is not performed in this example, it is strongly advised to
check the interfaces between the several disciplines using an N2 diagram,
check the MDO process using an XDSM representation
Setting the constraints¶
Most of the MDO problems are under constraints. In our problem, we have two inequality constraints, and their declaration reads:
scenario.add_constraint("c_1", constraint_type="ineq")
scenario.add_constraint("c_2", constraint_type="ineq")
Execution of the scenario¶
The scenario is now complete and ready to be executed. When running the optimization process, the user can choose the optimization algorithm and the maximum number of iterations to perform. The execution of the scenario reads:
scenario.execute({"max_iter": 10, "algo": "SLSQP"})
INFO - 08:59:21:
INFO - 08:59:21: *** Start MDOScenario execution ***
INFO - 08:59:21: MDOScenario
INFO - 08:59:21: Disciplines: f_sellar_1 f_sellar_2 f_sellar_system
INFO - 08:59:21: MDO formulation: MDF
INFO - 08:59:21: Optimization problem:
INFO - 08:59:21: minimize obj(x_local, x_shared_1, x_shared_2)
INFO - 08:59:21: with respect to x_local, x_shared_1, x_shared_2
INFO - 08:59:21: subject to constraints:
INFO - 08:59:21: c_1(x_local, x_shared_1, x_shared_2) <= 0.0
INFO - 08:59:21: c_2(x_local, x_shared_1, x_shared_2) <= 0.0
INFO - 08:59:21: over the design space:
INFO - 08:59:21: +------------+-------------+-------+-------------+-------+
INFO - 08:59:21: | Name | Lower bound | Value | Upper bound | Type |
INFO - 08:59:21: +------------+-------------+-------+-------------+-------+
INFO - 08:59:21: | x_local | 0 | 1 | 10 | float |
INFO - 08:59:21: | x_shared_1 | -10 | 4 | 10 | float |
INFO - 08:59:21: | x_shared_2 | 0 | 3 | 10 | float |
INFO - 08:59:21: +------------+-------------+-------+-------------+-------+
INFO - 08:59:21: Solving optimization problem with algorithm SLSQP:
INFO - 08:59:21: 10%|█ | 1/10 [00:00<00:00, 35.44 it/sec, obj=21.8]
INFO - 08:59:21: 20%|██ | 2/10 [00:00<00:00, 24.74 it/sec, obj=5.39]
INFO - 08:59:21: 30%|███ | 3/10 [00:00<00:00, 23.20 it/sec, obj=3.41]
INFO - 08:59:21: 40%|████ | 4/10 [00:00<00:00, 22.38 it/sec, obj=3.19]
INFO - 08:59:21: 50%|█████ | 5/10 [00:00<00:00, 21.94 it/sec, obj=3.18]
INFO - 08:59:21: 60%|██████ | 6/10 [00:00<00:00, 21.68 it/sec, obj=3.18]
INFO - 08:59:21: Optimization result:
INFO - 08:59:21: Optimizer info:
INFO - 08:59:21: Status: 8
INFO - 08:59:21: Message: Positive directional derivative for linesearch
INFO - 08:59:21: Number of calls to the objective function by the optimizer: 7
INFO - 08:59:21: Solution:
INFO - 08:59:21: The solution is feasible.
INFO - 08:59:21: Objective: 3.183393951747747
INFO - 08:59:21: Standardized constraints:
INFO - 08:59:21: c_1 = 4.196643033083092e-12
INFO - 08:59:21: c_2 = -20.244722237800833
INFO - 08:59:21: Design space:
INFO - 08:59:21: +------------+-------------+-----------------------+-------------+-------+
INFO - 08:59:21: | Name | Lower bound | Value | Upper bound | Type |
INFO - 08:59:21: +------------+-------------+-----------------------+-------------+-------+
INFO - 08:59:21: | x_local | 0 | 0 | 10 | float |
INFO - 08:59:21: | x_shared_1 | -10 | 1.977638878736485 | 10 | float |
INFO - 08:59:21: | x_shared_2 | 0 | 7.449086152527647e-13 | 10 | float |
INFO - 08:59:21: +------------+-------------+-----------------------+-------------+-------+
INFO - 08:59:21: *** End MDOScenario execution (time: 0:00:00.335324) ***
{'max_iter': 10, 'algo': 'SLSQP'}
The scenario converged after 7 iterations. Useful information can be found in the standard output, as seen above.
Note
GEMSEO provides the user with a lot of optimization algorithms and options. An exhaustive list of the algorithms available in GEMSEO can be found in the Optimization algorithms section.
Post-processing the results¶
Post-processings such as plots exhibiting the evolutions of the objective function, the design variables or the constraints can be extremely useful. The convergence of the objective function, design variables and of the inequality constraints can be observed in the following plots. Many other post-processings are available in GEMSEO and are described in Post-processing.
scenario.post_process("OptHistoryView", save=False, show=True)
<gemseo.post.opt_history_view.OptHistoryView object at 0x7f8ae91c63d0>
Note
Such post-processings can be exported in PDF format,
by setting save
to True
and potentially additional
settings (see the Scenario.post_process()
options).
Exporting the problem data.¶
After the execution of the scenario, you may want to export your data to use it
elsewhere. The Scenario.to_dataset()
will allow you to export your
results to a Dataset
, the basic GEMSEO class to store data.
dataset = scenario.to_dataset("a_name_for_my_dataset")
What’s next?¶
You have completed a short introduction to GEMSEO. You can now look at the tutorials which exhibit more complex use-cases. You can also have a look at the documentation to discover the several features and options of GEMSEO.
Total running time of the script: (0 minutes 1.827 seconds)