BiLevel-based MDO on the Sobieski SSBJ test case

from __future__ import annotations

from copy import deepcopy

from gemseo import configure_logger
from gemseo import create_discipline
from gemseo import create_scenario
from gemseo import execute_post
from gemseo.problems.sobieski.core.problem import SobieskiProblem

configure_logger()
<RootLogger root (INFO)>

Instantiate the disciplines

First, we instantiate the four disciplines of the use case: SobieskiPropulsion, SobieskiAerodynamics, SobieskiMission and SobieskiStructure.

propu, aero, mission, struct = create_discipline(
    [
        "SobieskiPropulsion",
        "SobieskiAerodynamics",
        "SobieskiMission",
        "SobieskiStructure",
    ]
)

Build, execute and post-process the scenario

Then, we build the scenario which links the disciplines with the formulation and the optimization algorithm. Here, we use the BiLevel formulation. We tell the scenario to minimize -y_4 instead of minimizing y_4 (range), which is the default option.

We need to define the design space.

design_space = SobieskiProblem().design_space

Then, we build a sub-scenario for each strongly coupled disciplines, using the following algorithm, maximum number of iterations and algorithm options:

algo_options = {
    "xtol_rel": 1e-7,
    "xtol_abs": 1e-7,
    "ftol_rel": 1e-7,
    "ftol_abs": 1e-7,
    "ineq_tolerance": 1e-4,
}
sub_sc_opts = {"max_iter": 30, "algo": "SLSQP", "algo_options": algo_options}

Build a sub-scenario for Propulsion

This sub-scenario will minimize SFC.

sc_prop = create_scenario(
    propu,
    "DisciplinaryOpt",
    "y_34",
    design_space=deepcopy(design_space).filter("x_3"),
    name="PropulsionScenario",
)
sc_prop.default_inputs = sub_sc_opts
sc_prop.add_constraint("g_3", constraint_type="ineq")

Build a sub-scenario for Aerodynamics

This sub-scenario will minimize L/D.

sc_aero = create_scenario(
    aero,
    "DisciplinaryOpt",
    "y_24",
    deepcopy(design_space).filter("x_2"),
    name="AerodynamicsScenario",
    maximize_objective=True,
)
sc_aero.default_inputs = sub_sc_opts
sc_aero.add_constraint("g_2", constraint_type="ineq")

Build a sub-scenario for Structure

This sub-scenario will maximize log(aircraft total weight / (aircraft total weight - fuel weight)).

sc_str = create_scenario(
    struct,
    "DisciplinaryOpt",
    "y_11",
    deepcopy(design_space).filter("x_1"),
    name="StructureScenario",
    maximize_objective=True,
)
sc_str.add_constraint("g_1", constraint_type="ineq")
sc_str.default_inputs = sub_sc_opts

Build a scenario for Mission

This scenario is based on the three previous sub-scenarios and on the Mission and aims to maximize the range (Breguet).

sub_disciplines = [sc_prop, sc_aero, sc_str] + [mission]
design_space = deepcopy(design_space).filter("x_shared")
system_scenario = create_scenario(
    sub_disciplines,
    "BiLevel",
    "y_4",
    design_space,
    apply_cstr_tosub_scenarios=False,
    parallel_scenarios=False,
    multithread_scenarios=True,
    tolerance=1e-14,
    max_mda_iter=30,
    maximize_objective=True,
)
system_scenario.add_constraint(["g_1", "g_2", "g_3"], "ineq")

Visualize the XDSM

Generate the XDSM on the fly:

  • log_workflow_status=True will log the status of the workflow in the console,

  • save_html (default True) will generate a self-contained HTML file, that can be automatically opened using show_html=True.

system_scenario.xdsmize(save_html=False)


Execute the main scenario

system_scenario.execute(
    {"max_iter": 50, "algo": "NLOPT_COBYLA", "algo_options": algo_options}
)
    INFO - 08:37:59:
    INFO - 08:37:59: *** Start MDOScenario execution ***
    INFO - 08:37:59: MDOScenario
    INFO - 08:37:59:    Disciplines: AerodynamicsScenario PropulsionScenario SobieskiMission StructureScenario
    INFO - 08:37:59:    MDO formulation: BiLevel
    INFO - 08:37:59: Optimization problem:
    INFO - 08:37:59:    minimize -y_4(x_shared)
    INFO - 08:37:59:    with respect to x_shared
    INFO - 08:37:59:    subject to constraints:
    INFO - 08:37:59:       g_1_g_2_g_3(x_shared) <= 0.0
    INFO - 08:37:59:    over the design space:
    INFO - 08:37:59:    +-------------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | name        | lower_bound | value | upper_bound | type  |
    INFO - 08:37:59:    +-------------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | x_shared[0] |     0.01    |  0.05 |     0.09    | float |
    INFO - 08:37:59:    | x_shared[1] |    30000    | 45000 |    60000    | float |
    INFO - 08:37:59:    | x_shared[2] |     1.4     |  1.6  |     1.8     | float |
    INFO - 08:37:59:    | x_shared[3] |     2.5     |  5.5  |     8.5     | float |
    INFO - 08:37:59:    | x_shared[4] |      40     |   55  |      70     | float |
    INFO - 08:37:59:    | x_shared[5] |     500     |  1000 |     1500    | float |
    INFO - 08:37:59:    +-------------+-------------+-------+-------------+-------+
    INFO - 08:37:59: Solving optimization problem with algorithm NLOPT_COBYLA:
    INFO - 08:37:59: ...   0%|          | 0/50 [00:00<?, ?it]
    INFO - 08:37:59:
    INFO - 08:37:59: *** Start PropulsionScenario execution ***
    INFO - 08:37:59: PropulsionScenario
    INFO - 08:37:59:    Disciplines: SobieskiPropulsion
    INFO - 08:37:59:    MDO formulation: DisciplinaryOpt
    INFO - 08:37:59: Optimization problem:
    INFO - 08:37:59:    minimize y_34(x_3)
    INFO - 08:37:59:    with respect to x_3
    INFO - 08:37:59:    subject to constraints:
    INFO - 08:37:59:       g_3(x_3) <= 0.0
    INFO - 08:37:59:    over the design space:
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | x_3  |     0.1     |  0.5  |      1      | float |
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59: Solving optimization problem with algorithm SLSQP:
    INFO - 08:37:59: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   3%|▎         | 1/30 [00:00<00:00, 1311.54 it/sec, obj=1.11]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   7%|▋         | 2/30 [00:00<00:00, 417.84 it/sec, obj=1.14]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  10%|█         | 3/30 [00:00<00:00, 475.78 it/sec, obj=1.1]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  13%|█▎        | 4/30 [00:00<00:00, 413.67 it/sec, obj=1.11]
    INFO - 08:37:59:
    INFO - 08:37:59:
    INFO - 08:37:59: Optimization result:
    INFO - 08:37:59:    Optimizer info:
    INFO - 08:37:59:       Status: 8
    INFO - 08:37:59:       Message: Positive directional derivative for linesearch
    INFO - 08:37:59:       Number of calls to the objective function by the optimizer: 13
    INFO - 08:37:59:    Solution:
    INFO - 08:37:59:       The solution is feasible.
    INFO - 08:37:59:       Objective: 1.1087874739328383
    INFO - 08:37:59:       Standardized constraints:
    INFO - 08:37:59:          g_3 = [-0.91571362 -0.08428638  0.         -0.05794805]
    INFO - 08:37:59:       Design space:
    INFO - 08:37:59:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:37:59:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:       | x_3  |     0.1     | 0.4302702621790957 |      1      | float |
    INFO - 08:37:59:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59: *** End PropulsionScenario execution (time: 0:00:00.028386) ***
    INFO - 08:37:59:
    INFO - 08:37:59: *** Start AerodynamicsScenario execution ***
    INFO - 08:37:59: AerodynamicsScenario
    INFO - 08:37:59:    Disciplines: SobieskiAerodynamics
    INFO - 08:37:59:    MDO formulation: DisciplinaryOpt
    INFO - 08:37:59: Optimization problem:
    INFO - 08:37:59:    minimize -y_24(x_2)
    INFO - 08:37:59:    with respect to x_2
    INFO - 08:37:59:    subject to constraints:
    INFO - 08:37:59:       g_2(x_2) <= 0.0
    INFO - 08:37:59:    over the design space:
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | x_2  |     0.75    |   1   |     1.25    | float |
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59: Solving optimization problem with algorithm SLSQP:
    INFO - 08:37:59: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   3%|▎         | 1/30 [00:00<00:00, 833.53 it/sec, obj=-4.15]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   7%|▋         | 2/30 [00:00<00:00, 376.49 it/sec, obj=-4.22]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  10%|█         | 3/30 [00:00<00:00, 357.86 it/sec, obj=-4.28]
    INFO - 08:37:59:
    INFO - 08:37:59:
    INFO - 08:37:59: Optimization result:
    INFO - 08:37:59:    Optimizer info:
    INFO - 08:37:59:       Status: 8
    INFO - 08:37:59:       Message: Positive directional derivative for linesearch
    INFO - 08:37:59:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:37:59:    Solution:
    INFO - 08:37:59:       The solution is feasible.
    INFO - 08:37:59:       Objective: -4.283343558640357
    INFO - 08:37:59:       Standardized constraints:
    INFO - 08:37:59:          g_2 = -0.040000000000000036
    INFO - 08:37:59:       Design space:
    INFO - 08:37:59:       +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:37:59:       +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:37:59:       +------+-------------+-------+-------------+-------+
    INFO - 08:37:59: *** End AerodynamicsScenario execution (time: 0:00:00.021384) ***
    INFO - 08:37:59:
    INFO - 08:37:59: *** Start StructureScenario execution ***
    INFO - 08:37:59: StructureScenario
    INFO - 08:37:59:    Disciplines: SobieskiStructure
    INFO - 08:37:59:    MDO formulation: DisciplinaryOpt
    INFO - 08:37:59: Optimization problem:
    INFO - 08:37:59:    minimize -y_11(x_1)
    INFO - 08:37:59:    with respect to x_1
    INFO - 08:37:59:    subject to constraints:
    INFO - 08:37:59:       g_1(x_1) <= 0.0
    INFO - 08:37:59:    over the design space:
    INFO - 08:37:59:    +--------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:37:59:    +--------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | x_1[0] |     0.1     |  0.25 |     0.4     | float |
    INFO - 08:37:59:    | x_1[1] |     0.75    |   1   |     1.25    | float |
    INFO - 08:37:59:    +--------+-------------+-------+-------------+-------+
    INFO - 08:37:59: Solving optimization problem with algorithm SLSQP:
    INFO - 08:37:59: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   3%|▎         | 1/30 [00:00<00:00, 526.46 it/sec, obj=-.152]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   7%|▋         | 2/30 [00:00<00:00, 244.34 it/sec, obj=-.143]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  10%|█         | 3/30 [00:00<00:00, 224.19 it/sec, obj=-.144]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  13%|█▎        | 4/30 [00:00<00:00, 208.16 it/sec, obj=-.146]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  17%|█▋        | 5/30 [00:00<00:00, 198.01 it/sec, obj=-.155]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  20%|██        | 6/30 [00:00<00:00, 191.70 it/sec, obj=-.156]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  23%|██▎       | 7/30 [00:00<00:00, 189.11 it/sec, obj=-.156]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  27%|██▋       | 8/30 [00:00<00:00, 185.89 it/sec, obj=-.156]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  30%|███       | 9/30 [00:00<00:00, 183.43 it/sec, obj=-.156]
    INFO - 08:37:59:
    INFO - 08:37:59:
    INFO - 08:37:59: Optimization result:
    INFO - 08:37:59:    Optimizer info:
    INFO - 08:37:59:       Status: None
    INFO - 08:37:59:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:37:59:       Number of calls to the objective function by the optimizer: 10
    INFO - 08:37:59:    Solution:
    INFO - 08:37:59:       The solution is feasible.
    INFO - 08:37:59:       Objective: -0.15631824062042746
    INFO - 08:37:59:       Standardized constraints:
    INFO - 08:37:59:          g_1 = [ 3.99302813e-12 -2.99419226e-02 -4.49346629e-02 -5.39372764e-02
    INFO - 08:37:59:  -5.99419226e-02 -6.61963740e-02 -1.73803626e-01]
    INFO - 08:37:59:       Design space:
    INFO - 08:37:59:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:37:59:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:       | x_1[0] |     0.1     |        0.1         |     0.4     | float |
    INFO - 08:37:59:       | x_1[1] |     0.75    | 0.9857121415472604 |     1.25    | float |
    INFO - 08:37:59:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59: *** End StructureScenario execution (time: 0:00:00.060449) ***
    INFO - 08:37:59: ...   2%|▏         | 1/50 [00:00<00:15,  3.11 it/sec, obj=-553]
    INFO - 08:37:59:
    INFO - 08:37:59: *** Start PropulsionScenario execution ***
    INFO - 08:37:59: PropulsionScenario
    INFO - 08:37:59:    Disciplines: SobieskiPropulsion
    INFO - 08:37:59:    MDO formulation: DisciplinaryOpt
    INFO - 08:37:59: Optimization problem:
    INFO - 08:37:59:    minimize y_34(x_3)
    INFO - 08:37:59:    with respect to x_3
    INFO - 08:37:59:    subject to constraints:
    INFO - 08:37:59:       g_3(x_3) <= 0.0
    INFO - 08:37:59:    over the design space:
    INFO - 08:37:59:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:37:59:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:    | x_3  |     0.1     | 0.4302702621790957 |      1      | float |
    INFO - 08:37:59:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59: Solving optimization problem with algorithm SLSQP:
    INFO - 08:37:59: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   3%|▎         | 1/30 [00:00<00:00, 1864.14 it/sec, obj=1.11]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   7%|▋         | 2/30 [00:00<00:00, 435.03 it/sec, obj=1.11]
    INFO - 08:37:59:
    INFO - 08:37:59:
    INFO - 08:37:59: Optimization result:
    INFO - 08:37:59:    Optimizer info:
    INFO - 08:37:59:       Status: 8
    INFO - 08:37:59:       Message: Positive directional derivative for linesearch
    INFO - 08:37:59:       Number of calls to the objective function by the optimizer: 12
    INFO - 08:37:59:    Solution:
    INFO - 08:37:59:       The solution is feasible.
    INFO - 08:37:59:       Objective: 1.1087874739328383
    INFO - 08:37:59:       Standardized constraints:
    INFO - 08:37:59:          g_3 = [-0.75494685 -0.24505315  0.         -0.05794805]
    INFO - 08:37:59:       Design space:
    INFO - 08:37:59:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:37:59:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:       | x_3  |     0.1     | 0.4302702621790957 |      1      | float |
    INFO - 08:37:59:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59: *** End PropulsionScenario execution (time: 0:00:00.022322) ***
    INFO - 08:37:59:
    INFO - 08:37:59: *** Start AerodynamicsScenario execution ***
    INFO - 08:37:59: AerodynamicsScenario
    INFO - 08:37:59:    Disciplines: SobieskiAerodynamics
    INFO - 08:37:59:    MDO formulation: DisciplinaryOpt
    INFO - 08:37:59: Optimization problem:
    INFO - 08:37:59:    minimize -y_24(x_2)
    INFO - 08:37:59:    with respect to x_2
    INFO - 08:37:59:    subject to constraints:
    INFO - 08:37:59:       g_2(x_2) <= 0.0
    INFO - 08:37:59:    over the design space:
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59: Solving optimization problem with algorithm SLSQP:
    INFO - 08:37:59: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   3%|▎         | 1/30 [00:00<00:00, 970.01 it/sec, obj=-3.46]
    INFO - 08:37:59:
 WARNING - 08:37:59: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:37:59:
    INFO - 08:37:59: Optimization result:
    INFO - 08:37:59:    Optimizer info:
    INFO - 08:37:59:       Status: 8
    INFO - 08:37:59:       Message: Positive directional derivative for linesearch
    INFO - 08:37:59:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:37:59:    Solution:
 WARNING - 08:37:59:       The solution is not feasible.
    INFO - 08:37:59:       Objective: -3.456006478817154
    INFO - 08:37:59:       Standardized constraints:
    INFO - 08:37:59:          g_2 = 0.010000000000000009
    INFO - 08:37:59:       Design space:
    INFO - 08:37:59:       +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:37:59:       +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:37:59:       +------+-------------+-------+-------------+-------+
    INFO - 08:37:59: *** End AerodynamicsScenario execution (time: 0:00:00.013904) ***
    INFO - 08:37:59:
    INFO - 08:37:59: *** Start StructureScenario execution ***
    INFO - 08:37:59: StructureScenario
    INFO - 08:37:59:    Disciplines: SobieskiStructure
    INFO - 08:37:59:    MDO formulation: DisciplinaryOpt
    INFO - 08:37:59: Optimization problem:
    INFO - 08:37:59:    minimize -y_11(x_1)
    INFO - 08:37:59:    with respect to x_1
    INFO - 08:37:59:    subject to constraints:
    INFO - 08:37:59:       g_1(x_1) <= 0.0
    INFO - 08:37:59:    over the design space:
    INFO - 08:37:59:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:37:59:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:    | x_1[0] |     0.1     |        0.1         |     0.4     | float |
    INFO - 08:37:59:    | x_1[1] |     0.75    | 0.9857121415472604 |     1.25    | float |
    INFO - 08:37:59:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59: Solving optimization problem with algorithm SLSQP:
    INFO - 08:37:59: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   3%|▎         | 1/30 [00:00<00:00, 506.01 it/sec, obj=-.193]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   7%|▋         | 2/30 [00:00<00:00, 241.06 it/sec, obj=-.212]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  10%|█         | 3/30 [00:00<00:00, 218.35 it/sec, obj=-.285]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  13%|█▎        | 4/30 [00:00<00:00, 200.93 it/sec, obj=-.285]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  17%|█▋        | 5/30 [00:00<00:00, 194.61 it/sec, obj=-.285]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  20%|██        | 6/30 [00:00<00:00, 190.63 it/sec, obj=-.285]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  23%|██▎       | 7/30 [00:00<00:00, 187.98 it/sec, obj=-.285]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  27%|██▋       | 8/30 [00:00<00:00, 186.11 it/sec, obj=-.286]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  30%|███       | 9/30 [00:00<00:00, 183.63 it/sec, obj=-.286]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  33%|███▎      | 10/30 [00:00<00:00, 182.73 it/sec, obj=-.286]
    INFO - 08:37:59:
    INFO - 08:37:59:
    INFO - 08:37:59: Optimization result:
    INFO - 08:37:59:    Optimizer info:
    INFO - 08:37:59:       Status: None
    INFO - 08:37:59:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:37:59:       Number of calls to the objective function by the optimizer: 11
    INFO - 08:37:59:    Solution:
    INFO - 08:37:59:       The solution is feasible.
    INFO - 08:37:59:       Objective: -0.2861511006159976
    INFO - 08:37:59:       Standardized constraints:
    INFO - 08:37:59:          g_1 = [-0.02505357 -0.02542063 -0.03358482 -0.04103714 -0.04706944 -0.20645898
    INFO - 08:37:59:  -0.03354102]
    INFO - 08:37:59:       Design space:
    INFO - 08:37:59:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:37:59:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:       | x_1[0] |     0.1     | 0.3999999999999848 |     0.4     | float |
    INFO - 08:37:59:       | x_1[1] |     0.75    | 0.7500000000000006 |     1.25    | float |
    INFO - 08:37:59:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59: *** End StructureScenario execution (time: 0:00:00.065994) ***
    INFO - 08:37:59: ...   4%|▍         | 2/50 [00:00<00:12,  3.70 it/sec, obj=-574]
    INFO - 08:37:59:
    INFO - 08:37:59: *** Start PropulsionScenario execution ***
    INFO - 08:37:59: PropulsionScenario
    INFO - 08:37:59:    Disciplines: SobieskiPropulsion
    INFO - 08:37:59:    MDO formulation: DisciplinaryOpt
    INFO - 08:37:59: Optimization problem:
    INFO - 08:37:59:    minimize y_34(x_3)
    INFO - 08:37:59:    with respect to x_3
    INFO - 08:37:59:    subject to constraints:
    INFO - 08:37:59:       g_3(x_3) <= 0.0
    INFO - 08:37:59:    over the design space:
    INFO - 08:37:59:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:37:59:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:    | x_3  |     0.1     | 0.4302702621790957 |      1      | float |
    INFO - 08:37:59:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59: Solving optimization problem with algorithm SLSQP:
    INFO - 08:37:59: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   3%|▎         | 1/30 [00:00<00:00, 1855.07 it/sec, obj=1.1]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   7%|▋         | 2/30 [00:00<00:00, 437.59 it/sec, obj=1.16]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  10%|█         | 3/30 [00:00<00:00, 494.20 it/sec, obj=1.09]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  13%|█▎        | 4/30 [00:00<00:00, 421.26 it/sec, obj=1.12]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  17%|█▋        | 5/30 [00:00<00:00, 388.68 it/sec, obj=1.12]
    INFO - 08:37:59:
    INFO - 08:37:59: ...  20%|██        | 6/30 [00:00<00:00, 370.69 it/sec, obj=1.12]
    INFO - 08:37:59:
    INFO - 08:37:59:
    INFO - 08:37:59: Optimization result:
    INFO - 08:37:59:    Optimizer info:
    INFO - 08:37:59:       Status: None
    INFO - 08:37:59:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:37:59:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:37:59:    Solution:
    INFO - 08:37:59:       The solution is feasible.
    INFO - 08:37:59:       Objective: 1.1169456193906955
    INFO - 08:37:59:       Standardized constraints:
    INFO - 08:37:59:          g_3 = [-7.20996205e-01 -2.79003795e-01 -2.22044605e-16 -1.27460556e-01]
    INFO - 08:37:59:       Design space:
    INFO - 08:37:59:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:37:59:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:       | x_3  |     0.1     | 0.2871004772038966 |      1      | float |
    INFO - 08:37:59:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59: *** End PropulsionScenario execution (time: 0:00:00.026993) ***
    INFO - 08:37:59:
    INFO - 08:37:59: *** Start AerodynamicsScenario execution ***
    INFO - 08:37:59: AerodynamicsScenario
    INFO - 08:37:59:    Disciplines: SobieskiAerodynamics
    INFO - 08:37:59:    MDO formulation: DisciplinaryOpt
    INFO - 08:37:59: Optimization problem:
    INFO - 08:37:59:    minimize -y_24(x_2)
    INFO - 08:37:59:    with respect to x_2
    INFO - 08:37:59:    subject to constraints:
    INFO - 08:37:59:       g_2(x_2) <= 0.0
    INFO - 08:37:59:    over the design space:
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:37:59:    +------+-------------+-------+-------------+-------+
    INFO - 08:37:59: Solving optimization problem with algorithm SLSQP:
    INFO - 08:37:59: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   3%|▎         | 1/30 [00:00<00:00, 978.61 it/sec, obj=-3.32]
    INFO - 08:37:59:
 WARNING - 08:37:59: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:37:59:
    INFO - 08:37:59: Optimization result:
    INFO - 08:37:59:    Optimizer info:
    INFO - 08:37:59:       Status: 8
    INFO - 08:37:59:       Message: Positive directional derivative for linesearch
    INFO - 08:37:59:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:37:59:    Solution:
 WARNING - 08:37:59:       The solution is not feasible.
    INFO - 08:37:59:       Objective: -3.3171632100551673
    INFO - 08:37:59:       Standardized constraints:
    INFO - 08:37:59:          g_2 = 0.010000000000000009
    INFO - 08:37:59:       Design space:
    INFO - 08:37:59:       +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:37:59:       +------+-------------+-------+-------------+-------+
    INFO - 08:37:59:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:37:59:       +------+-------------+-------+-------------+-------+
    INFO - 08:37:59: *** End AerodynamicsScenario execution (time: 0:00:00.019301) ***
    INFO - 08:37:59:
    INFO - 08:37:59: *** Start StructureScenario execution ***
    INFO - 08:37:59: StructureScenario
    INFO - 08:37:59:    Disciplines: SobieskiStructure
    INFO - 08:37:59:    MDO formulation: DisciplinaryOpt
    INFO - 08:37:59: Optimization problem:
    INFO - 08:37:59:    minimize -y_11(x_1)
    INFO - 08:37:59:    with respect to x_1
    INFO - 08:37:59:    subject to constraints:
    INFO - 08:37:59:       g_1(x_1) <= 0.0
    INFO - 08:37:59:    over the design space:
    INFO - 08:37:59:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:37:59:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59:    | x_1[0] |     0.1     | 0.3999999999999848 |     0.4     | float |
    INFO - 08:37:59:    | x_1[1] |     0.75    | 0.7500000000000006 |     1.25    | float |
    INFO - 08:37:59:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:37:59: Solving optimization problem with algorithm SLSQP:
    INFO - 08:37:59: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   3%|▎         | 1/30 [00:00<00:00, 580.21 it/sec, obj=-.272]
    INFO - 08:37:59:
    INFO - 08:37:59: ...   7%|▋         | 2/30 [00:00<00:00, 250.17 it/sec, obj=-.272]
    INFO - 08:37:59:
    INFO - 08:37:59:
    INFO - 08:37:59: Optimization result:
    INFO - 08:37:59:    Optimizer info:
    INFO - 08:37:59:       Status: 8
    INFO - 08:37:59:       Message: Positive directional derivative for linesearch
    INFO - 08:37:59:       Number of calls to the objective function by the optimizer: 3
    INFO - 08:37:59:    Solution:
    INFO - 08:37:59:       The solution is feasible.
    INFO - 08:37:59:       Objective: -0.2721681413246109
    INFO - 08:37:59:       Standardized constraints:
    INFO - 08:37:59:          g_1 = [-0.02505357 -0.02542063 -0.03358482 -0.04103714 -0.04706944 -0.20645898
    INFO - 08:37:59:  -0.03354102]
    INFO - 08:37:59:       Design space:
    INFO - 08:37:59:       +--------+-------------+-------+-------------+-------+
    INFO - 08:37:59:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:37:59:       +--------+-------------+-------+-------------+-------+
    INFO - 08:37:59:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:37:59:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:37:59:       +--------+-------------+-------+-------------+-------+
    INFO - 08:37:59: *** End StructureScenario execution (time: 0:00:00.021756) ***
    INFO - 08:38:00: ...   6%|▌         | 3/50 [00:00<00:11,  3.96 it/sec, obj=-813]
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start PropulsionScenario execution ***
    INFO - 08:38:00: PropulsionScenario
    INFO - 08:38:00:    Disciplines: SobieskiPropulsion
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize y_34(x_3)
    INFO - 08:38:00:    with respect to x_3
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_3(x_3) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:    | x_3  |     0.1     | 0.2871004772038966 |      1      | float |
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 1715.46 it/sec, obj=1.16]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   7%|▋         | 2/30 [00:00<00:00, 422.00 it/sec, obj=1.14]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  10%|█         | 3/30 [00:00<00:00, 388.09 it/sec, obj=1.14]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  13%|█▎        | 4/30 [00:00<00:00, 405.60 it/sec, obj=1.14]
    INFO - 08:38:00:
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: None
    INFO - 08:38:00:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:00:    Solution:
    INFO - 08:38:00:       The solution is feasible.
    INFO - 08:38:00:       Objective: 1.137722098693054
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_3 = [-7.10555843e-01 -2.89444157e-01  6.66133815e-16 -1.11370139e-01]
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | x_3  |     0.1     | 0.3243399096603405 |      1      | float |
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: *** End PropulsionScenario execution (time: 0:00:00.020899) ***
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:00: AerodynamicsScenario
    INFO - 08:38:00:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize -y_24(x_2)
    INFO - 08:38:00:    with respect to x_2
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_2(x_2) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 955.64 it/sec, obj=-3.31]
    INFO - 08:38:00:
 WARNING - 08:38:00: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: 8
    INFO - 08:38:00:       Message: Positive directional derivative for linesearch
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:00:    Solution:
 WARNING - 08:38:00:       The solution is not feasible.
    INFO - 08:38:00:       Objective: -3.314629228201935
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_2 = 0.010000000000000009
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00: *** End AerodynamicsScenario execution (time: 0:00:00.014082) ***
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start StructureScenario execution ***
    INFO - 08:38:00: StructureScenario
    INFO - 08:38:00:    Disciplines: SobieskiStructure
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize -y_11(x_1)
    INFO - 08:38:00:    with respect to x_1
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_1(x_1) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:00:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 572.13 it/sec, obj=-.274]
    INFO - 08:38:00:
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: 8
    INFO - 08:38:00:       Message: Positive directional derivative for linesearch
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:00:    Solution:
    INFO - 08:38:00:       The solution is feasible.
    INFO - 08:38:00:       Objective: -0.2737879545502587
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_1 = [-0.02505357 -0.02542063 -0.03358482 -0.04103714 -0.04706944 -0.20645898
    INFO - 08:38:00:  -0.03354102]
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:00:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00: *** End StructureScenario execution (time: 0:00:00.017058) ***
    INFO - 08:38:00: ...   8%|▊         | 4/50 [00:00<00:11,  4.08 it/sec, obj=-751]
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start PropulsionScenario execution ***
    INFO - 08:38:00: PropulsionScenario
    INFO - 08:38:00:    Disciplines: SobieskiPropulsion
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize y_34(x_3)
    INFO - 08:38:00:    with respect to x_3
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_3(x_3) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:    | x_3  |     0.1     | 0.3243399096603405 |      1      | float |
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 1754.94 it/sec, obj=1.1]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   7%|▋         | 2/30 [00:00<00:00, 447.99 it/sec, obj=1.12]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  10%|█         | 3/30 [00:00<00:00, 498.83 it/sec, obj=1.1]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  13%|█▎        | 4/30 [00:00<00:00, 426.90 it/sec, obj=1.12]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  17%|█▋        | 5/30 [00:00<00:00, 393.63 it/sec, obj=1.12]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  20%|██        | 6/30 [00:00<00:00, 319.21 it/sec, obj=1.12]
    INFO - 08:38:00:
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: None
    INFO - 08:38:00:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 14
    INFO - 08:38:00:    Solution:
    INFO - 08:38:00:       The solution is feasible.
    INFO - 08:38:00:       Objective: 1.1169456193906955
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_3 = [-7.20597051e-01 -2.79402949e-01  2.22044605e-16 -1.27460556e-01]
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: *** End PropulsionScenario execution (time: 0:00:00.029843) ***
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:00: AerodynamicsScenario
    INFO - 08:38:00:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize -y_24(x_2)
    INFO - 08:38:00:    with respect to x_2
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_2(x_2) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 951.09 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   7%|▋         | 2/30 [00:00<00:00, 390.68 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  10%|█         | 3/30 [00:00<00:00, 442.05 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  13%|█▎        | 4/30 [00:00<00:00, 468.32 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  17%|█▋        | 5/30 [00:00<00:00, 483.68 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  20%|██        | 6/30 [00:00<00:00, 496.29 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  23%|██▎       | 7/30 [00:00<00:00, 505.23 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  27%|██▋       | 8/30 [00:00<00:00, 511.04 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  30%|███       | 9/30 [00:00<00:00, 516.34 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  33%|███▎      | 10/30 [00:00<00:00, 520.20 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  37%|███▋      | 11/30 [00:00<00:00, 403.07 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  40%|████      | 12/30 [00:00<00:00, 388.94 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  43%|████▎     | 13/30 [00:00<00:00, 398.60 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  47%|████▋     | 14/30 [00:00<00:00, 406.77 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  50%|█████     | 15/30 [00:00<00:00, 414.64 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  53%|█████▎    | 16/30 [00:00<00:00, 421.64 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  57%|█████▋    | 17/30 [00:00<00:00, 427.78 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  60%|██████    | 18/30 [00:00<00:00, 433.57 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  63%|██████▎   | 19/30 [00:00<00:00, 438.68 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  67%|██████▋   | 20/30 [00:00<00:00, 443.54 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  70%|███████   | 21/30 [00:00<00:00, 447.99 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  73%|███████▎  | 22/30 [00:00<00:00, 452.31 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  77%|███████▋  | 23/30 [00:00<00:00, 442.08 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  80%|████████  | 24/30 [00:00<00:00, 446.02 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  83%|████████▎ | 25/30 [00:00<00:00, 449.69 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  87%|████████▋ | 26/30 [00:00<00:00, 453.25 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  90%|█████████ | 27/30 [00:00<00:00, 456.48 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  93%|█████████▎| 28/30 [00:00<00:00, 458.31 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  97%|█████████▋| 29/30 [00:00<00:00, 461.14 it/sec, obj=-3.38]
    INFO - 08:38:00:
    INFO - 08:38:00: ... 100%|██████████| 30/30 [00:00<00:00, 458.99 it/sec, obj=-3.38]
    INFO - 08:38:00:
 WARNING - 08:38:00: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: None
    INFO - 08:38:00:       Message: Maximum number of iterations reached. GEMSEO Stopped the driver
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 81
    INFO - 08:38:00:    Solution:
 WARNING - 08:38:00:       The solution is not feasible.
    INFO - 08:38:00:       Objective: -3.3833585466979232
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_2 = 0.010000000000000009
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00: *** End AerodynamicsScenario execution (time: 0:00:00.077093) ***
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start StructureScenario execution ***
    INFO - 08:38:00: StructureScenario
    INFO - 08:38:00:    Disciplines: SobieskiStructure
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize -y_11(x_1)
    INFO - 08:38:00:    with respect to x_1
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_1(x_1) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:00:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 558.87 it/sec, obj=-.256]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   7%|▋         | 2/30 [00:00<00:00, 243.83 it/sec, obj=-.233]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  10%|█         | 3/30 [00:00<00:00, 223.84 it/sec, obj=-.237]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  13%|█▎        | 4/30 [00:00<00:00, 207.95 it/sec, obj=-.255]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  17%|█▋        | 5/30 [00:00<00:00, 200.29 it/sec, obj=-.255]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  20%|██        | 6/30 [00:00<00:00, 195.52 it/sec, obj=-.255]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  23%|██▎       | 7/30 [00:00<00:00, 192.17 it/sec, obj=-.255]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  27%|██▋       | 8/30 [00:00<00:00, 189.73 it/sec, obj=-.255]
    INFO - 08:38:00:
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: None
    INFO - 08:38:00:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:38:00:    Solution:
    INFO - 08:38:00:       The solution is feasible.
    INFO - 08:38:00:       Objective: -0.25541043890623544
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_1 = [-2.87847242e-02 -1.88000814e-02 -2.52039105e-02 -3.26929762e-02
    INFO - 08:38:00:  -3.92051733e-02 -2.40000000e-01 -8.00570721e-12]
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | x_1[0] |     0.1     | 0.2842628772739993 |     0.4     | float |
    INFO - 08:38:00:       | x_1[1] |     0.75    | 0.7500000000000004 |     1.25    | float |
    INFO - 08:38:00:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: *** End StructureScenario execution (time: 0:00:00.053470) ***
    INFO - 08:38:00: ...  10%|█         | 5/50 [00:01<00:11,  3.89 it/sec, obj=-734]
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start PropulsionScenario execution ***
    INFO - 08:38:00: PropulsionScenario
    INFO - 08:38:00:    Disciplines: SobieskiPropulsion
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize y_34(x_3)
    INFO - 08:38:00:    with respect to x_3
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_3(x_3) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:    | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 1826.79 it/sec, obj=1.12]
    INFO - 08:38:00:
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: 8
    INFO - 08:38:00:       Message: Positive directional derivative for linesearch
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 17
    INFO - 08:38:00:    Solution:
    INFO - 08:38:00:       The solution is feasible.
    INFO - 08:38:00:       Objective: 1.1169456193906955
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_3 = [-8.42352689e-01 -1.57647311e-01  2.22044605e-16 -1.27460556e-01]
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: *** End PropulsionScenario execution (time: 0:00:00.020984) ***
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:00: AerodynamicsScenario
    INFO - 08:38:00:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize -y_24(x_2)
    INFO - 08:38:00:    with respect to x_2
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_2(x_2) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 1865.79 it/sec, obj=-4.01]
    INFO - 08:38:00:
 WARNING - 08:38:00: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: 8
    INFO - 08:38:00:       Message: Positive directional derivative for linesearch
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:00:    Solution:
 WARNING - 08:38:00:       The solution is not feasible.
    INFO - 08:38:00:       Objective: -4.010763549231421
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_2 = 0.010000000000000009
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00: *** End AerodynamicsScenario execution (time: 0:00:00.013428) ***
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start StructureScenario execution ***
    INFO - 08:38:00: StructureScenario
    INFO - 08:38:00:    Disciplines: SobieskiStructure
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize -y_11(x_1)
    INFO - 08:38:00:    with respect to x_1
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_1(x_1) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:    | x_1[0] |     0.1     | 0.2842628772739993 |     0.4     | float |
    INFO - 08:38:00:    | x_1[1] |     0.75    | 0.7500000000000004 |     1.25    | float |
    INFO - 08:38:00:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 1717.57 it/sec, obj=-.297]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   7%|▋         | 2/30 [00:00<00:00, 283.65 it/sec, obj=-.297]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  10%|█         | 3/30 [00:00<00:00, 244.07 it/sec, obj=-.297]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  13%|█▎        | 4/30 [00:00<00:00, 221.06 it/sec, obj=-.297]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  17%|█▋        | 5/30 [00:00<00:00, 209.68 it/sec, obj=-.297]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  20%|██        | 6/30 [00:00<00:00, 202.84 it/sec, obj=-.297]
    INFO - 08:38:00:
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: 8
    INFO - 08:38:00:       Message: Positive directional derivative for linesearch
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:38:00:    Solution:
    INFO - 08:38:00:       The solution is feasible.
    INFO - 08:38:00:       Objective: -0.29713711523465847
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_1 = [-0.02505357 -0.02542063 -0.03358482 -0.04103714 -0.04706944 -0.20645898
    INFO - 08:38:00:  -0.03354102]
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:00:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00: *** End StructureScenario execution (time: 0:00:00.044213) ***
    INFO - 08:38:00: ...  12%|█▏        | 6/50 [00:01<00:10,  4.04 it/sec, obj=-977]
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start PropulsionScenario execution ***
    INFO - 08:38:00: PropulsionScenario
    INFO - 08:38:00:    Disciplines: SobieskiPropulsion
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize y_34(x_3)
    INFO - 08:38:00:    with respect to x_3
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_3(x_3) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:    | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:38:00:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 1821.23 it/sec, obj=1.12]
    INFO - 08:38:00:
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: 8
    INFO - 08:38:00:       Message: Positive directional derivative for linesearch
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 17
    INFO - 08:38:00:    Solution:
    INFO - 08:38:00:       The solution is feasible.
    INFO - 08:38:00:       Objective: 1.1169456193906955
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_3 = [-6.70083434e-01 -3.29916566e-01  2.22044605e-16 -1.27460556e-01]
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:38:00:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: *** End PropulsionScenario execution (time: 0:00:00.020739) ***
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:00: AerodynamicsScenario
    INFO - 08:38:00:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize -y_24(x_2)
    INFO - 08:38:00:    with respect to x_2
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_2(x_2) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 837.35 it/sec, obj=-3.5]
    INFO - 08:38:00:
 WARNING - 08:38:00: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: 8
    INFO - 08:38:00:       Message: Positive directional derivative for linesearch
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:00:    Solution:
 WARNING - 08:38:00:       The solution is not feasible.
    INFO - 08:38:00:       Objective: -3.4989599823565998
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_2 = 0.010000000000000009
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:00: *** End AerodynamicsScenario execution (time: 0:00:00.019425) ***
    INFO - 08:38:00:
    INFO - 08:38:00: *** Start StructureScenario execution ***
    INFO - 08:38:00: StructureScenario
    INFO - 08:38:00:    Disciplines: SobieskiStructure
    INFO - 08:38:00:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:00: Optimization problem:
    INFO - 08:38:00:    minimize -y_11(x_1)
    INFO - 08:38:00:    with respect to x_1
    INFO - 08:38:00:    subject to constraints:
    INFO - 08:38:00:       g_1(x_1) <= 0.0
    INFO - 08:38:00:    over the design space:
    INFO - 08:38:00:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:00:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:00:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:00:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:00: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:00: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   3%|▎         | 1/30 [00:00<00:00, 1639.68 it/sec, obj=-.366]
    INFO - 08:38:00:
    INFO - 08:38:00: ...   7%|▋         | 2/30 [00:00<00:00, 278.80 it/sec, obj=-.342]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  10%|█         | 3/30 [00:00<00:00, 242.75 it/sec, obj=-.365]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  13%|█▎        | 4/30 [00:00<00:00, 219.31 it/sec, obj=-.365]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  17%|█▋        | 5/30 [00:00<00:00, 208.70 it/sec, obj=-.365]
    INFO - 08:38:00:
    INFO - 08:38:00: ...  20%|██        | 6/30 [00:00<00:00, 202.19 it/sec, obj=-.365]
    INFO - 08:38:00:
    INFO - 08:38:00:
    INFO - 08:38:00: Optimization result:
    INFO - 08:38:00:    Optimizer info:
    INFO - 08:38:00:       Status: None
    INFO - 08:38:00:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:00:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:38:00:    Solution:
    INFO - 08:38:00:       The solution is feasible.
    INFO - 08:38:00:       Objective: -0.36496565666784275
    INFO - 08:38:00:       Standardized constraints:
    INFO - 08:38:00:          g_1 = [-2.58485524e-02 -1.74692489e-02 -2.44407670e-02 -3.21952521e-02
    INFO - 08:38:00:  -3.88530648e-02 -2.40000000e-01 -9.75552972e-13]
    INFO - 08:38:00:       Design space:
    INFO - 08:38:00:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:00:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00:       | x_1[0] |     0.1     | 0.3050815823000734 |     0.4     | float |
    INFO - 08:38:00:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:00:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:00: *** End StructureScenario execution (time: 0:00:00.040623) ***
    INFO - 08:38:01: ...  14%|█▍        | 7/50 [00:01<00:10,  4.03 it/sec, obj=-1.05e+3]
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start PropulsionScenario execution ***
    INFO - 08:38:01: PropulsionScenario
    INFO - 08:38:01:    Disciplines: SobieskiPropulsion
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize y_34(x_3)
    INFO - 08:38:01:    with respect to x_3
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_3(x_3) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 1088.30 it/sec, obj=1.04]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   7%|▋         | 2/30 [00:00<00:00, 418.18 it/sec, obj=1.07]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  10%|█         | 3/30 [00:00<00:00, 476.57 it/sec, obj=1.05]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  13%|█▎        | 4/30 [00:00<00:00, 413.22 it/sec, obj=1.07]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  17%|█▋        | 5/30 [00:00<00:00, 330.10 it/sec, obj=1.07]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  20%|██        | 6/30 [00:00<00:00, 347.90 it/sec, obj=1.07]
    INFO - 08:38:01:
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: None
    INFO - 08:38:01:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:38:01:    Solution:
    INFO - 08:38:01:       The solution is feasible.
    INFO - 08:38:01:       Objective: 1.0733793462031596
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_3 = [-0.72171604 -0.27828396  0.         -0.15721712]
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | x_3  |     0.1     | 0.2068477480804932 |      1      | float |
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: *** End PropulsionScenario execution (time: 0:00:00.028144) ***
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:01: AerodynamicsScenario
    INFO - 08:38:01:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize -y_24(x_2)
    INFO - 08:38:01:    with respect to x_2
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_2(x_2) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 972.71 it/sec, obj=-4.65]
    INFO - 08:38:01:
 WARNING - 08:38:01: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: 8
    INFO - 08:38:01:       Message: Positive directional derivative for linesearch
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:01:    Solution:
 WARNING - 08:38:01:       The solution is not feasible.
    INFO - 08:38:01:       Objective: -4.654696008207175
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_2 = 0.010000000000000009
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01: *** End AerodynamicsScenario execution (time: 0:00:00.013805) ***
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start StructureScenario execution ***
    INFO - 08:38:01: StructureScenario
    INFO - 08:38:01:    Disciplines: SobieskiStructure
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize -y_11(x_1)
    INFO - 08:38:01:    with respect to x_1
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_1(x_1) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | x_1[0] |     0.1     | 0.3050815823000734 |     0.4     | float |
    INFO - 08:38:01:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:01:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 565.65 it/sec, obj=-.394]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   7%|▋         | 2/30 [00:00<00:00, 240.71 it/sec, obj=-.394]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  10%|█         | 3/30 [00:00<00:00, 221.43 it/sec, obj=-.394]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  13%|█▎        | 4/30 [00:00<00:00, 198.08 it/sec, obj=-.394]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  17%|█▋        | 5/30 [00:00<00:00, 190.65 it/sec, obj=-.394]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  20%|██        | 6/30 [00:00<00:00, 187.70 it/sec, obj=-.394]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  23%|██▎       | 7/30 [00:00<00:00, 184.43 it/sec, obj=-.394]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  27%|██▋       | 8/30 [00:00<00:00, 181.88 it/sec, obj=-.394]
    INFO - 08:38:01:
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: None
    INFO - 08:38:01:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:38:01:    Solution:
    INFO - 08:38:01:       The solution is feasible.
    INFO - 08:38:01:       Objective: -0.3943234828131065
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_1 = [-2.18016988e-02 -1.56468526e-02 -2.34022845e-02 -3.15220572e-02
    INFO - 08:38:01:  -3.83796197e-02 -2.40000000e-01 -3.33066907e-16]
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | x_1[0] |     0.1     | 0.3350305463282076 |     0.4     | float |
    INFO - 08:38:01:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:01:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: *** End StructureScenario execution (time: 0:00:00.055178) ***
    INFO - 08:38:01: ...  16%|█▌        | 8/50 [00:01<00:10,  4.02 it/sec, obj=-1.67e+3]
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start PropulsionScenario execution ***
    INFO - 08:38:01: PropulsionScenario
    INFO - 08:38:01:    Disciplines: SobieskiPropulsion
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize y_34(x_3)
    INFO - 08:38:01:    with respect to x_3
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_3(x_3) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | x_3  |     0.1     | 0.2068477480804932 |      1      | float |
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 1740.38 it/sec, obj=1.03]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   7%|▋         | 2/30 [00:00<00:00, 444.36 it/sec, obj=1.04]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  10%|█         | 3/30 [00:00<00:00, 486.84 it/sec, obj=1.03]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  13%|█▎        | 4/30 [00:00<00:00, 415.93 it/sec, obj=1.04]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  17%|█▋        | 5/30 [00:00<00:00, 376.74 it/sec, obj=1.04]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  20%|██        | 6/30 [00:00<00:00, 365.19 it/sec, obj=1.04]
    INFO - 08:38:01:
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: None
    INFO - 08:38:01:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 10
    INFO - 08:38:01:    Solution:
    INFO - 08:38:01:       The solution is feasible.
    INFO - 08:38:01:       Objective: 1.0410444624498805
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_3 = [-8.51430794e-01 -1.48569206e-01  2.22044605e-16 -1.59690326e-01]
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | x_3  |     0.1     | 0.1842648745222338 |      1      | float |
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: *** End PropulsionScenario execution (time: 0:00:00.027539) ***
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:01: AerodynamicsScenario
    INFO - 08:38:01:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize -y_24(x_2)
    INFO - 08:38:01:    with respect to x_2
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_2(x_2) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 969.33 it/sec, obj=-5.69]
    INFO - 08:38:01:
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: 8
    INFO - 08:38:01:       Message: Positive directional derivative for linesearch
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:01:    Solution:
    INFO - 08:38:01:       The solution is feasible.
    INFO - 08:38:01:       Objective: -5.6900427487038545
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_2 = -0.040898733728932046
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01: *** End AerodynamicsScenario execution (time: 0:00:00.013928) ***
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start StructureScenario execution ***
    INFO - 08:38:01: StructureScenario
    INFO - 08:38:01:    Disciplines: SobieskiStructure
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize -y_11(x_1)
    INFO - 08:38:01:    with respect to x_1
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_1(x_1) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | x_1[0] |     0.1     | 0.3350305463282076 |     0.4     | float |
    INFO - 08:38:01:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:01:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 573.31 it/sec, obj=-.387]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   7%|▋         | 2/30 [00:00<00:00, 247.28 it/sec, obj=-.129]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  10%|█         | 3/30 [00:00<00:00, 224.48 it/sec, obj=-.163]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  13%|█▎        | 4/30 [00:00<00:00, 213.28 it/sec, obj=-.171]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  17%|█▋        | 5/30 [00:00<00:00, 201.35 it/sec, obj=-.172]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  20%|██        | 6/30 [00:00<00:00, 196.00 it/sec, obj=-.172]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  23%|██▎       | 7/30 [00:00<00:00, 192.66 it/sec, obj=-.175]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  27%|██▋       | 8/30 [00:00<00:00, 190.06 it/sec, obj=-.177]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  30%|███       | 9/30 [00:00<00:00, 186.71 it/sec, obj=-.177]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  33%|███▎      | 10/30 [00:00<00:00, 185.30 it/sec, obj=-.177]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  37%|███▋      | 11/30 [00:00<00:00, 193.51 it/sec, obj=-.177]
    INFO - 08:38:01:
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: None
    INFO - 08:38:01:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 12
    INFO - 08:38:01:    Solution:
    INFO - 08:38:01:       The solution is feasible.
    INFO - 08:38:01:       Objective: -0.1769318297057065
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_1 = [ 1.01150710e-09 -2.91294364e-02 -4.40206162e-02 -5.30597916e-02
    INFO - 08:38:01:  -5.91294367e-02 -7.67607717e-02 -1.63239228e-01]
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01:       | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:01:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01:       | x_1[0] |     0.1     |        0.1        |     0.4     | float |
    INFO - 08:38:01:       | x_1[1] |     0.75    | 1.045173780684756 |     1.25    | float |
    INFO - 08:38:01:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01: *** End StructureScenario execution (time: 0:00:00.067849) ***
    INFO - 08:38:01: ...  18%|█▊        | 9/50 [00:02<00:10,  4.02 it/sec, obj=-1.73e+3]
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start PropulsionScenario execution ***
    INFO - 08:38:01: PropulsionScenario
    INFO - 08:38:01:    Disciplines: SobieskiPropulsion
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize y_34(x_3)
    INFO - 08:38:01:    with respect to x_3
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_3(x_3) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | x_3  |     0.1     | 0.1842648745222338 |      1      | float |
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 1105.80 it/sec, obj=1.01]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   7%|▋         | 2/30 [00:00<00:00, 420.36 it/sec, obj=1.02]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  10%|█         | 3/30 [00:00<00:00, 472.10 it/sec, obj=1.01]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  13%|█▎        | 4/30 [00:00<00:00, 408.81 it/sec, obj=1.02]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  17%|█▋        | 5/30 [00:00<00:00, 370.91 it/sec, obj=1.02]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  20%|██        | 6/30 [00:00<00:00, 351.62 it/sec, obj=1.02]
    INFO - 08:38:01:
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: None
    INFO - 08:38:01:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:38:01:    Solution:
    INFO - 08:38:01:       The solution is feasible.
    INFO - 08:38:01:       Objective: 1.016000144206172
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_3 = [-7.31050536e-01 -2.68949464e-01  8.88178420e-16 -1.65753519e-01]
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | x_3  |     0.1     | 0.1765337509472553 |      1      | float |
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: *** End PropulsionScenario execution (time: 0:00:00.027950) ***
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:01: AerodynamicsScenario
    INFO - 08:38:01:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize -y_24(x_2)
    INFO - 08:38:01:    with respect to x_2
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_2(x_2) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 966.43 it/sec, obj=-13]
    INFO - 08:38:01:
 WARNING - 08:38:01: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: 8
    INFO - 08:38:01:       Message: Positive directional derivative for linesearch
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:01:    Solution:
 WARNING - 08:38:01:       The solution is not feasible.
    INFO - 08:38:01:       Objective: -13.032585576798507
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_2 = 0.006789165930262353
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01: *** End AerodynamicsScenario execution (time: 0:00:00.014069) ***
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start StructureScenario execution ***
    INFO - 08:38:01: StructureScenario
    INFO - 08:38:01:    Disciplines: SobieskiStructure
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize -y_11(x_1)
    INFO - 08:38:01:    with respect to x_1
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_1(x_1) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01:    | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:01:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01:    | x_1[0] |     0.1     |        0.1        |     0.4     | float |
    INFO - 08:38:01:    | x_1[1] |     0.75    | 1.045173780684756 |     1.25    | float |
    INFO - 08:38:01:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 579.24 it/sec, obj=-.199]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   7%|▋         | 2/30 [00:00<00:00, 252.33 it/sec, obj=-.265]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  10%|█         | 3/30 [00:00<00:00, 228.66 it/sec, obj=-.596]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  13%|█▎        | 4/30 [00:00<00:00, 208.82 it/sec, obj=-.596]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  17%|█▋        | 5/30 [00:00<00:00, 198.71 it/sec, obj=-.596]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  20%|██        | 6/30 [00:00<00:00, 190.01 it/sec, obj=-.599]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  23%|██▎       | 7/30 [00:00<00:00, 186.13 it/sec, obj=-.604]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  27%|██▋       | 8/30 [00:00<00:00, 184.34 it/sec, obj=-.605]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  30%|███       | 9/30 [00:00<00:00, 182.13 it/sec, obj=-.605]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  33%|███▎      | 10/30 [00:00<00:00, 181.18 it/sec, obj=-.605]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  37%|███▋      | 11/30 [00:00<00:00, 179.74 it/sec, obj=-.605]
    INFO - 08:38:01:
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: None
    INFO - 08:38:01:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 12
    INFO - 08:38:01:    Solution:
    INFO - 08:38:01:       The solution is feasible.
    INFO - 08:38:01:       Objective: -0.6049250989879495
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_1 = [ 3.76735039e-08 -7.11384807e-03 -1.92530885e-02 -2.92829680e-02
    INFO - 08:38:01:  -3.71138606e-02 -2.24260835e-01 -1.57391646e-02]
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01:       | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:01:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01:       | x_1[0] |     0.1     | 0.395670144214876 |     0.4     | float |
    INFO - 08:38:01:       | x_1[1] |     0.75    |        0.75       |     1.25    | float |
    INFO - 08:38:01:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01: *** End StructureScenario execution (time: 0:00:00.072466) ***
    INFO - 08:38:01: ...  20%|██        | 10/50 [00:02<00:10,  3.97 it/sec, obj=-2.59e+3]
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start PropulsionScenario execution ***
    INFO - 08:38:01: PropulsionScenario
    INFO - 08:38:01:    Disciplines: SobieskiPropulsion
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize y_34(x_3)
    INFO - 08:38:01:    with respect to x_3
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_3(x_3) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:    | x_3  |     0.1     | 0.1765337509472553 |      1      | float |
    INFO - 08:38:01:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 1795.51 it/sec, obj=0.949]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   7%|▋         | 2/30 [00:00<00:00, 445.70 it/sec, obj=0.955]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  10%|█         | 3/30 [00:00<00:00, 500.53 it/sec, obj=0.95]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  13%|█▎        | 4/30 [00:00<00:00, 426.38 it/sec, obj=0.955]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  17%|█▋        | 5/30 [00:00<00:00, 393.56 it/sec, obj=0.955]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  20%|██        | 6/30 [00:00<00:00, 373.18 it/sec, obj=0.955]
    INFO - 08:38:01:
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: None
    INFO - 08:38:01:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:38:01:    Solution:
    INFO - 08:38:01:       The solution is feasible.
    INFO - 08:38:01:       Objective: 0.9553723264534822
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_3 = [-7.52501846e-01 -2.47498154e-01  2.22044605e-16 -1.77943199e-01]
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | x_3  |     0.1     | 0.1620377168745644 |      1      | float |
    INFO - 08:38:01:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: *** End PropulsionScenario execution (time: 0:00:00.027048) ***
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:01: AerodynamicsScenario
    INFO - 08:38:01:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize -y_24(x_2)
    INFO - 08:38:01:    with respect to x_2
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_2(x_2) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:01:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 945.73 it/sec, obj=-6.56]
    INFO - 08:38:01:
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: 8
    INFO - 08:38:01:       Message: Positive directional derivative for linesearch
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:01:    Solution:
    INFO - 08:38:01:       The solution is feasible.
    INFO - 08:38:01:       Objective: -6.556840127020516
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_2 = -5.838362818821885e-05
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:01:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:01: *** End AerodynamicsScenario execution (time: 0:00:00.013878) ***
    INFO - 08:38:01:
    INFO - 08:38:01: *** Start StructureScenario execution ***
    INFO - 08:38:01: StructureScenario
    INFO - 08:38:01:    Disciplines: SobieskiStructure
    INFO - 08:38:01:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:01: Optimization problem:
    INFO - 08:38:01:    minimize -y_11(x_1)
    INFO - 08:38:01:    with respect to x_1
    INFO - 08:38:01:    subject to constraints:
    INFO - 08:38:01:       g_1(x_1) <= 0.0
    INFO - 08:38:01:    over the design space:
    INFO - 08:38:01:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01:    | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:01:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01:    | x_1[0] |     0.1     | 0.395670144214876 |     0.4     | float |
    INFO - 08:38:01:    | x_1[1] |     0.75    |        0.75       |     1.25    | float |
    INFO - 08:38:01:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:01: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:01: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   3%|▎         | 1/30 [00:00<00:00, 563.98 it/sec, obj=-.498]
    INFO - 08:38:01:
    INFO - 08:38:01: ...   7%|▋         | 2/30 [00:00<00:00, 248.24 it/sec, obj=-.407]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  10%|█         | 3/30 [00:00<00:00, 223.03 it/sec, obj=-.42]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  13%|█▎        | 4/30 [00:00<00:00, 206.88 it/sec, obj=-.437]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  17%|█▋        | 5/30 [00:00<00:00, 198.85 it/sec, obj=-.495]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  20%|██        | 6/30 [00:00<00:00, 194.40 it/sec, obj=-.495]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  23%|██▎       | 7/30 [00:00<00:00, 191.30 it/sec, obj=-.496]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  27%|██▋       | 8/30 [00:00<00:00, 189.19 it/sec, obj=-.496]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  30%|███       | 9/30 [00:00<00:00, 187.48 it/sec, obj=-.496]
    INFO - 08:38:01:
    INFO - 08:38:01: ...  33%|███▎      | 10/30 [00:00<00:00, 186.10 it/sec, obj=-.496]
    INFO - 08:38:01:
    INFO - 08:38:01:
    INFO - 08:38:01: Optimization result:
    INFO - 08:38:01:    Optimizer info:
    INFO - 08:38:01:       Status: None
    INFO - 08:38:01:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:01:       Number of calls to the objective function by the optimizer: 11
    INFO - 08:38:01:    Solution:
    INFO - 08:38:01:       The solution is feasible.
    INFO - 08:38:01:       Objective: -0.49552977411768995
    INFO - 08:38:01:       Standardized constraints:
    INFO - 08:38:01:          g_1 = [ 1.44417811e-12 -1.01681919e-02 -2.26892159e-02 -3.25816473e-02
    INFO - 08:38:01:  -4.01681919e-02 -1.89656111e-01 -5.03438891e-02]
    INFO - 08:38:01:       Design space:
    INFO - 08:38:01:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:01:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01:       | x_1[0] |     0.1     | 0.1919196023768988 |     0.4     | float |
    INFO - 08:38:01:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:01:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:01: *** End StructureScenario execution (time: 0:00:00.065037) ***
    INFO - 08:38:02: ...  22%|██▏       | 11/50 [00:02<00:09,  4.02 it/sec, obj=-2.88e+3]
    INFO - 08:38:02:
    INFO - 08:38:02: *** Start PropulsionScenario execution ***
    INFO - 08:38:02: PropulsionScenario
    INFO - 08:38:02:    Disciplines: SobieskiPropulsion
    INFO - 08:38:02:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:02: Optimization problem:
    INFO - 08:38:02:    minimize y_34(x_3)
    INFO - 08:38:02:    with respect to x_3
    INFO - 08:38:02:    subject to constraints:
    INFO - 08:38:02:       g_3(x_3) <= 0.0
    INFO - 08:38:02:    over the design space:
    INFO - 08:38:02:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | x_3  |     0.1     | 0.1620377168745644 |      1      | float |
    INFO - 08:38:02:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:02: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   3%|▎         | 1/30 [00:00<00:00, 1721.09 it/sec, obj=0.975]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   7%|▋         | 2/30 [00:00<00:00, 436.72 it/sec, obj=0.971]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  10%|█         | 3/30 [00:00<00:00, 406.77 it/sec, obj=0.971]
    INFO - 08:38:02:
    INFO - 08:38:02:
    INFO - 08:38:02: Optimization result:
    INFO - 08:38:02:    Optimizer info:
    INFO - 08:38:02:       Status: 8
    INFO - 08:38:02:       Message: Positive directional derivative for linesearch
    INFO - 08:38:02:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:38:02:    Solution:
    INFO - 08:38:02:       The solution is feasible.
    INFO - 08:38:02:       Objective: 0.9713611515325357
    INFO - 08:38:02:       Standardized constraints:
    INFO - 08:38:02:          g_3 = [-0.71736853 -0.28263147  0.         -0.17797985]
    INFO - 08:38:02:       Design space:
    INFO - 08:38:02:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:       | x_3  |     0.1     | 0.1684752455721721 |      1      | float |
    INFO - 08:38:02:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: *** End PropulsionScenario execution (time: 0:00:00.020496) ***
    INFO - 08:38:02:
    INFO - 08:38:02: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:02: AerodynamicsScenario
    INFO - 08:38:02:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:02:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:02: Optimization problem:
    INFO - 08:38:02:    minimize -y_24(x_2)
    INFO - 08:38:02:    with respect to x_2
    INFO - 08:38:02:    subject to constraints:
    INFO - 08:38:02:       g_2(x_2) <= 0.0
    INFO - 08:38:02:    over the design space:
    INFO - 08:38:02:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:02:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:02:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:02: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:02: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   3%|▎         | 1/30 [00:00<00:00, 909.24 it/sec, obj=-6.46]
    INFO - 08:38:02:
    INFO - 08:38:02:
    INFO - 08:38:02: Optimization result:
    INFO - 08:38:02:    Optimizer info:
    INFO - 08:38:02:       Status: 8
    INFO - 08:38:02:       Message: Positive directional derivative for linesearch
    INFO - 08:38:02:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:02:    Solution:
    INFO - 08:38:02:       The solution is feasible.
    INFO - 08:38:02:       Objective: -6.461152376711783
    INFO - 08:38:02:       Standardized constraints:
    INFO - 08:38:02:          g_2 = -0.006066348952167955
    INFO - 08:38:02:       Design space:
    INFO - 08:38:02:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:02:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:02:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:02: *** End AerodynamicsScenario execution (time: 0:00:00.014268) ***
    INFO - 08:38:02:
    INFO - 08:38:02: *** Start StructureScenario execution ***
    INFO - 08:38:02: StructureScenario
    INFO - 08:38:02:    Disciplines: SobieskiStructure
    INFO - 08:38:02:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:02: Optimization problem:
    INFO - 08:38:02:    minimize -y_11(x_1)
    INFO - 08:38:02:    with respect to x_1
    INFO - 08:38:02:    subject to constraints:
    INFO - 08:38:02:       g_1(x_1) <= 0.0
    INFO - 08:38:02:    over the design space:
    INFO - 08:38:02:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | x_1[0] |     0.1     | 0.1919196023768988 |     0.4     | float |
    INFO - 08:38:02:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:02:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:02: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   3%|▎         | 1/30 [00:00<00:00, 572.29 it/sec, obj=-.476]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   7%|▋         | 2/30 [00:00<00:00, 247.06 it/sec, obj=-.465]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  10%|█         | 3/30 [00:00<00:00, 224.96 it/sec, obj=-.475]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  13%|█▎        | 4/30 [00:00<00:00, 204.57 it/sec, obj=-.475]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  17%|█▋        | 5/30 [00:00<00:00, 197.60 it/sec, obj=-.475]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  20%|██        | 6/30 [00:00<00:00, 193.27 it/sec, obj=-.475]
    INFO - 08:38:02:
    INFO - 08:38:02:
    INFO - 08:38:02: Optimization result:
    INFO - 08:38:02:    Optimizer info:
    INFO - 08:38:02:       Status: None
    INFO - 08:38:02:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:02:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:38:02:    Solution:
    INFO - 08:38:02:       The solution is feasible.
    INFO - 08:38:02:       Objective: -0.47533077234161786
    INFO - 08:38:02:       Standardized constraints:
    INFO - 08:38:02:          g_1 = [-8.88178420e-16 -1.39271769e-02 -2.69180740e-02 -3.66413511e-02
    INFO - 08:38:02:  -4.39271769e-02 -1.57165477e-01 -8.28345230e-02]
    INFO - 08:38:02:       Design space:
    INFO - 08:38:02:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:       | x_1[0] |     0.1     | 0.1076554359148021 |     0.4     | float |
    INFO - 08:38:02:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:02:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: *** End StructureScenario execution (time: 0:00:00.042188) ***
 WARNING - 08:38:02: MDAJacobi has reached its maximum number of iterations but the normed residual 4.878093076457221e-13 is still above the tolerance 1e-14.
    INFO - 08:38:02: ...  24%|██▍       | 12/50 [00:03<00:09,  3.94 it/sec, obj=-2.59e+3]
    INFO - 08:38:02:
    INFO - 08:38:02: *** Start PropulsionScenario execution ***
    INFO - 08:38:02: PropulsionScenario
    INFO - 08:38:02:    Disciplines: SobieskiPropulsion
    INFO - 08:38:02:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:02: Optimization problem:
    INFO - 08:38:02:    minimize y_34(x_3)
    INFO - 08:38:02:    with respect to x_3
    INFO - 08:38:02:    subject to constraints:
    INFO - 08:38:02:       g_3(x_3) <= 0.0
    INFO - 08:38:02:    over the design space:
    INFO - 08:38:02:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | x_3  |     0.1     | 0.1684752455721721 |      1      | float |
    INFO - 08:38:02:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:02: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   3%|▎         | 1/30 [00:00<00:00, 1029.02 it/sec, obj=0.95]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   7%|▋         | 2/30 [00:00<00:00, 392.61 it/sec, obj=0.954]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  10%|█         | 3/30 [00:00<00:00, 450.11 it/sec, obj=0.951]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  13%|█▎        | 4/30 [00:00<00:00, 388.67 it/sec, obj=0.954]
    INFO - 08:38:02:
    INFO - 08:38:02:
    INFO - 08:38:02: Optimization result:
    INFO - 08:38:02:    Optimizer info:
    INFO - 08:38:02:       Status: 8
    INFO - 08:38:02:       Message: Positive directional derivative for linesearch
    INFO - 08:38:02:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:02:    Solution:
    INFO - 08:38:02:       The solution is feasible.
    INFO - 08:38:02:       Objective: 0.9535871807821362
    INFO - 08:38:02:       Standardized constraints:
    INFO - 08:38:02:          g_3 = [-7.89553157e-01 -2.10446843e-01  8.88178420e-16 -1.78528997e-01]
    INFO - 08:38:02:       Design space:
    INFO - 08:38:02:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:       | x_3  |     0.1     | 0.1619323983227096 |      1      | float |
    INFO - 08:38:02:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: *** End PropulsionScenario execution (time: 0:00:00.023384) ***
    INFO - 08:38:02:
    INFO - 08:38:02: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:02: AerodynamicsScenario
    INFO - 08:38:02:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:02:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:02: Optimization problem:
    INFO - 08:38:02:    minimize -y_24(x_2)
    INFO - 08:38:02:    with respect to x_2
    INFO - 08:38:02:    subject to constraints:
    INFO - 08:38:02:       g_2(x_2) <= 0.0
    INFO - 08:38:02:    over the design space:
    INFO - 08:38:02:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:02:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:02:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:02: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:02: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   3%|▎         | 1/30 [00:00<00:00, 963.10 it/sec, obj=-6.89]
    INFO - 08:38:02:
 WARNING - 08:38:02: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:02:
    INFO - 08:38:02: Optimization result:
    INFO - 08:38:02:    Optimizer info:
    INFO - 08:38:02:       Status: 8
    INFO - 08:38:02:       Message: Positive directional derivative for linesearch
    INFO - 08:38:02:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:02:    Solution:
 WARNING - 08:38:02:       The solution is not feasible.
    INFO - 08:38:02:       Objective: -6.889865003522994
    INFO - 08:38:02:       Standardized constraints:
    INFO - 08:38:02:          g_2 = 0.001183813710053272
    INFO - 08:38:02:       Design space:
    INFO - 08:38:02:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:02:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:02:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:02: *** End AerodynamicsScenario execution (time: 0:00:00.014048) ***
    INFO - 08:38:02:
    INFO - 08:38:02: *** Start StructureScenario execution ***
    INFO - 08:38:02: StructureScenario
    INFO - 08:38:02:    Disciplines: SobieskiStructure
    INFO - 08:38:02:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:02: Optimization problem:
    INFO - 08:38:02:    minimize -y_11(x_1)
    INFO - 08:38:02:    with respect to x_1
    INFO - 08:38:02:    subject to constraints:
    INFO - 08:38:02:       g_1(x_1) <= 0.0
    INFO - 08:38:02:    over the design space:
    INFO - 08:38:02:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | x_1[0] |     0.1     | 0.1076554359148021 |     0.4     | float |
    INFO - 08:38:02:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:02:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:02: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   3%|▎         | 1/30 [00:00<00:00, 567.56 it/sec, obj=-.465]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   7%|▋         | 2/30 [00:00<00:00, 246.48 it/sec, obj=-.465]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  10%|█         | 3/30 [00:00<00:00, 224.32 it/sec, obj=-.465]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  13%|█▎        | 4/30 [00:00<00:00, 208.13 it/sec, obj=-.466]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  17%|█▋        | 5/30 [00:00<00:00, 200.20 it/sec, obj=-.467]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  20%|██        | 6/30 [00:00<00:00, 194.56 it/sec, obj=-.467]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  23%|██▎       | 7/30 [00:00<00:00, 191.05 it/sec, obj=-.467]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  27%|██▋       | 8/30 [00:00<00:00, 188.53 it/sec, obj=-.467]
    INFO - 08:38:02:
    INFO - 08:38:02:
    INFO - 08:38:02: Optimization result:
    INFO - 08:38:02:    Optimizer info:
    INFO - 08:38:02:       Status: 8
    INFO - 08:38:02:       Message: Positive directional derivative for linesearch
    INFO - 08:38:02:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:38:02:    Solution:
    INFO - 08:38:02:       The solution is feasible.
    INFO - 08:38:02:       Objective: -0.46713149058370773
    INFO - 08:38:02:       Standardized constraints:
    INFO - 08:38:02:          g_1 = [ 6.15063556e-14 -1.12798410e-02 -2.39398211e-02 -3.37822283e-02
    INFO - 08:38:02:  -4.12798410e-02 -1.89183781e-01 -5.08162189e-02]
    INFO - 08:38:02:       Design space:
    INFO - 08:38:02:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:       | x_1[0] |     0.1     | 0.2603610396151935 |     0.4     | float |
    INFO - 08:38:02:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:02:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: *** End StructureScenario execution (time: 0:00:00.057807) ***
 WARNING - 08:38:02: MDAJacobi has reached its maximum number of iterations but the normed residual 2.6870836615612218e-14 is still above the tolerance 1e-14.
    INFO - 08:38:02: ...  26%|██▌       | 13/50 [00:03<00:09,  3.92 it/sec, obj=-2.79e+3]
 WARNING - 08:38:02: MDAJacobi has reached its maximum number of iterations but the normed residual 7.173840117794108e-14 is still above the tolerance 1e-14.
    INFO - 08:38:02:
    INFO - 08:38:02: *** Start PropulsionScenario execution ***
    INFO - 08:38:02: PropulsionScenario
    INFO - 08:38:02:    Disciplines: SobieskiPropulsion
    INFO - 08:38:02:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:02: Optimization problem:
    INFO - 08:38:02:    minimize y_34(x_3)
    INFO - 08:38:02:    with respect to x_3
    INFO - 08:38:02:    subject to constraints:
    INFO - 08:38:02:       g_3(x_3) <= 0.0
    INFO - 08:38:02:    over the design space:
    INFO - 08:38:02:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | x_3  |     0.1     | 0.1619323983227096 |      1      | float |
    INFO - 08:38:02:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:02: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   3%|▎         | 1/30 [00:00<00:00, 1704.31 it/sec, obj=0.971]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   7%|▋         | 2/30 [00:00<00:00, 442.58 it/sec, obj=0.968]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  10%|█         | 3/30 [00:00<00:00, 408.52 it/sec, obj=0.968]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  13%|█▎        | 4/30 [00:00<00:00, 425.91 it/sec, obj=0.968]
    INFO - 08:38:02:
    INFO - 08:38:02:
    INFO - 08:38:02: Optimization result:
    INFO - 08:38:02:    Optimizer info:
    INFO - 08:38:02:       Status: None
    INFO - 08:38:02:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:02:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:02:    Solution:
    INFO - 08:38:02:       The solution is feasible.
    INFO - 08:38:02:       Objective: 0.9679216312695265
    INFO - 08:38:02:       Standardized constraints:
    INFO - 08:38:02:          g_3 = [-7.43116480e-01 -2.56883520e-01 -6.66133815e-16 -1.77944713e-01]
    INFO - 08:38:02:       Design space:
    INFO - 08:38:02:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:       | x_3  |     0.1     | 0.1669656496407792 |      1      | float |
    INFO - 08:38:02:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: *** End PropulsionScenario execution (time: 0:00:00.020352) ***
    INFO - 08:38:02:
    INFO - 08:38:02: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:02: AerodynamicsScenario
    INFO - 08:38:02:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:02:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:02: Optimization problem:
    INFO - 08:38:02:    minimize -y_24(x_2)
    INFO - 08:38:02:    with respect to x_2
    INFO - 08:38:02:    subject to constraints:
    INFO - 08:38:02:       g_2(x_2) <= 0.0
    INFO - 08:38:02:    over the design space:
    INFO - 08:38:02:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:02:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:02:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:02: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:02: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   3%|▎         | 1/30 [00:00<00:00, 955.20 it/sec, obj=-6.52]
    INFO - 08:38:02:
    INFO - 08:38:02:
    INFO - 08:38:02: Optimization result:
    INFO - 08:38:02:    Optimizer info:
    INFO - 08:38:02:       Status: 8
    INFO - 08:38:02:       Message: Positive directional derivative for linesearch
    INFO - 08:38:02:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:02:    Solution:
    INFO - 08:38:02:       The solution is feasible.
    INFO - 08:38:02:       Objective: -6.523104999050128
    INFO - 08:38:02:       Standardized constraints:
    INFO - 08:38:02:          g_2 = -0.0004484609969221953
    INFO - 08:38:02:       Design space:
    INFO - 08:38:02:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:02:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:02:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:02:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:02: *** End AerodynamicsScenario execution (time: 0:00:00.013664) ***
    INFO - 08:38:02:
    INFO - 08:38:02: *** Start StructureScenario execution ***
    INFO - 08:38:02: StructureScenario
    INFO - 08:38:02:    Disciplines: SobieskiStructure
    INFO - 08:38:02:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:02: Optimization problem:
    INFO - 08:38:02:    minimize -y_11(x_1)
    INFO - 08:38:02:    with respect to x_1
    INFO - 08:38:02:    subject to constraints:
    INFO - 08:38:02:       g_1(x_1) <= 0.0
    INFO - 08:38:02:    over the design space:
    INFO - 08:38:02:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:02:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02:    | x_1[0] |     0.1     | 0.2603610396151935 |     0.4     | float |
    INFO - 08:38:02:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:02:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:02: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:02: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   3%|▎         | 1/30 [00:00<00:00, 577.97 it/sec, obj=-.494]
    INFO - 08:38:02:
    INFO - 08:38:02: ...   7%|▋         | 2/30 [00:00<00:00, 249.69 it/sec, obj=-.486]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  10%|█         | 3/30 [00:00<00:00, 227.12 it/sec, obj=-.493]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  13%|█▎        | 4/30 [00:00<00:00, 209.12 it/sec, obj=-.493]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  17%|█▋        | 5/30 [00:00<00:00, 200.87 it/sec, obj=-.493]
    INFO - 08:38:02:
    INFO - 08:38:02: ...  20%|██        | 6/30 [00:00<00:00, 193.50 it/sec, obj=-.493]
    INFO - 08:38:02:
    INFO - 08:38:02:
    INFO - 08:38:02: Optimization result:
    INFO - 08:38:02:    Optimizer info:
    INFO - 08:38:02:       Status: None
    INFO - 08:38:02:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:02:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:38:02:    Solution:
    INFO - 08:38:02:       The solution is feasible.
    INFO - 08:38:02:       Objective: -0.4933058309016954
    INFO - 08:38:02:       Standardized constraints:
    INFO - 08:38:02:          g_1 = [ 2.22044605e-16 -1.05054262e-02 -2.30686044e-02 -3.29458602e-02
    INFO - 08:38:02:  -4.05054262e-02 -1.87120819e-01 -5.28791813e-02]
    INFO - 08:38:02:       Design space:
    INFO - 08:38:02:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:02:       | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:02:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:02:       | x_1[0] |     0.1     | 0.186301513246376 |     0.4     | float |
    INFO - 08:38:02:       | x_1[1] |     0.75    |        0.75       |     1.25    | float |
    INFO - 08:38:02:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:02: *** End StructureScenario execution (time: 0:00:00.041956) ***
    INFO - 08:38:02: ...  28%|██▊       | 14/50 [00:03<00:09,  3.86 it/sec, obj=-2.73e+3]
 WARNING - 08:38:03: MDAJacobi has reached its maximum number of iterations but the normed residual 1.7359275650534252e-14 is still above the tolerance 1e-14.
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start PropulsionScenario execution ***
    INFO - 08:38:03: PropulsionScenario
    INFO - 08:38:03:    Disciplines: SobieskiPropulsion
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize y_34(x_3)
    INFO - 08:38:03:    with respect to x_3
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_3(x_3) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | x_3  |     0.1     | 0.1669656496407792 |      1      | float |
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 1684.46 it/sec, obj=1.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   7%|▋         | 2/30 [00:00<00:00, 434.44 it/sec, obj=1]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  10%|█         | 3/30 [00:00<00:00, 403.29 it/sec, obj=1]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  13%|█▎        | 4/30 [00:00<00:00, 370.19 it/sec, obj=1]
    INFO - 08:38:03:
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: None
    INFO - 08:38:03:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:03:    Solution:
    INFO - 08:38:03:       The solution is feasible.
    INFO - 08:38:03:       Objective: 1.0041318527256473
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_3 = [-7.29365486e-01 -2.70634514e-01  2.22044605e-16 -1.77940438e-01]
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | x_3  |     0.1     | 0.1857435684761742 |      1      | float |
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: *** End PropulsionScenario execution (time: 0:00:00.022271) ***
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:03: AerodynamicsScenario
    INFO - 08:38:03:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize -y_24(x_2)
    INFO - 08:38:03:    with respect to x_2
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_2(x_2) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 889.94 it/sec, obj=-5.96]
    INFO - 08:38:03:
 WARNING - 08:38:03: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: 8
    INFO - 08:38:03:       Message: Positive directional derivative for linesearch
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:03:    Solution:
 WARNING - 08:38:03:       The solution is not feasible.
    INFO - 08:38:03:       Objective: -5.960244177118336
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_2 = 0.0006203740281660597
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03: *** End AerodynamicsScenario execution (time: 0:00:00.019830) ***
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start StructureScenario execution ***
    INFO - 08:38:03: StructureScenario
    INFO - 08:38:03:    Disciplines: SobieskiStructure
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize -y_11(x_1)
    INFO - 08:38:03:    with respect to x_1
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_1(x_1) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:03:    | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:03:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:03:    | x_1[0] |     0.1     | 0.186301513246376 |     0.4     | float |
    INFO - 08:38:03:    | x_1[1] |     0.75    |        0.75       |     1.25    | float |
    INFO - 08:38:03:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 547.70 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   7%|▋         | 2/30 [00:00<00:00, 239.43 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  10%|█         | 3/30 [00:00<00:00, 214.61 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  13%|█▎        | 4/30 [00:00<00:00, 201.36 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  17%|█▋        | 5/30 [00:00<00:00, 194.73 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  20%|██        | 6/30 [00:00<00:00, 191.01 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  23%|██▎       | 7/30 [00:00<00:00, 188.38 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: None
    INFO - 08:38:03:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:38:03:    Solution:
    INFO - 08:38:03:       The solution is feasible.
    INFO - 08:38:03:       Objective: -0.4940121593175541
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_1 = [ 8.88178420e-16 -9.76828124e-03 -2.22393164e-02 -3.21497437e-02
    INFO - 08:38:03:  -3.97682812e-02 -1.93337061e-01 -4.66629388e-02]
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | x_1[0] |     0.1     | 0.2067638147404661 |     0.4     | float |
    INFO - 08:38:03:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:03:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: *** End StructureScenario execution (time: 0:00:00.048666) ***
    INFO - 08:38:03: ...  30%|███       | 15/50 [00:03<00:09,  3.79 it/sec, obj=-2.35e+3]
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start PropulsionScenario execution ***
    INFO - 08:38:03: PropulsionScenario
    INFO - 08:38:03:    Disciplines: SobieskiPropulsion
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize y_34(x_3)
    INFO - 08:38:03:    with respect to x_3
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_3(x_3) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | x_3  |     0.1     | 0.1857435684761742 |      1      | float |
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 1702.92 it/sec, obj=0.913]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   7%|▋         | 2/30 [00:00<00:00, 416.10 it/sec, obj=0.924]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  10%|█         | 3/30 [00:00<00:00, 469.06 it/sec, obj=0.915]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  13%|█▎        | 4/30 [00:00<00:00, 406.50 it/sec, obj=0.924]
    INFO - 08:38:03:
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: 8
    INFO - 08:38:03:       Message: Positive directional derivative for linesearch
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:38:03:    Solution:
    INFO - 08:38:03:       The solution is feasible.
    INFO - 08:38:03:       Objective: 0.9239330847904544
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_3 = [-7.66103540e-01 -2.33896460e-01 -2.22044605e-16 -1.83255000e-01]
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: *** End PropulsionScenario execution (time: 0:00:00.024733) ***
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:03: AerodynamicsScenario
    INFO - 08:38:03:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize -y_24(x_2)
    INFO - 08:38:03:    with respect to x_2
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_2(x_2) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 927.12 it/sec, obj=-6.78]
    INFO - 08:38:03:
 WARNING - 08:38:03: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: 8
    INFO - 08:38:03:       Message: Positive directional derivative for linesearch
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:03:    Solution:
 WARNING - 08:38:03:       The solution is not feasible.
    INFO - 08:38:03:       Objective: -6.780482887506568
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_2 = 0.0007250142048988995
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03: *** End AerodynamicsScenario execution (time: 0:00:00.014220) ***
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start StructureScenario execution ***
    INFO - 08:38:03: StructureScenario
    INFO - 08:38:03:    Disciplines: SobieskiStructure
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize -y_11(x_1)
    INFO - 08:38:03:    with respect to x_1
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_1(x_1) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | x_1[0] |     0.1     | 0.2067638147404661 |     0.4     | float |
    INFO - 08:38:03:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:03:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 555.68 it/sec, obj=-.496]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   7%|▋         | 2/30 [00:00<00:00, 247.15 it/sec, obj=-.496]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  10%|█         | 3/30 [00:00<00:00, 224.71 it/sec, obj=-.496]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  13%|█▎        | 4/30 [00:00<00:00, 208.64 it/sec, obj=-.496]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  17%|█▋        | 5/30 [00:00<00:00, 200.59 it/sec, obj=-.496]
    INFO - 08:38:03:
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: None
    INFO - 08:38:03:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 6
    INFO - 08:38:03:    Solution:
    INFO - 08:38:03:       The solution is feasible.
    INFO - 08:38:03:       Objective: -0.49592606165573727
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_1 = [ 0.         -0.0092497  -0.02165591 -0.03158968 -0.0392497  -0.19575601
    INFO - 08:38:03:  -0.04424399]
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | x_1[0] |     0.1     | 0.1991767703744377 |     0.4     | float |
    INFO - 08:38:03:       | x_1[1] |     0.75    | 0.7500000000000001 |     1.25    | float |
    INFO - 08:38:03:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: *** End StructureScenario execution (time: 0:00:00.036102) ***
    INFO - 08:38:03: ...  32%|███▏      | 16/50 [00:04<00:08,  3.85 it/sec, obj=-3.05e+3]
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start PropulsionScenario execution ***
    INFO - 08:38:03: PropulsionScenario
    INFO - 08:38:03:    Disciplines: SobieskiPropulsion
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize y_34(x_3)
    INFO - 08:38:03:    with respect to x_3
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_3(x_3) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 1566.21 it/sec, obj=0.927]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   7%|▋         | 2/30 [00:00<00:00, 405.38 it/sec, obj=0.927]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  10%|█         | 3/30 [00:00<00:00, 387.80 it/sec, obj=0.927]
    INFO - 08:38:03:
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: 8
    INFO - 08:38:03:       Message: Positive directional derivative for linesearch
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:38:03:    Solution:
    INFO - 08:38:03:       The solution is feasible.
    INFO - 08:38:03:       Objective: 0.9265456442891855
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_3 = [-7.59648840e-01 -2.40351160e-01  2.22044605e-16 -1.83022172e-01]
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | x_3  |     0.1     | 0.1568514030170806 |      1      | float |
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: *** End PropulsionScenario execution (time: 0:00:00.026087) ***
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:03: AerodynamicsScenario
    INFO - 08:38:03:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize -y_24(x_2)
    INFO - 08:38:03:    with respect to x_2
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_2(x_2) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 904.53 it/sec, obj=-6.96]
    INFO - 08:38:03:
 WARNING - 08:38:03: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: 8
    INFO - 08:38:03:       Message: Positive directional derivative for linesearch
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:03:    Solution:
 WARNING - 08:38:03:       The solution is not feasible.
    INFO - 08:38:03:       Objective: -6.962222782282447
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_2 = 0.0008723923608933148
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03: *** End AerodynamicsScenario execution (time: 0:00:00.014486) ***
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start StructureScenario execution ***
    INFO - 08:38:03: StructureScenario
    INFO - 08:38:03:    Disciplines: SobieskiStructure
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize -y_11(x_1)
    INFO - 08:38:03:    with respect to x_1
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_1(x_1) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | x_1[0] |     0.1     | 0.1991767703744377 |     0.4     | float |
    INFO - 08:38:03:    | x_1[1] |     0.75    | 0.7500000000000001 |     1.25    | float |
    INFO - 08:38:03:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 563.37 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   7%|▋         | 2/30 [00:00<00:00, 248.43 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  10%|█         | 3/30 [00:00<00:00, 226.31 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  13%|█▎        | 4/30 [00:00<00:00, 209.80 it/sec, obj=-.494]
    INFO - 08:38:03:
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: None
    INFO - 08:38:03:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:03:    Solution:
    INFO - 08:38:03:       The solution is feasible.
    INFO - 08:38:03:       Objective: -0.4941668455226143
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_1 = [-5.86264370e-12 -8.88383406e-03 -2.12443133e-02 -3.11945408e-02
    INFO - 08:38:03:  -3.88838341e-02 -1.97699334e-01 -4.23006656e-02]
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | x_1[0] |     0.1     | 0.1966804666509251 |     0.4     | float |
    INFO - 08:38:03:       | x_1[1] |     0.75    | 0.7500000000000002 |     1.25    | float |
    INFO - 08:38:03:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: *** End StructureScenario execution (time: 0:00:00.030226) ***
    INFO - 08:38:03: ...  34%|███▍      | 17/50 [00:04<00:08,  3.91 it/sec, obj=-2.98e+3]
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start PropulsionScenario execution ***
    INFO - 08:38:03: PropulsionScenario
    INFO - 08:38:03:    Disciplines: SobieskiPropulsion
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize y_34(x_3)
    INFO - 08:38:03:    with respect to x_3
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_3(x_3) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | x_3  |     0.1     | 0.1568514030170806 |      1      | float |
    INFO - 08:38:03:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 1584.55 it/sec, obj=0.925]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   7%|▋         | 2/30 [00:00<00:00, 439.29 it/sec, obj=0.925]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  10%|█         | 3/30 [00:00<00:00, 495.60 it/sec, obj=0.925]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  13%|█▎        | 4/30 [00:00<00:00, 421.36 it/sec, obj=0.925]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  17%|█▋        | 5/30 [00:00<00:00, 380.80 it/sec, obj=0.925]
    INFO - 08:38:03:
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: 8
    INFO - 08:38:03:       Message: Positive directional derivative for linesearch
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:38:03:    Solution:
    INFO - 08:38:03:       The solution is feasible.
    INFO - 08:38:03:       Objective: 0.9248487208054739
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_3 = [-7.39035698e-01 -2.60964302e-01  4.44089210e-16 -1.83244349e-01]
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:       | x_3  |     0.1     | 0.1565167823694067 |      1      | float |
    INFO - 08:38:03:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: *** End PropulsionScenario execution (time: 0:00:00.027624) ***
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:03: AerodynamicsScenario
    INFO - 08:38:03:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize -y_24(x_2)
    INFO - 08:38:03:    with respect to x_2
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_2(x_2) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:03:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 912.80 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   7%|▋         | 2/30 [00:00<00:00, 361.25 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  10%|█         | 3/30 [00:00<00:00, 418.50 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  13%|█▎        | 4/30 [00:00<00:00, 445.40 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  17%|█▋        | 5/30 [00:00<00:00, 465.26 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  20%|██        | 6/30 [00:00<00:00, 479.35 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  23%|██▎       | 7/30 [00:00<00:00, 485.32 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  27%|██▋       | 8/30 [00:00<00:00, 493.69 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  30%|███       | 9/30 [00:00<00:00, 499.98 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  33%|███▎      | 10/30 [00:00<00:00, 505.56 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  37%|███▋      | 11/30 [00:00<00:00, 509.68 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  40%|████      | 12/30 [00:00<00:00, 513.78 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  43%|████▎     | 13/30 [00:00<00:00, 485.96 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  47%|████▋     | 14/30 [00:00<00:00, 490.80 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  50%|█████     | 15/30 [00:00<00:00, 494.75 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  53%|█████▎    | 16/30 [00:00<00:00, 498.39 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  57%|█████▋    | 17/30 [00:00<00:00, 501.63 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  60%|██████    | 18/30 [00:00<00:00, 504.66 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  63%|██████▎   | 19/30 [00:00<00:00, 507.27 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  67%|██████▋   | 20/30 [00:00<00:00, 505.55 it/sec, obj=-7.02]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  70%|███████   | 21/30 [00:00<00:00, 507.83 it/sec, obj=-7.02]
    INFO - 08:38:03:
 WARNING - 08:38:03: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: 8
    INFO - 08:38:03:       Message: Positive directional derivative for linesearch
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 101
    INFO - 08:38:03:    Solution:
 WARNING - 08:38:03:       The solution is not feasible.
    INFO - 08:38:03:       Objective: -7.02270500556782
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_2 = 0.010000000000000009
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:03:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:03: *** End AerodynamicsScenario execution (time: 0:00:00.067529) ***
    INFO - 08:38:03:
    INFO - 08:38:03: *** Start StructureScenario execution ***
    INFO - 08:38:03: StructureScenario
    INFO - 08:38:03:    Disciplines: SobieskiStructure
    INFO - 08:38:03:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:03: Optimization problem:
    INFO - 08:38:03:    minimize -y_11(x_1)
    INFO - 08:38:03:    with respect to x_1
    INFO - 08:38:03:    subject to constraints:
    INFO - 08:38:03:       g_1(x_1) <= 0.0
    INFO - 08:38:03:    over the design space:
    INFO - 08:38:03:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:03:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03:    | x_1[0] |     0.1     | 0.1966804666509251 |     0.4     | float |
    INFO - 08:38:03:    | x_1[1] |     0.75    | 0.7500000000000002 |     1.25    | float |
    INFO - 08:38:03:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:03: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:03: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   3%|▎         | 1/30 [00:00<00:00, 551.95 it/sec, obj=-.511]
    INFO - 08:38:03:
    INFO - 08:38:03: ...   7%|▋         | 2/30 [00:00<00:00, 246.54 it/sec, obj=-.511]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  10%|█         | 3/30 [00:00<00:00, 225.10 it/sec, obj=-.511]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  13%|█▎        | 4/30 [00:00<00:00, 209.01 it/sec, obj=-.512]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  17%|█▋        | 5/30 [00:00<00:00, 200.43 it/sec, obj=-.514]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  20%|██        | 6/30 [00:00<00:00, 195.40 it/sec, obj=-.514]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  23%|██▎       | 7/30 [00:00<00:00, 192.23 it/sec, obj=-.514]
    INFO - 08:38:03:
    INFO - 08:38:03: ...  27%|██▋       | 8/30 [00:00<00:00, 203.54 it/sec, obj=-.514]
    INFO - 08:38:03:
    INFO - 08:38:03:
    INFO - 08:38:03: Optimization result:
    INFO - 08:38:03:    Optimizer info:
    INFO - 08:38:03:       Status: None
    INFO - 08:38:03:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:03:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:38:03:    Solution:
    INFO - 08:38:03:       The solution is feasible.
    INFO - 08:38:03:       Objective: -0.513726760773942
    INFO - 08:38:03:       Standardized constraints:
    INFO - 08:38:03:          g_1 = [-0.01548685 -0.01416113 -0.02330956 -0.03193823 -0.03899885 -0.23451358
    INFO - 08:38:03:  -0.00548642]
    INFO - 08:38:03:       Design space:
    INFO - 08:38:03:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:03:       | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:03:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:03:       | x_1[0] |     0.1     | 0.399999999999998 |     0.4     | float |
    INFO - 08:38:03:       | x_1[1] |     0.75    |        0.75       |     1.25    | float |
    INFO - 08:38:03:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:03: *** End StructureScenario execution (time: 0:00:00.050821) ***
 WARNING - 08:38:04: MDAJacobi has reached its maximum number of iterations but the normed residual 1.2199811115207897e-12 is still above the tolerance 1e-14.
    INFO - 08:38:04: ...  36%|███▌      | 18/50 [00:04<00:08,  3.79 it/sec, obj=-3.12e+3]
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start PropulsionScenario execution ***
    INFO - 08:38:04: PropulsionScenario
    INFO - 08:38:04:    Disciplines: SobieskiPropulsion
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize y_34(x_3)
    INFO - 08:38:04:    with respect to x_3
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_3(x_3) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | x_3  |     0.1     | 0.1565167823694067 |      1      | float |
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 1168.00 it/sec, obj=0.926]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   7%|▋         | 2/30 [00:00<00:00, 416.54 it/sec, obj=0.926]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  10%|█         | 3/30 [00:00<00:00, 394.41 it/sec, obj=0.926]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  13%|█▎        | 4/30 [00:00<00:00, 365.68 it/sec, obj=0.926]
    INFO - 08:38:04:
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: None
    INFO - 08:38:04:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 6
    INFO - 08:38:04:    Solution:
    INFO - 08:38:04:       The solution is feasible.
    INFO - 08:38:04:       Objective: 0.9260930407323242
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_3 = [-0.74664123 -0.25335877  0.         -0.18293534]
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | x_3  |     0.1     | 0.1566358333933884 |      1      | float |
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: *** End PropulsionScenario execution (time: 0:00:00.022024) ***
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:04: AerodynamicsScenario
    INFO - 08:38:04:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize -y_24(x_2)
    INFO - 08:38:04:    with respect to x_2
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_2(x_2) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 952.60 it/sec, obj=-6.93]
    INFO - 08:38:04:
 WARNING - 08:38:04: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: 8
    INFO - 08:38:04:       Message: Positive directional derivative for linesearch
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:04:    Solution:
 WARNING - 08:38:04:       The solution is not feasible.
    INFO - 08:38:04:       Objective: -6.930317408581886
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_2 = 0.003940644676942773
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04: *** End AerodynamicsScenario execution (time: 0:00:00.019516) ***
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start StructureScenario execution ***
    INFO - 08:38:04: StructureScenario
    INFO - 08:38:04:    Disciplines: SobieskiStructure
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize -y_11(x_1)
    INFO - 08:38:04:    with respect to x_1
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_1(x_1) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:04:    | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:04:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:04:    | x_1[0] |     0.1     | 0.399999999999998 |     0.4     | float |
    INFO - 08:38:04:    | x_1[1] |     0.75    |        0.75       |     1.25    | float |
    INFO - 08:38:04:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 564.89 it/sec, obj=-.496]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   7%|▋         | 2/30 [00:00<00:00, 247.94 it/sec, obj=-.453]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  10%|█         | 3/30 [00:00<00:00, 225.50 it/sec, obj=-.468]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  13%|█▎        | 4/30 [00:00<00:00, 209.67 it/sec, obj=-.494]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  17%|█▋        | 5/30 [00:00<00:00, 201.55 it/sec, obj=-.494]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  20%|██        | 6/30 [00:00<00:00, 196.70 it/sec, obj=-.494]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  23%|██▎       | 7/30 [00:00<00:00, 193.11 it/sec, obj=-.494]
    INFO - 08:38:04:
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: None
    INFO - 08:38:04:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:38:04:    Solution:
    INFO - 08:38:04:       The solution is feasible.
    INFO - 08:38:04:       Objective: -0.4941412384559267
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_1 = [-9.42468326e-12 -7.04550559e-03 -1.91761938e-02 -2.92091460e-02
    INFO - 08:38:04:  -3.70455056e-02 -2.14873097e-01 -2.51269033e-02]
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | x_1[0] |     0.1     | 0.2773012966614927 |     0.4     | float |
    INFO - 08:38:04:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:04:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: *** End StructureScenario execution (time: 0:00:00.047361) ***
 WARNING - 08:38:04: MDAJacobi has reached its maximum number of iterations but the normed residual 6.16603735957051e-14 is still above the tolerance 1e-14.
    INFO - 08:38:04: ...  38%|███▊      | 19/50 [00:05<00:08,  3.74 it/sec, obj=-2.98e+3]
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start PropulsionScenario execution ***
    INFO - 08:38:04: PropulsionScenario
    INFO - 08:38:04:    Disciplines: SobieskiPropulsion
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize y_34(x_3)
    INFO - 08:38:04:    with respect to x_3
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_3(x_3) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | x_3  |     0.1     | 0.1566358333933884 |      1      | float |
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 1749.81 it/sec, obj=0.925]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   7%|▋         | 2/30 [00:00<00:00, 445.00 it/sec, obj=0.925]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  10%|█         | 3/30 [00:00<00:00, 501.27 it/sec, obj=0.925]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  13%|█▎        | 4/30 [00:00<00:00, 356.80 it/sec, obj=0.925]
    INFO - 08:38:04:
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: 8
    INFO - 08:38:04:       Message: Positive directional derivative for linesearch
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:38:04:    Solution:
    INFO - 08:38:04:       The solution is feasible.
    INFO - 08:38:04:       Objective: 0.9246747521009808
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_3 = [-0.75608229 -0.24391771  0.         -0.18323903]
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | x_3  |     0.1     | 0.1564585984470269 |      1      | float |
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: *** End PropulsionScenario execution (time: 0:00:00.024434) ***
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:04: AerodynamicsScenario
    INFO - 08:38:04:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize -y_24(x_2)
    INFO - 08:38:04:    with respect to x_2
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_2(x_2) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 892.41 it/sec, obj=-7.07]
    INFO - 08:38:04:
 WARNING - 08:38:04: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: 8
    INFO - 08:38:04:       Message: Positive directional derivative for linesearch
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:04:    Solution:
 WARNING - 08:38:04:       The solution is not feasible.
    INFO - 08:38:04:       Objective: -7.069023027096757
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_2 = 0.000318160923906019
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04: *** End AerodynamicsScenario execution (time: 0:00:00.015047) ***
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start StructureScenario execution ***
    INFO - 08:38:04: StructureScenario
    INFO - 08:38:04:    Disciplines: SobieskiStructure
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize -y_11(x_1)
    INFO - 08:38:04:    with respect to x_1
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_1(x_1) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | x_1[0] |     0.1     | 0.2773012966614927 |     0.4     | float |
    INFO - 08:38:04:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:04:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 552.25 it/sec, obj=-.498]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   7%|▋         | 2/30 [00:00<00:00, 245.01 it/sec, obj=-.497]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  10%|█         | 3/30 [00:00<00:00, 223.34 it/sec, obj=-.497]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  13%|█▎        | 4/30 [00:00<00:00, 207.87 it/sec, obj=-.497]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  17%|█▋        | 5/30 [00:00<00:00, 199.98 it/sec, obj=-.497]
    INFO - 08:38:04:
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: None
    INFO - 08:38:04:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 6
    INFO - 08:38:04:    Solution:
    INFO - 08:38:04:       The solution is feasible.
    INFO - 08:38:04:       Objective: -0.497037691783115
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_1 = [-9.09050613e-12 -1.07487688e-02 -2.33423649e-02 -3.32086703e-02
    INFO - 08:38:04:  -4.07487688e-02 -1.88503298e-01 -5.14967021e-02]
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | x_1[0] |     0.1     | 0.2183972025511597 |     0.4     | float |
    INFO - 08:38:04:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:04:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: *** End StructureScenario execution (time: 0:00:00.036501) ***
    INFO - 08:38:04: ...  40%|████      | 20/50 [00:05<00:07,  3.79 it/sec, obj=-3.05e+3]
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start PropulsionScenario execution ***
    INFO - 08:38:04: PropulsionScenario
    INFO - 08:38:04:    Disciplines: SobieskiPropulsion
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize y_34(x_3)
    INFO - 08:38:04:    with respect to x_3
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_3(x_3) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | x_3  |     0.1     | 0.1564585984470269 |      1      | float |
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 1655.86 it/sec, obj=0.926]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   7%|▋         | 2/30 [00:00<00:00, 445.30 it/sec, obj=0.926]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  10%|█         | 3/30 [00:00<00:00, 407.19 it/sec, obj=0.926]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  13%|█▎        | 4/30 [00:00<00:00, 422.81 it/sec, obj=0.926]
    INFO - 08:38:04:
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: None
    INFO - 08:38:04:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:04:    Solution:
    INFO - 08:38:04:       The solution is feasible.
    INFO - 08:38:04:       Objective: 0.9262192190094318
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_3 = [-7.56212251e-01 -2.43787749e-01  1.33226763e-15 -1.83144736e-01]
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | x_3  |     0.1     | 0.1568558637597278 |      1      | float |
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: *** End PropulsionScenario execution (time: 0:00:00.020720) ***
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:04: AerodynamicsScenario
    INFO - 08:38:04:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize -y_24(x_2)
    INFO - 08:38:04:    with respect to x_2
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_2(x_2) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 935.81 it/sec, obj=-7.11]
    INFO - 08:38:04:
 WARNING - 08:38:04: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: 8
    INFO - 08:38:04:       Message: Positive directional derivative for linesearch
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:04:    Solution:
 WARNING - 08:38:04:       The solution is not feasible.
    INFO - 08:38:04:       Objective: -7.105310241159008
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_2 = 0.004483361360150706
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04: *** End AerodynamicsScenario execution (time: 0:00:00.019413) ***
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start StructureScenario execution ***
    INFO - 08:38:04: StructureScenario
    INFO - 08:38:04:    Disciplines: SobieskiStructure
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize -y_11(x_1)
    INFO - 08:38:04:    with respect to x_1
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_1(x_1) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | x_1[0] |     0.1     | 0.2183972025511597 |     0.4     | float |
    INFO - 08:38:04:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:04:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 562.24 it/sec, obj=-.508]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   7%|▋         | 2/30 [00:00<00:00, 252.48 it/sec, obj=-.508]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  10%|█         | 3/30 [00:00<00:00, 227.29 it/sec, obj=-.508]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  13%|█▎        | 4/30 [00:00<00:00, 210.82 it/sec, obj=-.509]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  17%|█▋        | 5/30 [00:00<00:00, 202.19 it/sec, obj=-.51]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  20%|██        | 6/30 [00:00<00:00, 197.03 it/sec, obj=-.51]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  23%|██▎       | 7/30 [00:00<00:00, 193.58 it/sec, obj=-.51]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  27%|██▋       | 8/30 [00:00<00:00, 191.00 it/sec, obj=-.51]
    INFO - 08:38:04:
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: None
    INFO - 08:38:04:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:38:04:    Solution:
    INFO - 08:38:04:       The solution is feasible.
    INFO - 08:38:04:       Objective: -0.5096499735492513
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_1 = [-1.86328730e-11 -8.70395601e-03 -2.10419505e-02 -3.10002725e-02
    INFO - 08:38:04:  -3.87039560e-02 -2.10032876e-01 -2.99671242e-02]
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | x_1[0] |     0.1     | 0.3286625083683662 |     0.4     | float |
    INFO - 08:38:04:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:04:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: *** End StructureScenario execution (time: 0:00:00.052822) ***
    INFO - 08:38:04: ...  42%|████▏     | 21/50 [00:05<00:07,  3.83 it/sec, obj=-3.13e+3]
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start PropulsionScenario execution ***
    INFO - 08:38:04: PropulsionScenario
    INFO - 08:38:04:    Disciplines: SobieskiPropulsion
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize y_34(x_3)
    INFO - 08:38:04:    with respect to x_3
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_3(x_3) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | x_3  |     0.1     | 0.1568558637597278 |      1      | float |
    INFO - 08:38:04:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 1700.16 it/sec, obj=0.93]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   7%|▋         | 2/30 [00:00<00:00, 451.75 it/sec, obj=0.93]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  10%|█         | 3/30 [00:00<00:00, 417.25 it/sec, obj=0.93]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  13%|█▎        | 4/30 [00:00<00:00, 380.13 it/sec, obj=0.93]
    INFO - 08:38:04:
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: None
    INFO - 08:38:04:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 6
    INFO - 08:38:04:    Solution:
    INFO - 08:38:04:       The solution is feasible.
    INFO - 08:38:04:       Objective: 0.9298848804117004
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_3 = [-7.28129483e-01 -2.71870517e-01 -3.33066907e-16 -1.82582293e-01]
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:       | x_3  |     0.1     | 0.1575207759444829 |      1      | float |
    INFO - 08:38:04:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: *** End PropulsionScenario execution (time: 0:00:00.021438) ***
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:04: AerodynamicsScenario
    INFO - 08:38:04:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize -y_24(x_2)
    INFO - 08:38:04:    with respect to x_2
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_2(x_2) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:04:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 937.48 it/sec, obj=-7.04]
    INFO - 08:38:04:
 WARNING - 08:38:04: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: 8
    INFO - 08:38:04:       Message: Positive directional derivative for linesearch
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:04:    Solution:
 WARNING - 08:38:04:       The solution is not feasible.
    INFO - 08:38:04:       Objective: -7.039882800664662
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_2 = 0.010000000000000009
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:04:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:04: *** End AerodynamicsScenario execution (time: 0:00:00.013680) ***
    INFO - 08:38:04:
    INFO - 08:38:04: *** Start StructureScenario execution ***
    INFO - 08:38:04: StructureScenario
    INFO - 08:38:04:    Disciplines: SobieskiStructure
    INFO - 08:38:04:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:04: Optimization problem:
    INFO - 08:38:04:    minimize -y_11(x_1)
    INFO - 08:38:04:    with respect to x_1
    INFO - 08:38:04:    subject to constraints:
    INFO - 08:38:04:       g_1(x_1) <= 0.0
    INFO - 08:38:04:    over the design space:
    INFO - 08:38:04:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:04:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04:    | x_1[0] |     0.1     | 0.3286625083683662 |     0.4     | float |
    INFO - 08:38:04:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:38:04:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:38:04: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:04: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   3%|▎         | 1/30 [00:00<00:00, 575.35 it/sec, obj=-.518]
    INFO - 08:38:04:
    INFO - 08:38:04: ...   7%|▋         | 2/30 [00:00<00:00, 252.52 it/sec, obj=-.518]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  10%|█         | 3/30 [00:00<00:00, 229.01 it/sec, obj=-.518]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  13%|█▎        | 4/30 [00:00<00:00, 211.98 it/sec, obj=-.519]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  17%|█▋        | 5/30 [00:00<00:00, 202.95 it/sec, obj=-.519]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  20%|██        | 6/30 [00:00<00:00, 185.97 it/sec, obj=-.519]
    INFO - 08:38:04:
    INFO - 08:38:04: ...  23%|██▎       | 7/30 [00:00<00:00, 199.24 it/sec, obj=-.519]
    INFO - 08:38:04:
    INFO - 08:38:04:
    INFO - 08:38:04: Optimization result:
    INFO - 08:38:04:    Optimizer info:
    INFO - 08:38:04:       Status: None
    INFO - 08:38:04:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:04:       Number of calls to the objective function by the optimizer: 19
    INFO - 08:38:04:    Solution:
    INFO - 08:38:04:       The solution is feasible.
    INFO - 08:38:04:       Objective: -0.5190875972795496
    INFO - 08:38:04:       Standardized constraints:
    INFO - 08:38:04:          g_1 = [-0.02011083 -0.01960331 -0.02827601 -0.0363361  -0.0428997  -0.22075499
    INFO - 08:38:04:  -0.01924501]
    INFO - 08:38:04:       Design space:
    INFO - 08:38:04:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:04:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:04:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:04:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:04:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:04:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:04: *** End StructureScenario execution (time: 0:00:00.046178) ***
 WARNING - 08:38:05: MDAJacobi has reached its maximum number of iterations but the normed residual 2.6870836615612218e-14 is still above the tolerance 1e-14.
    INFO - 08:38:05: ...  44%|████▍     | 22/50 [00:05<00:07,  3.79 it/sec, obj=-3.16e+3]
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start PropulsionScenario execution ***
    INFO - 08:38:05: PropulsionScenario
    INFO - 08:38:05:    Disciplines: SobieskiPropulsion
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize y_34(x_3)
    INFO - 08:38:05:    with respect to x_3
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_3(x_3) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:    | x_3  |     0.1     | 0.1575207759444829 |      1      | float |
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 1814.15 it/sec, obj=0.939]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   7%|▋         | 2/30 [00:00<00:00, 446.68 it/sec, obj=0.938]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: 8
    INFO - 08:38:05:       Message: Positive directional derivative for linesearch
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 3
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: 0.9379677947782575
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_3 = [-0.74957959 -0.25042041  0.         -0.18095404]
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:       | x_3  |     0.1     | 0.1587100075948109 |      1      | float |
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05: *** End PropulsionScenario execution (time: 0:00:00.017286) ***
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:05: AerodynamicsScenario
    INFO - 08:38:05:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize -y_24(x_2)
    INFO - 08:38:05:    with respect to x_2
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_2(x_2) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 942.33 it/sec, obj=-7.31]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: 8
    INFO - 08:38:05:       Message: Positive directional derivative for linesearch
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: -7.305260627779247
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_2 = -0.00021870912080435012
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05: *** End AerodynamicsScenario execution (time: 0:00:00.013709) ***
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start StructureScenario execution ***
    INFO - 08:38:05: StructureScenario
    INFO - 08:38:05:    Disciplines: SobieskiStructure
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize -y_11(x_1)
    INFO - 08:38:05:    with respect to x_1
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_1(x_1) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:05:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 568.10 it/sec, obj=-.523]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   7%|▋         | 2/30 [00:00<00:00, 246.12 it/sec, obj=-.511]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  10%|█         | 3/30 [00:00<00:00, 224.12 it/sec, obj=-.522]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  13%|█▎        | 4/30 [00:00<00:00, 208.88 it/sec, obj=-.522]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  17%|█▋        | 5/30 [00:00<00:00, 198.69 it/sec, obj=-.522]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  20%|██        | 6/30 [00:00<00:00, 194.37 it/sec, obj=-.522]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: None
    INFO - 08:38:05:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: -0.5220208182651543
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_1 = [-1.55431223e-15 -1.55367285e-02 -2.87288195e-02 -3.83796668e-02
    INFO - 08:38:05:  -4.55367285e-02 -1.69264987e-01 -7.07350125e-02]
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:05:       | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:05:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:05:       | x_1[0] |     0.1     | 0.325598904818412 |     0.4     | float |
    INFO - 08:38:05:       | x_1[1] |     0.75    |        0.75       |     1.25    | float |
    INFO - 08:38:05:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:05: *** End StructureScenario execution (time: 0:00:00.041982) ***
    INFO - 08:38:05: ...  46%|████▌     | 23/50 [00:06<00:07,  3.81 it/sec, obj=-3.3e+3]
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start PropulsionScenario execution ***
    INFO - 08:38:05: PropulsionScenario
    INFO - 08:38:05:    Disciplines: SobieskiPropulsion
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize y_34(x_3)
    INFO - 08:38:05:    with respect to x_3
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_3(x_3) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:    | x_3  |     0.1     | 0.1587100075948109 |      1      | float |
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 1826.79 it/sec, obj=0.935]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   7%|▋         | 2/30 [00:00<00:00, 446.84 it/sec, obj=0.935]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  10%|█         | 3/30 [00:00<00:00, 501.75 it/sec, obj=0.935]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  13%|█▎        | 4/30 [00:00<00:00, 357.59 it/sec, obj=0.935]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  17%|█▋        | 5/30 [00:00<00:00, 346.01 it/sec, obj=0.935]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  20%|██        | 6/30 [00:00<00:00, 337.28 it/sec, obj=0.935]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: None
    INFO - 08:38:05:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 11
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: 0.935121921555331
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_3 = [-7.56100392e-01 -2.43899608e-01 -2.22044605e-16 -1.81429385e-01]
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:       | x_3  |     0.1     | 0.1581950234859282 |      1      | float |
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05: *** End PropulsionScenario execution (time: 0:00:00.028765) ***
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:05: AerodynamicsScenario
    INFO - 08:38:05:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize -y_24(x_2)
    INFO - 08:38:05:    with respect to x_2
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_2(x_2) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 970.23 it/sec, obj=-7.86]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   7%|▋         | 2/30 [00:00<00:00, 387.82 it/sec, obj=-7.86]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  10%|█         | 3/30 [00:00<00:00, 440.33 it/sec, obj=-7.86]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: None
    INFO - 08:38:05:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: -7.86231588509421
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_2 = 2.8614888236688785e-12
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05: *** End AerodynamicsScenario execution (time: 0:00:00.016971) ***
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start StructureScenario execution ***
    INFO - 08:38:05: StructureScenario
    INFO - 08:38:05:    Disciplines: SobieskiStructure
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize -y_11(x_1)
    INFO - 08:38:05:    with respect to x_1
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_1(x_1) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:05:    | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:05:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:05:    | x_1[0] |     0.1     | 0.325598904818412 |     0.4     | float |
    INFO - 08:38:05:    | x_1[1] |     0.75    |        0.75       |     1.25    | float |
    INFO - 08:38:05:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 586.86 it/sec, obj=-.559]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   7%|▋         | 2/30 [00:00<00:00, 246.14 it/sec, obj=-.559]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  10%|█         | 3/30 [00:00<00:00, 225.42 it/sec, obj=-.559]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  13%|█▎        | 4/30 [00:00<00:00, 209.75 it/sec, obj=-.56]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  17%|█▋        | 5/30 [00:00<00:00, 201.57 it/sec, obj=-.56]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  20%|██        | 6/30 [00:00<00:00, 184.91 it/sec, obj=-.56]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  23%|██▎       | 7/30 [00:00<00:00, 198.18 it/sec, obj=-.56]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: None
    INFO - 08:38:05:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 19
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: -0.5601247943315961
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_1 = [-0.01664121 -0.03212609 -0.04323155 -0.05097099 -0.05657902 -0.13912773
    INFO - 08:38:05:  -0.10087227]
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:05:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05: *** End StructureScenario execution (time: 0:00:00.046609) ***
    INFO - 08:38:05: ...  48%|████▊     | 24/50 [00:06<00:06,  3.84 it/sec, obj=-3.81e+3]
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start PropulsionScenario execution ***
    INFO - 08:38:05: PropulsionScenario
    INFO - 08:38:05:    Disciplines: SobieskiPropulsion
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize y_34(x_3)
    INFO - 08:38:05:    with respect to x_3
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_3(x_3) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:    | x_3  |     0.1     | 0.1581950234859282 |      1      | float |
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 1050.41 it/sec, obj=0.977]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   7%|▋         | 2/30 [00:00<00:00, 413.93 it/sec, obj=0.973]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  10%|█         | 3/30 [00:00<00:00, 388.33 it/sec, obj=0.973]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  13%|█▎        | 4/30 [00:00<00:00, 349.74 it/sec, obj=0.973]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: None
    INFO - 08:38:05:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: 0.972933934150323
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_3 = [-7.23358532e-01 -2.76641468e-01  4.44089210e-16 -1.74708160e-01]
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:       | x_3  |     0.1     | 0.1657328191000955 |      1      | float |
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05: *** End PropulsionScenario execution (time: 0:00:00.022425) ***
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:05: AerodynamicsScenario
    INFO - 08:38:05:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize -y_24(x_2)
    INFO - 08:38:05:    with respect to x_2
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_2(x_2) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 964.21 it/sec, obj=-7.41]
    INFO - 08:38:05:
 WARNING - 08:38:05: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: 8
    INFO - 08:38:05:       Message: Positive directional derivative for linesearch
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:05:    Solution:
 WARNING - 08:38:05:       The solution is not feasible.
    INFO - 08:38:05:       Objective: -7.409275221655249
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_2 = 0.006036072170980011
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05: *** End AerodynamicsScenario execution (time: 0:00:00.014451) ***
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start StructureScenario execution ***
    INFO - 08:38:05: StructureScenario
    INFO - 08:38:05:    Disciplines: SobieskiStructure
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize -y_11(x_1)
    INFO - 08:38:05:    with respect to x_1
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_1(x_1) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:05:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 582.14 it/sec, obj=-.562]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: 8
    INFO - 08:38:05:       Message: Positive directional derivative for linesearch
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: -0.5619989624824399
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_1 = [-0.03540919 -0.04491466 -0.0529267  -0.0587769  -0.0631116  -0.14104574
    INFO - 08:38:05:  -0.09895426]
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:05:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05: *** End StructureScenario execution (time: 0:00:00.016972) ***
    INFO - 08:38:05: ...  50%|█████     | 25/50 [00:06<00:06,  3.82 it/sec, obj=-3.55e+3]
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start PropulsionScenario execution ***
    INFO - 08:38:05: PropulsionScenario
    INFO - 08:38:05:    Disciplines: SobieskiPropulsion
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize y_34(x_3)
    INFO - 08:38:05:    with respect to x_3
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_3(x_3) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:    | x_3  |     0.1     | 0.1657328191000955 |      1      | float |
    INFO - 08:38:05:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 1892.74 it/sec, obj=0.933]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   7%|▋         | 2/30 [00:00<00:00, 450.90 it/sec, obj=0.936]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  10%|█         | 3/30 [00:00<00:00, 504.22 it/sec, obj=0.934]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  13%|█▎        | 4/30 [00:00<00:00, 428.24 it/sec, obj=0.936]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  17%|█▋        | 5/30 [00:00<00:00, 391.73 it/sec, obj=0.936]
    INFO - 08:38:05:
    INFO - 08:38:05: ...  20%|██        | 6/30 [00:00<00:00, 403.56 it/sec, obj=0.936]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: None
    INFO - 08:38:05:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: 0.9363519210387984
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_3 = [-7.81529488e-01 -2.18470512e-01  1.11022302e-15 -1.81410028e-01]
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05:       | x_3  |     0.1     | 0.1585812596308921 |      1      | float |
    INFO - 08:38:05:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:05: *** End PropulsionScenario execution (time: 0:00:00.025772) ***
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:05: AerodynamicsScenario
    INFO - 08:38:05:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize -y_24(x_2)
    INFO - 08:38:05:    with respect to x_2
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_2(x_2) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 931.86 it/sec, obj=-7.88]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: 8
    INFO - 08:38:05:       Message: Positive directional derivative for linesearch
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: -7.883970793383617
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_2 = -0.00042119473052437684
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:05: *** End AerodynamicsScenario execution (time: 0:00:00.013669) ***
    INFO - 08:38:05:
    INFO - 08:38:05: *** Start StructureScenario execution ***
    INFO - 08:38:05: StructureScenario
    INFO - 08:38:05:    Disciplines: SobieskiStructure
    INFO - 08:38:05:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:05: Optimization problem:
    INFO - 08:38:05:    minimize -y_11(x_1)
    INFO - 08:38:05:    with respect to x_1
    INFO - 08:38:05:    subject to constraints:
    INFO - 08:38:05:       g_1(x_1) <= 0.0
    INFO - 08:38:05:    over the design space:
    INFO - 08:38:05:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:05:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:05: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:05:
    INFO - 08:38:05: ...   3%|▎         | 1/30 [00:00<00:00, 581.25 it/sec, obj=-.539]
    INFO - 08:38:05:
    INFO - 08:38:05:
    INFO - 08:38:05: Optimization result:
    INFO - 08:38:05:    Optimizer info:
    INFO - 08:38:05:       Status: 8
    INFO - 08:38:05:       Message: Positive directional derivative for linesearch
    INFO - 08:38:05:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:05:    Solution:
    INFO - 08:38:05:       The solution is feasible.
    INFO - 08:38:05:       Objective: -0.5394075255057361
    INFO - 08:38:05:       Standardized constraints:
    INFO - 08:38:05:          g_1 = [-0.01924809 -0.03452884 -0.04528293 -0.05273176 -0.05811281 -0.13393449
    INFO - 08:38:05:  -0.10606551]
    INFO - 08:38:05:       Design space:
    INFO - 08:38:05:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:05:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:05:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:05:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:05: *** End StructureScenario execution (time: 0:00:00.016435) ***
    INFO - 08:38:06: ...  52%|█████▏    | 26/50 [00:06<00:06,  3.87 it/sec, obj=-3.72e+3]
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start PropulsionScenario execution ***
    INFO - 08:38:06: PropulsionScenario
    INFO - 08:38:06:    Disciplines: SobieskiPropulsion
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize y_34(x_3)
    INFO - 08:38:06:    with respect to x_3
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_3(x_3) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:    | x_3  |     0.1     | 0.1585812596308921 |      1      | float |
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 1041.80 it/sec, obj=1.02]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   7%|▋         | 2/30 [00:00<00:00, 412.18 it/sec, obj=1]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  10%|█         | 3/30 [00:00<00:00, 392.91 it/sec, obj=1]
    INFO - 08:38:06:
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: 8
    INFO - 08:38:06:       Message: Positive directional derivative for linesearch
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:38:06:    Solution:
    INFO - 08:38:06:       The solution is feasible.
    INFO - 08:38:06:       Objective: 1.0031359599153784
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_3 = [-0.71510445 -0.28489555  0.         -0.17957352]
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:       | x_3  |     0.1     | 0.1877488268563172 |      1      | float |
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06: *** End PropulsionScenario execution (time: 0:00:00.020700) ***
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:06: AerodynamicsScenario
    INFO - 08:38:06:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize -y_24(x_2)
    INFO - 08:38:06:    with respect to x_2
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_2(x_2) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 964.43 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   7%|▋         | 2/30 [00:00<00:00, 393.35 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  10%|█         | 3/30 [00:00<00:00, 446.39 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  13%|█▎        | 4/30 [00:00<00:00, 469.57 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  17%|█▋        | 5/30 [00:00<00:00, 486.66 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  20%|██        | 6/30 [00:00<00:00, 496.87 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  23%|██▎       | 7/30 [00:00<00:00, 506.00 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  27%|██▋       | 8/30 [00:00<00:00, 512.44 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  30%|███       | 9/30 [00:00<00:00, 517.52 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  33%|███▎      | 10/30 [00:00<00:00, 522.16 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  37%|███▋      | 11/30 [00:00<00:00, 525.45 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  40%|████      | 12/30 [00:00<00:00, 528.69 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  43%|████▎     | 13/30 [00:00<00:00, 496.37 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  47%|████▋     | 14/30 [00:00<00:00, 500.13 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  50%|█████     | 15/30 [00:00<00:00, 504.08 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  53%|█████▎    | 16/30 [00:00<00:00, 507.27 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  57%|█████▋    | 17/30 [00:00<00:00, 509.91 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  60%|██████    | 18/30 [00:00<00:00, 512.54 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  63%|██████▎   | 19/30 [00:00<00:00, 514.73 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  67%|██████▋   | 20/30 [00:00<00:00, 517.07 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  70%|███████   | 21/30 [00:00<00:00, 518.96 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  73%|███████▎  | 22/30 [00:00<00:00, 521.13 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  77%|███████▋  | 23/30 [00:00<00:00, 521.95 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  80%|████████  | 24/30 [00:00<00:00, 506.14 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  83%|████████▎ | 25/30 [00:00<00:00, 506.34 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  87%|████████▋ | 26/30 [00:00<00:00, 495.42 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  90%|█████████ | 27/30 [00:00<00:00, 497.86 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  93%|█████████▎| 28/30 [00:00<00:00, 499.84 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  97%|█████████▋| 29/30 [00:00<00:00, 502.01 it/sec, obj=-6.79]
    INFO - 08:38:06:
    INFO - 08:38:06: ... 100%|██████████| 30/30 [00:00<00:00, 503.88 it/sec, obj=-6.79]
    INFO - 08:38:06:
 WARNING - 08:38:06: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: None
    INFO - 08:38:06:       Message: Maximum number of iterations reached. GEMSEO Stopped the driver
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 41
    INFO - 08:38:06:    Solution:
 WARNING - 08:38:06:       The solution is not feasible.
    INFO - 08:38:06:       Objective: -6.79485879088523
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_2 = 0.008893686347979601
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06: *** End AerodynamicsScenario execution (time: 0:00:00.071468) ***
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start StructureScenario execution ***
    INFO - 08:38:06: StructureScenario
    INFO - 08:38:06:    Disciplines: SobieskiStructure
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize -y_11(x_1)
    INFO - 08:38:06:    with respect to x_1
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_1(x_1) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:06:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 573.15 it/sec, obj=-.569]
    INFO - 08:38:06:
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: 8
    INFO - 08:38:06:       Message: Positive directional derivative for linesearch
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:06:    Solution:
    INFO - 08:38:06:       The solution is feasible.
    INFO - 08:38:06:       Objective: -0.5686085799835205
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_1 = [-0.04575176 -0.05189271 -0.05819136 -0.06300356 -0.06664212 -0.14104574
    INFO - 08:38:06:  -0.09895426]
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:06:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06: *** End StructureScenario execution (time: 0:00:00.017647) ***
    INFO - 08:38:06: ...  54%|█████▍    | 27/50 [00:07<00:06,  3.81 it/sec, obj=-3.03e+3]
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start PropulsionScenario execution ***
    INFO - 08:38:06: PropulsionScenario
    INFO - 08:38:06:    Disciplines: SobieskiPropulsion
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize y_34(x_3)
    INFO - 08:38:06:    with respect to x_3
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_3(x_3) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:    | x_3  |     0.1     | 0.1877488268563172 |      1      | float |
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 1757.88 it/sec, obj=0.923]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   7%|▋         | 2/30 [00:00<00:00, 448.64 it/sec, obj=0.935]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  10%|█         | 3/30 [00:00<00:00, 495.41 it/sec, obj=0.925]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  13%|█▎        | 4/30 [00:00<00:00, 425.29 it/sec, obj=0.935]
    INFO - 08:38:06:
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: 8
    INFO - 08:38:06:       Message: Positive directional derivative for linesearch
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:06:    Solution:
    INFO - 08:38:06:       The solution is feasible.
    INFO - 08:38:06:       Objective: 0.9348294004037732
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_3 = [-7.33519921e-01 -2.66480079e-01  2.22044605e-16 -1.81565390e-01]
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:       | x_3  |     0.1     | 0.1582195818570545 |      1      | float |
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06: *** End PropulsionScenario execution (time: 0:00:00.022345) ***
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:06: AerodynamicsScenario
    INFO - 08:38:06:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize -y_24(x_2)
    INFO - 08:38:06:    with respect to x_2
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_2(x_2) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 951.74 it/sec, obj=-7.54]
    INFO - 08:38:06:
 WARNING - 08:38:06: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: 8
    INFO - 08:38:06:       Message: Positive directional derivative for linesearch
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:06:    Solution:
 WARNING - 08:38:06:       The solution is not feasible.
    INFO - 08:38:06:       Objective: -7.536581971763686
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_2 = 0.003845789432150859
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06: *** End AerodynamicsScenario execution (time: 0:00:00.019541) ***
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start StructureScenario execution ***
    INFO - 08:38:06: StructureScenario
    INFO - 08:38:06:    Disciplines: SobieskiStructure
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize -y_11(x_1)
    INFO - 08:38:06:    with respect to x_1
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_1(x_1) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:06:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 578.05 it/sec, obj=-.554]
    INFO - 08:38:06:
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: 8
    INFO - 08:38:06:       Message: Positive directional derivative for linesearch
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:06:    Solution:
    INFO - 08:38:06:       The solution is feasible.
    INFO - 08:38:06:       Objective: -0.5541596344391383
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_1 = [-0.03002038 -0.04178858 -0.05075706 -0.05712515 -0.06178179 -0.1374539
    INFO - 08:38:06:  -0.1025461 ]
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:06:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06: *** End StructureScenario execution (time: 0:00:00.016448) ***
    INFO - 08:38:06: ...  56%|█████▌    | 28/50 [00:07<00:05,  3.81 it/sec, obj=-3.75e+3]
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start PropulsionScenario execution ***
    INFO - 08:38:06: PropulsionScenario
    INFO - 08:38:06:    Disciplines: SobieskiPropulsion
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize y_34(x_3)
    INFO - 08:38:06:    with respect to x_3
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_3(x_3) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:    | x_3  |     0.1     | 0.1582195818570545 |      1      | float |
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 1801.68 it/sec, obj=0.923]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   7%|▋         | 2/30 [00:00<00:00, 453.93 it/sec, obj=0.924]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  10%|█         | 3/30 [00:00<00:00, 508.05 it/sec, obj=0.923]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  13%|█▎        | 4/30 [00:00<00:00, 431.04 it/sec, obj=0.924]
    INFO - 08:38:06:
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: 8
    INFO - 08:38:06:       Message: Positive directional derivative for linesearch
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:06:    Solution:
    INFO - 08:38:06:       The solution is feasible.
    INFO - 08:38:06:       Objective: 0.9239330847904543
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_3 = [-7.66204792e-01 -2.33795208e-01  1.11022302e-15 -1.83255000e-01]
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:       | x_3  |     0.1     | 0.1562447456462877 |      1      | float |
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06: *** End PropulsionScenario execution (time: 0:00:00.022319) ***
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:06: AerodynamicsScenario
    INFO - 08:38:06:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize -y_24(x_2)
    INFO - 08:38:06:    with respect to x_2
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_2(x_2) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 979.06 it/sec, obj=-8.04]
    INFO - 08:38:06:
 WARNING - 08:38:06: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: 8
    INFO - 08:38:06:       Message: Positive directional derivative for linesearch
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:06:    Solution:
 WARNING - 08:38:06:       The solution is not feasible.
    INFO - 08:38:06:       Objective: -8.037578348954822
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_2 = 0.0006201857783338927
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06: *** End AerodynamicsScenario execution (time: 0:00:00.013832) ***
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start StructureScenario execution ***
    INFO - 08:38:06: StructureScenario
    INFO - 08:38:06:    Disciplines: SobieskiStructure
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize -y_11(x_1)
    INFO - 08:38:06:    with respect to x_1
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_1(x_1) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:06:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 576.22 it/sec, obj=-.567]
    INFO - 08:38:06:
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: 8
    INFO - 08:38:06:       Message: Positive directional derivative for linesearch
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:06:    Solution:
    INFO - 08:38:06:       The solution is feasible.
    INFO - 08:38:06:       Objective: -0.5668864104573308
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_1 = [-0.01994294 -0.03469686 -0.04529824 -0.05269087 -0.05804922 -0.13720865
    INFO - 08:38:06:  -0.10279135]
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:06:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06: *** End StructureScenario execution (time: 0:00:00.016434) ***
    INFO - 08:38:06: ...  58%|█████▊    | 29/50 [00:07<00:05,  3.85 it/sec, obj=-3.97e+3]
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start PropulsionScenario execution ***
    INFO - 08:38:06: PropulsionScenario
    INFO - 08:38:06:    Disciplines: SobieskiPropulsion
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize y_34(x_3)
    INFO - 08:38:06:    with respect to x_3
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_3(x_3) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:    | x_3  |     0.1     | 0.1562447456462877 |      1      | float |
    INFO - 08:38:06:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 1876.65 it/sec, obj=0.925]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   7%|▋         | 2/30 [00:00<00:00, 457.69 it/sec, obj=0.925]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  10%|█         | 3/30 [00:00<00:00, 414.28 it/sec, obj=0.925]
    INFO - 08:38:06:
    INFO - 08:38:06: ...  13%|█▎        | 4/30 [00:00<00:00, 378.73 it/sec, obj=0.925]
    INFO - 08:38:06:
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: None
    INFO - 08:38:06:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:06:    Solution:
    INFO - 08:38:06:       The solution is feasible.
    INFO - 08:38:06:       Objective: 0.9253142722206789
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_3 = [-0.75651921 -0.24348079  0.         -0.18305947]
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06:       | x_3  |     0.1     | 0.1565016636061157 |      1      | float |
    INFO - 08:38:06:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:06: *** End PropulsionScenario execution (time: 0:00:00.021453) ***
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:06: AerodynamicsScenario
    INFO - 08:38:06:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize -y_24(x_2)
    INFO - 08:38:06:    with respect to x_2
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_2(x_2) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 973.61 it/sec, obj=-8.02]
    INFO - 08:38:06:
 WARNING - 08:38:06: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: 8
    INFO - 08:38:06:       Message: Positive directional derivative for linesearch
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:06:    Solution:
 WARNING - 08:38:06:       The solution is not feasible.
    INFO - 08:38:06:       Objective: -8.021555394800172
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_2 = 0.005812836863662296
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:06: *** End AerodynamicsScenario execution (time: 0:00:00.013806) ***
    INFO - 08:38:06:
    INFO - 08:38:06: *** Start StructureScenario execution ***
    INFO - 08:38:06: StructureScenario
    INFO - 08:38:06:    Disciplines: SobieskiStructure
    INFO - 08:38:06:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:06: Optimization problem:
    INFO - 08:38:06:    minimize -y_11(x_1)
    INFO - 08:38:06:    with respect to x_1
    INFO - 08:38:06:    subject to constraints:
    INFO - 08:38:06:       g_1(x_1) <= 0.0
    INFO - 08:38:06:    over the design space:
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:06:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:06: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:06:
    INFO - 08:38:06: ...   3%|▎         | 1/30 [00:00<00:00, 570.42 it/sec, obj=-.571]
    INFO - 08:38:06:
    INFO - 08:38:06:
    INFO - 08:38:06: Optimization result:
    INFO - 08:38:06:    Optimizer info:
    INFO - 08:38:06:       Status: 8
    INFO - 08:38:06:       Message: Positive directional derivative for linesearch
    INFO - 08:38:06:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:06:    Solution:
    INFO - 08:38:06:       The solution is feasible.
    INFO - 08:38:06:       Objective: -0.5714501387497389
    INFO - 08:38:06:       Standardized constraints:
    INFO - 08:38:06:          g_1 = [-0.0361015  -0.04585788 -0.05381474 -0.05957403 -0.06382405 -0.13834522
    INFO - 08:38:06:  -0.10165478]
    INFO - 08:38:06:       Design space:
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:06:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:06:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:06: *** End StructureScenario execution (time: 0:00:00.016547) ***
    INFO - 08:38:06: ...  60%|██████    | 30/50 [00:07<00:05,  3.91 it/sec, obj=-3.98e+3]
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start PropulsionScenario execution ***
    INFO - 08:38:07: PropulsionScenario
    INFO - 08:38:07:    Disciplines: SobieskiPropulsion
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize y_34(x_3)
    INFO - 08:38:07:    with respect to x_3
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_3(x_3) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:    | x_3  |     0.1     | 0.1565016636061157 |      1      | float |
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 1884.23 it/sec, obj=0.924]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   7%|▋         | 2/30 [00:00<00:00, 457.42 it/sec, obj=0.924]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  10%|█         | 3/30 [00:00<00:00, 506.54 it/sec, obj=0.924]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  13%|█▎        | 4/30 [00:00<00:00, 432.88 it/sec, obj=0.924]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  17%|█▋        | 5/30 [00:00<00:00, 330.94 it/sec, obj=0.924]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  20%|██        | 6/30 [00:00<00:00, 349.62 it/sec, obj=0.924]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: None
    INFO - 08:38:07:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 10
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: 0.9243145909225192
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_3 = [-7.66888737e-01 -2.33111263e-01  3.10862447e-15 -1.83237818e-01]
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:       | x_3  |     0.1     | 0.1563468897448967 |      1      | float |
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07: *** End PropulsionScenario execution (time: 0:00:00.028025) ***
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:07: AerodynamicsScenario
    INFO - 08:38:07:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize -y_24(x_2)
    INFO - 08:38:07:    with respect to x_2
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_2(x_2) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 985.74 it/sec, obj=-8]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: -7.998758901200273
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_2 = -0.0002149994638178665
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07: *** End AerodynamicsScenario execution (time: 0:00:00.013474) ***
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start StructureScenario execution ***
    INFO - 08:38:07: StructureScenario
    INFO - 08:38:07:    Disciplines: SobieskiStructure
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize -y_11(x_1)
    INFO - 08:38:07:    with respect to x_1
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_1(x_1) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:07:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 576.46 it/sec, obj=-.563]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: -0.5625246653982537
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_1 = [-0.01486789 -0.03070125 -0.04207193 -0.04999962 -0.05574528 -0.14063255
    INFO - 08:38:07:  -0.09936745]
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:07:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07: *** End StructureScenario execution (time: 0:00:00.016403) ***
    INFO - 08:38:07: ...  62%|██████▏   | 31/50 [00:07<00:04,  3.95 it/sec, obj=-3.91e+3]
 WARNING - 08:38:07: MDAJacobi has reached its maximum number of iterations but the normed residual 1.7359275648513364e-14 is still above the tolerance 1e-14.
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start PropulsionScenario execution ***
    INFO - 08:38:07: PropulsionScenario
    INFO - 08:38:07:    Disciplines: SobieskiPropulsion
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize y_34(x_3)
    INFO - 08:38:07:    with respect to x_3
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_3(x_3) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:    | x_3  |     0.1     | 0.1563468897448967 |      1      | float |
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 1823.61 it/sec, obj=0.933]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   7%|▋         | 2/30 [00:00<00:00, 454.82 it/sec, obj=0.932]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  10%|█         | 3/30 [00:00<00:00, 421.20 it/sec, obj=0.932]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  13%|█▎        | 4/30 [00:00<00:00, 435.50 it/sec, obj=0.932]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: None
    INFO - 08:38:07:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: 0.9319923503648384
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_3 = [-7.63375333e-01 -2.36624667e-01 -8.88178420e-16 -1.83239893e-01]
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:       | x_3  |     0.1     | 0.1587995481245701 |      1      | float |
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07: *** End PropulsionScenario execution (time: 0:00:00.020331) ***
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:07: AerodynamicsScenario
    INFO - 08:38:07:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize -y_24(x_2)
    INFO - 08:38:07:    with respect to x_2
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_2(x_2) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 974.51 it/sec, obj=-7.93]
    INFO - 08:38:07:
 WARNING - 08:38:07: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:07:    Solution:
 WARNING - 08:38:07:       The solution is not feasible.
    INFO - 08:38:07:       Objective: -7.926226950541363
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_2 = 0.0005505463417481149
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07: *** End AerodynamicsScenario execution (time: 0:00:00.013608) ***
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start StructureScenario execution ***
    INFO - 08:38:07: StructureScenario
    INFO - 08:38:07:    Disciplines: SobieskiStructure
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize -y_11(x_1)
    INFO - 08:38:07:    with respect to x_1
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_1(x_1) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:07:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 588.67 it/sec, obj=-.566]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: -0.5664268754896733
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_1 = [-0.01967127 -0.03449336 -0.04513721 -0.05255802 -0.05793627 -0.13728934
    INFO - 08:38:07:  -0.10271066]
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:07:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07: *** End StructureScenario execution (time: 0:00:00.016718) ***
    INFO - 08:38:07: ...  64%|██████▍   | 32/50 [00:08<00:04,  3.97 it/sec, obj=-3.85e+3]
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start PropulsionScenario execution ***
    INFO - 08:38:07: PropulsionScenario
    INFO - 08:38:07:    Disciplines: SobieskiPropulsion
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize y_34(x_3)
    INFO - 08:38:07:    with respect to x_3
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_3(x_3) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:    | x_3  |     0.1     | 0.1587995481245701 |      1      | float |
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 1685.14 it/sec, obj=0.924]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   7%|▋         | 2/30 [00:00<00:00, 431.53 it/sec, obj=0.925]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  10%|█         | 3/30 [00:00<00:00, 488.81 it/sec, obj=0.924]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  13%|█▎        | 4/30 [00:00<00:00, 419.40 it/sec, obj=0.925]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: 0.9250811920648444
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_3 = [-7.65283171e-01 -2.34716829e-01 -6.66133815e-16 -1.83082070e-01]
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:       | x_3  |     0.1     | 0.1564492139616135 |      1      | float |
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07: *** End PropulsionScenario execution (time: 0:00:00.022518) ***
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:07: AerodynamicsScenario
    INFO - 08:38:07:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize -y_24(x_2)
    INFO - 08:38:07:    with respect to x_2
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_2(x_2) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 970.68 it/sec, obj=-7.86]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: -7.86423586298679
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_2 = -0.0005009323667215515
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07: *** End AerodynamicsScenario execution (time: 0:00:00.013943) ***
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start StructureScenario execution ***
    INFO - 08:38:07: StructureScenario
    INFO - 08:38:07:    Disciplines: SobieskiStructure
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize -y_11(x_1)
    INFO - 08:38:07:    with respect to x_1
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_1(x_1) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:07:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 559.09 it/sec, obj=-.555]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: -0.554642423046122
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_1 = [-0.00867058 -0.02554783 -0.03782366 -0.04641707 -0.05265764 -0.14783085
    INFO - 08:38:07:  -0.09216915]
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:07:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07: *** End StructureScenario execution (time: 0:00:00.016621) ***
 WARNING - 08:38:07: MDAJacobi has reached its maximum number of iterations but the normed residual 2.6870836615612218e-14 is still above the tolerance 1e-14.
    INFO - 08:38:07: ...  66%|██████▌   | 33/50 [00:08<00:04,  3.98 it/sec, obj=-3.8e+3]
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start PropulsionScenario execution ***
    INFO - 08:38:07: PropulsionScenario
    INFO - 08:38:07:    Disciplines: SobieskiPropulsion
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize y_34(x_3)
    INFO - 08:38:07:    with respect to x_3
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_3(x_3) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:    | x_3  |     0.1     | 0.1564492139616135 |      1      | float |
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 1785.57 it/sec, obj=0.937]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   7%|▋         | 2/30 [00:00<00:00, 426.58 it/sec, obj=0.935]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  10%|█         | 3/30 [00:00<00:00, 402.25 it/sec, obj=0.935]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: 0.9349125067322442
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_3 = [-7.62217134e-01 -2.37782866e-01  4.44089210e-16 -1.83248216e-01]
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:       | x_3  |     0.1     | 0.1597918387590304 |      1      | float |
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07: *** End PropulsionScenario execution (time: 0:00:00.020670) ***
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:07: AerodynamicsScenario
    INFO - 08:38:07:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize -y_24(x_2)
    INFO - 08:38:07:    with respect to x_2
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_2(x_2) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 976.78 it/sec, obj=-7.88]
    INFO - 08:38:07:
 WARNING - 08:38:07: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:07:    Solution:
 WARNING - 08:38:07:       The solution is not feasible.
    INFO - 08:38:07:       Objective: -7.881869727406094
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_2 = 0.0006997642968409323
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07: *** End AerodynamicsScenario execution (time: 0:00:00.020092) ***
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start StructureScenario execution ***
    INFO - 08:38:07: StructureScenario
    INFO - 08:38:07:    Disciplines: SobieskiStructure
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize -y_11(x_1)
    INFO - 08:38:07:    with respect to x_1
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_1(x_1) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:07:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 491.08 it/sec, obj=-.566]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: -0.5661577169180194
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_1 = [-0.02025145 -0.03492775 -0.04548086 -0.05284151 -0.05817727 -0.13711908
    INFO - 08:38:07:  -0.10288092]
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:07:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07: *** End StructureScenario execution (time: 0:00:00.016943) ***
    INFO - 08:38:07: ...  68%|██████▊   | 34/50 [00:08<00:04,  4.00 it/sec, obj=-3.81e+3]
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start PropulsionScenario execution ***
    INFO - 08:38:07: PropulsionScenario
    INFO - 08:38:07:    Disciplines: SobieskiPropulsion
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize y_34(x_3)
    INFO - 08:38:07:    with respect to x_3
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_3(x_3) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:    | x_3  |     0.1     | 0.1597918387590304 |      1      | float |
    INFO - 08:38:07:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 1842.03 it/sec, obj=0.94]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   7%|▋         | 2/30 [00:00<00:00, 451.12 it/sec, obj=0.94]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  10%|█         | 3/30 [00:00<00:00, 501.69 it/sec, obj=0.94]
    INFO - 08:38:07:
    INFO - 08:38:07: ...  13%|█▎        | 4/30 [00:00<00:00, 425.62 it/sec, obj=0.94]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: 0.9396015769787862
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_3 = [-7.47479350e-01 -2.52520650e-01  2.22044605e-16 -1.81422698e-01]
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07:       | x_3  |     0.1     | 0.1596835469093206 |      1      | float |
    INFO - 08:38:07:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:07: *** End PropulsionScenario execution (time: 0:00:00.023585) ***
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:07: AerodynamicsScenario
    INFO - 08:38:07:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize -y_24(x_2)
    INFO - 08:38:07:    with respect to x_2
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_2(x_2) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 978.15 it/sec, obj=-7.73]
    INFO - 08:38:07:
 WARNING - 08:38:07: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:07:    Solution:
 WARNING - 08:38:07:       The solution is not feasible.
    INFO - 08:38:07:       Objective: -7.729533044729795
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_2 = 0.005420993802370377
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:07: *** End AerodynamicsScenario execution (time: 0:00:00.013802) ***
    INFO - 08:38:07:
    INFO - 08:38:07: *** Start StructureScenario execution ***
    INFO - 08:38:07: StructureScenario
    INFO - 08:38:07:    Disciplines: SobieskiStructure
    INFO - 08:38:07:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:07: Optimization problem:
    INFO - 08:38:07:    minimize -y_11(x_1)
    INFO - 08:38:07:    with respect to x_1
    INFO - 08:38:07:    subject to constraints:
    INFO - 08:38:07:       g_1(x_1) <= 0.0
    INFO - 08:38:07:    over the design space:
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:07:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:07: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:07:
    INFO - 08:38:07: ...   3%|▎         | 1/30 [00:00<00:00, 577.49 it/sec, obj=-.564]
    INFO - 08:38:07:
    INFO - 08:38:07:
    INFO - 08:38:07: Optimization result:
    INFO - 08:38:07:    Optimizer info:
    INFO - 08:38:07:       Status: 8
    INFO - 08:38:07:       Message: Positive directional derivative for linesearch
    INFO - 08:38:07:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:07:    Solution:
    INFO - 08:38:07:       The solution is feasible.
    INFO - 08:38:07:       Objective: -0.5637678101340007
    INFO - 08:38:07:       Standardized constraints:
    INFO - 08:38:07:          g_1 = [-0.03230125 -0.04250547 -0.05099334 -0.05716951 -0.06173839 -0.14275081
    INFO - 08:38:07:  -0.09724919]
    INFO - 08:38:07:       Design space:
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:07:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:07:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:07: *** End StructureScenario execution (time: 0:00:00.016573) ***
    INFO - 08:38:08: ...  70%|███████   | 35/50 [00:08<00:03,  3.99 it/sec, obj=-3.76e+3]
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start PropulsionScenario execution ***
    INFO - 08:38:08: PropulsionScenario
    INFO - 08:38:08:    Disciplines: SobieskiPropulsion
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize y_34(x_3)
    INFO - 08:38:08:    with respect to x_3
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_3(x_3) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | x_3  |     0.1     | 0.1596835469093206 |      1      | float |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 1847.71 it/sec, obj=0.922]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   7%|▋         | 2/30 [00:00<00:00, 454.59 it/sec, obj=0.924]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  10%|█         | 3/30 [00:00<00:00, 508.32 it/sec, obj=0.923]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  13%|█▎        | 4/30 [00:00<00:00, 360.74 it/sec, obj=0.924]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  17%|█▋        | 5/30 [00:00<00:00, 346.92 it/sec, obj=0.924]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  20%|██        | 6/30 [00:00<00:00, 363.30 it/sec, obj=0.924]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: None
    INFO - 08:38:08:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: 0.9239330847904542
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_3 = [-7.67195123e-01 -2.32804877e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: *** End PropulsionScenario execution (time: 0:00:00.027436) ***
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:08: AerodynamicsScenario
    INFO - 08:38:08:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize -y_24(x_2)
    INFO - 08:38:08:    with respect to x_2
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_2(x_2) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 973.16 it/sec, obj=-8.02]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: -8.023032044395645
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_2 = 0.0
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08: *** End AerodynamicsScenario execution (time: 0:00:00.013715) ***
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start StructureScenario execution ***
    INFO - 08:38:08: StructureScenario
    INFO - 08:38:08:    Disciplines: SobieskiStructure
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize -y_11(x_1)
    INFO - 08:38:08:    with respect to x_1
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_1(x_1) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:08:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 576.93 it/sec, obj=-.566]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: -0.5660015129608503
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_1 = [-0.01805093 -0.03333915 -0.04424381 -0.05182998 -0.05732217 -0.13720865
    INFO - 08:38:08:  -0.10279135]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:08:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08: *** End StructureScenario execution (time: 0:00:00.016882) ***
    INFO - 08:38:08: ...  72%|███████▏  | 36/50 [00:08<00:03,  4.02 it/sec, obj=-3.96e+3]
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start PropulsionScenario execution ***
    INFO - 08:38:08: PropulsionScenario
    INFO - 08:38:08:    Disciplines: SobieskiPropulsion
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize y_34(x_3)
    INFO - 08:38:08:    with respect to x_3
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_3(x_3) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 1865.79 it/sec, obj=0.93]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   7%|▋         | 2/30 [00:00<00:00, 460.89 it/sec, obj=0.929]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  10%|█         | 3/30 [00:00<00:00, 417.87 it/sec, obj=0.929]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  13%|█▎        | 4/30 [00:00<00:00, 379.71 it/sec, obj=0.929]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: None
    INFO - 08:38:08:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: 0.9293693023627243
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_3 = [-7.66893583e-01 -2.33106417e-01 -5.55111512e-16 -1.82405177e-01]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | x_3  |     0.1     | 0.1572026180027038 |      1      | float |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: *** End PropulsionScenario execution (time: 0:00:00.021745) ***
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:08: AerodynamicsScenario
    INFO - 08:38:08:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize -y_24(x_2)
    INFO - 08:38:08:    with respect to x_2
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_2(x_2) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 954.77 it/sec, obj=-8]
    INFO - 08:38:08:
 WARNING - 08:38:08: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:08:    Solution:
 WARNING - 08:38:08:       The solution is not feasible.
    INFO - 08:38:08:       Objective: -8.004494133931255
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_2 = 0.0003904217311601066
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08: *** End AerodynamicsScenario execution (time: 0:00:00.013791) ***
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start StructureScenario execution ***
    INFO - 08:38:08: StructureScenario
    INFO - 08:38:08:    Disciplines: SobieskiStructure
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize -y_11(x_1)
    INFO - 08:38:08:    with respect to x_1
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_1(x_1) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:08:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 581.73 it/sec, obj=-.56]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: -0.5603134488750118
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_1 = [-0.01984679 -0.03471979 -0.04534806 -0.0527464  -0.05810419 -0.13637084
    INFO - 08:38:08:  -0.10362916]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:08:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08: *** End StructureScenario execution (time: 0:00:00.016420) ***
    INFO - 08:38:08: ...  74%|███████▍  | 37/50 [00:09<00:03,  4.06 it/sec, obj=-3.88e+3]
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start PropulsionScenario execution ***
    INFO - 08:38:08: PropulsionScenario
    INFO - 08:38:08:    Disciplines: SobieskiPropulsion
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize y_34(x_3)
    INFO - 08:38:08:    with respect to x_3
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_3(x_3) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | x_3  |     0.1     | 0.1572026180027038 |      1      | float |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 1090.00 it/sec, obj=0.933]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   7%|▋         | 2/30 [00:00<00:00, 425.00 it/sec, obj=0.933]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  10%|█         | 3/30 [00:00<00:00, 396.39 it/sec, obj=0.933]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: 0.9330107940865807
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_3 = [-7.55048823e-01 -2.44951177e-01  2.22044605e-16 -1.82230251e-01]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | x_3  |     0.1     | 0.1582169369709533 |      1      | float |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: *** End PropulsionScenario execution (time: 0:00:00.023769) ***
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:08: AerodynamicsScenario
    INFO - 08:38:08:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize -y_24(x_2)
    INFO - 08:38:08:    with respect to x_2
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_2(x_2) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 952.39 it/sec, obj=-7.95]
    INFO - 08:38:08:
 WARNING - 08:38:08: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:08:    Solution:
 WARNING - 08:38:08:       The solution is not feasible.
    INFO - 08:38:08:       Objective: -7.948534030261986
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_2 = 0.009273750297057681
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08: *** End AerodynamicsScenario execution (time: 0:00:00.013771) ***
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start StructureScenario execution ***
    INFO - 08:38:08: StructureScenario
    INFO - 08:38:08:    Disciplines: SobieskiStructure
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize -y_11(x_1)
    INFO - 08:38:08:    with respect to x_1
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_1(x_1) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:08:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 578.13 it/sec, obj=-.569]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: -0.568836879448503
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_1 = [-0.04916719 -0.05511668 -0.06096447 -0.06539251 -0.06872762 -0.13649181
    INFO - 08:38:08:  -0.10350819]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:08:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08: *** End StructureScenario execution (time: 0:00:00.016490) ***
    INFO - 08:38:08: ...  76%|███████▌  | 38/50 [00:09<00:02,  4.09 it/sec, obj=-3.9e+3]
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start PropulsionScenario execution ***
    INFO - 08:38:08: PropulsionScenario
    INFO - 08:38:08:    Disciplines: SobieskiPropulsion
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize y_34(x_3)
    INFO - 08:38:08:    with respect to x_3
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_3(x_3) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | x_3  |     0.1     | 0.1582169369709533 |      1      | float |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 1128.41 it/sec, obj=0.926]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   7%|▋         | 2/30 [00:00<00:00, 429.46 it/sec, obj=0.927]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  10%|█         | 3/30 [00:00<00:00, 486.50 it/sec, obj=0.926]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  13%|█▎        | 4/30 [00:00<00:00, 419.20 it/sec, obj=0.927]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: 0.9265522972564275
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_3 = [-7.71722259e-01 -2.28277741e-01  6.66133815e-16 -1.83155565e-01]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | x_3  |     0.1     | 0.1569693906442405 |      1      | float |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: *** End PropulsionScenario execution (time: 0:00:00.022020) ***
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:08: AerodynamicsScenario
    INFO - 08:38:08:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize -y_24(x_2)
    INFO - 08:38:08:    with respect to x_2
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_2(x_2) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 983.19 it/sec, obj=-7.99]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: -7.992262900978756
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_2 = -0.0034496415465745667
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08: *** End AerodynamicsScenario execution (time: 0:00:00.013535) ***
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start StructureScenario execution ***
    INFO - 08:38:08: StructureScenario
    INFO - 08:38:08:    Disciplines: SobieskiStructure
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize -y_11(x_1)
    INFO - 08:38:08:    with respect to x_1
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_1(x_1) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:08:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 576.54 it/sec, obj=-.56]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: -0.5602670761638272
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_1 = [-0.00775884 -0.02581524 -0.03835244 -0.04699763 -0.05322896 -0.13745323
    INFO - 08:38:08:  -0.10254677]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:08:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08: *** End StructureScenario execution (time: 0:00:00.016639) ***
    INFO - 08:38:08: ...  78%|███████▊  | 39/50 [00:09<00:02,  4.12 it/sec, obj=-3.89e+3]
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start PropulsionScenario execution ***
    INFO - 08:38:08: PropulsionScenario
    INFO - 08:38:08:    Disciplines: SobieskiPropulsion
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize y_34(x_3)
    INFO - 08:38:08:    with respect to x_3
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_3(x_3) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | x_3  |     0.1     | 0.1569693906442405 |      1      | float |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 1856.71 it/sec, obj=0.927]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   7%|▋         | 2/30 [00:00<00:00, 455.16 it/sec, obj=0.927]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  10%|█         | 3/30 [00:00<00:00, 506.66 it/sec, obj=0.927]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  13%|█▎        | 4/30 [00:00<00:00, 429.18 it/sec, obj=0.927]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  17%|█▋        | 5/30 [00:00<00:00, 397.17 it/sec, obj=0.927]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  20%|██        | 6/30 [00:00<00:00, 377.62 it/sec, obj=0.927]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: None
    INFO - 08:38:08:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: 0.9267213583137429
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_3 = [-7.59137810e-01 -2.40862190e-01 -3.33066907e-16 -1.82942299e-01]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | x_3  |     0.1     | 0.1568370766528054 |      1      | float |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: *** End PropulsionScenario execution (time: 0:00:00.027195) ***
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:08: AerodynamicsScenario
    INFO - 08:38:08:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize -y_24(x_2)
    INFO - 08:38:08:    with respect to x_2
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_2(x_2) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 984.12 it/sec, obj=-7.97]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: -7.968545610384681
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_2 = -0.00101356560318
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:08: *** End AerodynamicsScenario execution (time: 0:00:00.013509) ***
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start StructureScenario execution ***
    INFO - 08:38:08: StructureScenario
    INFO - 08:38:08:    Disciplines: SobieskiStructure
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize -y_11(x_1)
    INFO - 08:38:08:    with respect to x_1
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_1(x_1) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:08:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 568.64 it/sec, obj=-.559]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: 8
    INFO - 08:38:08:       Message: Positive directional derivative for linesearch
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: -0.5585636289816939
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_1 = [-0.01469641 -0.03087838 -0.04231408 -0.0502458  -0.05597958 -0.13761747
    INFO - 08:38:08:  -0.10238253]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:08:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:08:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:08: *** End StructureScenario execution (time: 0:00:00.016452) ***
    INFO - 08:38:08: ...  80%|████████  | 40/50 [00:09<00:02,  4.15 it/sec, obj=-3.86e+3]
    INFO - 08:38:08:
    INFO - 08:38:08: *** Start PropulsionScenario execution ***
    INFO - 08:38:08: PropulsionScenario
    INFO - 08:38:08:    Disciplines: SobieskiPropulsion
    INFO - 08:38:08:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:08: Optimization problem:
    INFO - 08:38:08:    minimize y_34(x_3)
    INFO - 08:38:08:    with respect to x_3
    INFO - 08:38:08:    subject to constraints:
    INFO - 08:38:08:       g_3(x_3) <= 0.0
    INFO - 08:38:08:    over the design space:
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:    | x_3  |     0.1     | 0.1568370766528054 |      1      | float |
    INFO - 08:38:08:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:08: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   3%|▎         | 1/30 [00:00<00:00, 1856.71 it/sec, obj=0.934]
    INFO - 08:38:08:
    INFO - 08:38:08: ...   7%|▋         | 2/30 [00:00<00:00, 442.72 it/sec, obj=0.934]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  10%|█         | 3/30 [00:00<00:00, 394.78 it/sec, obj=0.934]
    INFO - 08:38:08:
    INFO - 08:38:08: ...  13%|█▎        | 4/30 [00:00<00:00, 365.72 it/sec, obj=0.934]
    INFO - 08:38:08:
    INFO - 08:38:08:
    INFO - 08:38:08: Optimization result:
    INFO - 08:38:08:    Optimizer info:
    INFO - 08:38:08:       Status: None
    INFO - 08:38:08:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:08:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:08:    Solution:
    INFO - 08:38:08:       The solution is feasible.
    INFO - 08:38:08:       Objective: 0.9336402560775915
    INFO - 08:38:08:       Standardized constraints:
    INFO - 08:38:08:          g_3 = [-7.72160884e-01 -2.27839116e-01  2.22044605e-16 -1.81685630e-01]
    INFO - 08:38:08:       Design space:
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08:       | x_3  |     0.1     | 0.1579392685698547 |      1      | float |
    INFO - 08:38:08:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:08: *** End PropulsionScenario execution (time: 0:00:00.021973) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:09: AerodynamicsScenario
    INFO - 08:38:09:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_24(x_2)
    INFO - 08:38:09:    with respect to x_2
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_2(x_2) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 979.75 it/sec, obj=-7.95]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -7.9511354809083645
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_2 = -0.0037331650021044105
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End AerodynamicsScenario execution (time: 0:00:00.013804) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start StructureScenario execution ***
    INFO - 08:38:09: StructureScenario
    INFO - 08:38:09:    Disciplines: SobieskiStructure
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_11(x_1)
    INFO - 08:38:09:    with respect to x_1
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_1(x_1) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:09:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 582.87 it/sec, obj=-.555]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -0.554833567982586
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_1 = [-0.00776871 -0.0258728  -0.03841472 -0.04705664 -0.05328323 -0.13650959
    INFO - 08:38:09:  -0.10349041]
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:09:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End StructureScenario execution (time: 0:00:00.016476) ***
    INFO - 08:38:09: ...  82%|████████▏ | 41/50 [00:09<00:02,  4.18 it/sec, obj=-3.82e+3]
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start PropulsionScenario execution ***
    INFO - 08:38:09: PropulsionScenario
    INFO - 08:38:09:    Disciplines: SobieskiPropulsion
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize y_34(x_3)
    INFO - 08:38:09:    with respect to x_3
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_3(x_3) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:    | x_3  |     0.1     | 0.1579392685698547 |      1      | float |
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 1815.72 it/sec, obj=0.938]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   7%|▋         | 2/30 [00:00<00:00, 456.18 it/sec, obj=0.938]
    INFO - 08:38:09:
    INFO - 08:38:09: ...  10%|█         | 3/30 [00:00<00:00, 402.00 it/sec, obj=0.938]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 6
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: 0.9376624768675578
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_3 = [-0.75611629 -0.24388371  0.         -0.18125886]
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:       | x_3  |     0.1     | 0.1588805954624796 |      1      | float |
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09: *** End PropulsionScenario execution (time: 0:00:00.021073) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:09: AerodynamicsScenario
    INFO - 08:38:09:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_24(x_2)
    INFO - 08:38:09:    with respect to x_2
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_2(x_2) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 953.47 it/sec, obj=-7.85]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -7.852785222918176
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_2 = -0.0003768219183206689
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End AerodynamicsScenario execution (time: 0:00:00.014148) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start StructureScenario execution ***
    INFO - 08:38:09: StructureScenario
    INFO - 08:38:09:    Disciplines: SobieskiStructure
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_11(x_1)
    INFO - 08:38:09:    with respect to x_1
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_1(x_1) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:09:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 499.50 it/sec, obj=-.555]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -0.5545115890094884
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_1 = [-0.01764118 -0.03314108 -0.04412342 -0.05174719 -0.05726069 -0.13623764
    INFO - 08:38:09:  -0.10376236]
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:09:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End StructureScenario execution (time: 0:00:00.016801) ***
    INFO - 08:38:09: ...  84%|████████▍ | 42/50 [00:09<00:01,  4.20 it/sec, obj=-3.76e+3]
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start PropulsionScenario execution ***
    INFO - 08:38:09: PropulsionScenario
    INFO - 08:38:09:    Disciplines: SobieskiPropulsion
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize y_34(x_3)
    INFO - 08:38:09:    with respect to x_3
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_3(x_3) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:    | x_3  |     0.1     | 0.1588805954624796 |      1      | float |
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 1842.84 it/sec, obj=0.932]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   7%|▋         | 2/30 [00:00<00:00, 451.36 it/sec, obj=0.932]
    INFO - 08:38:09:
    INFO - 08:38:09: ...  10%|█         | 3/30 [00:00<00:00, 505.38 it/sec, obj=0.932]
    INFO - 08:38:09:
    INFO - 08:38:09: ...  13%|█▎        | 4/30 [00:00<00:00, 429.24 it/sec, obj=0.932]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: 0.932488330257101
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_3 = [-7.73007069e-01 -2.26992931e-01  2.22044605e-16 -1.82177287e-01]
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:       | x_3  |     0.1     | 0.1580000246965202 |      1      | float |
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09: *** End PropulsionScenario execution (time: 0:00:00.023327) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:09: AerodynamicsScenario
    INFO - 08:38:09:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_24(x_2)
    INFO - 08:38:09:    with respect to x_2
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_2(x_2) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 942.75 it/sec, obj=-7.94]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -7.944372282113485
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_2 = -0.0031019884222518446
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End AerodynamicsScenario execution (time: 0:00:00.013590) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start StructureScenario execution ***
    INFO - 08:38:09: StructureScenario
    INFO - 08:38:09:    Disciplines: SobieskiStructure
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_11(x_1)
    INFO - 08:38:09:    with respect to x_1
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_1(x_1) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:09:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 582.87 it/sec, obj=-.554]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -0.5543048894758802
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_1 = [-0.01006396 -0.02761364 -0.03979936 -0.04820227 -0.05425899 -0.13587618
    INFO - 08:38:09:  -0.10412382]
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:09:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End StructureScenario execution (time: 0:00:00.016527) ***
    INFO - 08:38:09: ...  86%|████████▌ | 43/50 [00:10<00:01,  4.23 it/sec, obj=-3.82e+3]
 WARNING - 08:38:09: MDAJacobi has reached its maximum number of iterations but the normed residual 1.7359275648513364e-14 is still above the tolerance 1e-14.
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start PropulsionScenario execution ***
    INFO - 08:38:09: PropulsionScenario
    INFO - 08:38:09:    Disciplines: SobieskiPropulsion
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize y_34(x_3)
    INFO - 08:38:09:    with respect to x_3
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_3(x_3) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:    | x_3  |     0.1     | 0.1580000246965202 |      1      | float |
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 1832.37 it/sec, obj=0.938]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   7%|▋         | 2/30 [00:00<00:00, 454.25 it/sec, obj=0.938]
    INFO - 08:38:09:
    INFO - 08:38:09: ...  10%|█         | 3/30 [00:00<00:00, 417.55 it/sec, obj=0.938]
    INFO - 08:38:09:
    INFO - 08:38:09: ...  13%|█▎        | 4/30 [00:00<00:00, 382.34 it/sec, obj=0.938]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: None
    INFO - 08:38:09:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 6
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: 0.9375190104012968
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_3 = [-7.56574152e-01 -2.43425848e-01 -2.22044605e-16 -1.81170652e-01]
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:       | x_3  |     0.1     | 0.1587539902922646 |      1      | float |
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09: *** End PropulsionScenario execution (time: 0:00:00.021458) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:09: AerodynamicsScenario
    INFO - 08:38:09:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_24(x_2)
    INFO - 08:38:09:    with respect to x_2
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_2(x_2) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 963.10 it/sec, obj=-7.83]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -7.827008737426003
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_2 = -0.004948796770851693
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End AerodynamicsScenario execution (time: 0:00:00.013960) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start StructureScenario execution ***
    INFO - 08:38:09: StructureScenario
    INFO - 08:38:09:    Disciplines: SobieskiStructure
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_11(x_1)
    INFO - 08:38:09:    with respect to x_1
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_1(x_1) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:09:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 571.20 it/sec, obj=-.552]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -0.5518028641153804
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_1 = [-0.00377332 -0.02285532 -0.0360189  -0.04507628 -0.05159755 -0.13725507
    INFO - 08:38:09:  -0.10274493]
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:09:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End StructureScenario execution (time: 0:00:00.016662) ***
    INFO - 08:38:09: ...  88%|████████▊ | 44/50 [00:10<00:01,  4.24 it/sec, obj=-3.73e+3]
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start PropulsionScenario execution ***
    INFO - 08:38:09: PropulsionScenario
    INFO - 08:38:09:    Disciplines: SobieskiPropulsion
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize y_34(x_3)
    INFO - 08:38:09:    with respect to x_3
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_3(x_3) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:    | x_3  |     0.1     | 0.1587539902922646 |      1      | float |
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 969.11 it/sec, obj=0.95]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   7%|▋         | 2/30 [00:00<00:00, 405.21 it/sec, obj=0.947]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: 0.9474121500251969
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_3 = [-7.57338041e-01 -2.42661959e-01 -3.33066907e-16 -1.83014472e-01]
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:       | x_3  |     0.1     | 0.1641080301375049 |      1      | float |
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09: *** End PropulsionScenario execution (time: 0:00:00.018625) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:09: AerodynamicsScenario
    INFO - 08:38:09:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_24(x_2)
    INFO - 08:38:09:    with respect to x_2
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_2(x_2) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 958.92 it/sec, obj=-7.66]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -7.657702112646119
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_2 = -0.0006282733209923563
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End AerodynamicsScenario execution (time: 0:00:00.013423) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start StructureScenario execution ***
    INFO - 08:38:09: StructureScenario
    INFO - 08:38:09:    Disciplines: SobieskiStructure
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_11(x_1)
    INFO - 08:38:09:    with respect to x_1
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_1(x_1) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:09:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 567.87 it/sec, obj=-.563]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -0.5627287398683108
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_1 = [-0.01611941 -0.03194119 -0.04315399 -0.05093828 -0.05656806 -0.13726066
    INFO - 08:38:09:  -0.10273934]
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:09:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End StructureScenario execution (time: 0:00:00.016498) ***
    INFO - 08:38:09: ...  90%|█████████ | 45/50 [00:10<00:01,  4.24 it/sec, obj=-3.63e+3]
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start PropulsionScenario execution ***
    INFO - 08:38:09: PropulsionScenario
    INFO - 08:38:09:    Disciplines: SobieskiPropulsion
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize y_34(x_3)
    INFO - 08:38:09:    with respect to x_3
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_3(x_3) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:    | x_3  |     0.1     | 0.1641080301375049 |      1      | float |
    INFO - 08:38:09:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 1885.08 it/sec, obj=0.936]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   7%|▋         | 2/30 [00:00<00:00, 459.78 it/sec, obj=0.938]
    INFO - 08:38:09:
    INFO - 08:38:09: ...  10%|█         | 3/30 [00:00<00:00, 513.67 it/sec, obj=0.936]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: 0.9383187121830973
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_3 = [-0.75282486 -0.24717514  0.         -0.18101856]
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09:       | x_3  |     0.1     | 0.1588840666164989 |      1      | float |
    INFO - 08:38:09:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:09: *** End PropulsionScenario execution (time: 0:00:00.020389) ***
    INFO - 08:38:09:
    INFO - 08:38:09: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:09: AerodynamicsScenario
    INFO - 08:38:09:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:09:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:09: Optimization problem:
    INFO - 08:38:09:    minimize -y_24(x_2)
    INFO - 08:38:09:    with respect to x_2
    INFO - 08:38:09:    subject to constraints:
    INFO - 08:38:09:       g_2(x_2) <= 0.0
    INFO - 08:38:09:    over the design space:
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:09: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:09:
    INFO - 08:38:09: ...   3%|▎         | 1/30 [00:00<00:00, 968.66 it/sec, obj=-7.77]
    INFO - 08:38:09:
    INFO - 08:38:09:
    INFO - 08:38:09: Optimization result:
    INFO - 08:38:09:    Optimizer info:
    INFO - 08:38:09:       Status: 8
    INFO - 08:38:09:       Message: Positive directional derivative for linesearch
    INFO - 08:38:09:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:09:    Solution:
    INFO - 08:38:09:       The solution is feasible.
    INFO - 08:38:09:       Objective: -7.769375748611215
    INFO - 08:38:09:       Standardized constraints:
    INFO - 08:38:09:          g_2 = -0.0007057452754493099
    INFO - 08:38:09:       Design space:
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:09:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:09: *** End AerodynamicsScenario execution (time: 0:00:00.013656) ***
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start StructureScenario execution ***
    INFO - 08:38:10: StructureScenario
    INFO - 08:38:10:    Disciplines: SobieskiStructure
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize -y_11(x_1)
    INFO - 08:38:10:    with respect to x_1
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_1(x_1) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:10:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 579.32 it/sec, obj=-.553]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: -0.5531086813910884
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_1 = [-0.01617366 -0.03201621 -0.04322482 -0.05100193 -0.05662499 -0.13688411
    INFO - 08:38:10:  -0.10311589]
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:10:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10: *** End StructureScenario execution (time: 0:00:00.016558) ***
    INFO - 08:38:10: ...  92%|█████████▏| 46/50 [00:10<00:00,  4.27 it/sec, obj=-3.75e+3]
 WARNING - 08:38:10: MDAJacobi has reached its maximum number of iterations but the normed residual 1.7359275648513364e-14 is still above the tolerance 1e-14.
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start PropulsionScenario execution ***
    INFO - 08:38:10: PropulsionScenario
    INFO - 08:38:10:    Disciplines: SobieskiPropulsion
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize y_34(x_3)
    INFO - 08:38:10:    with respect to x_3
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_3(x_3) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:10:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:    | x_3  |     0.1     | 0.1588840666164989 |      1      | float |
    INFO - 08:38:10:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 1771.24 it/sec, obj=0.931]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   7%|▋         | 2/30 [00:00<00:00, 445.35 it/sec, obj=0.932]
    INFO - 08:38:10:
    INFO - 08:38:10: ...  10%|█         | 3/30 [00:00<00:00, 499.52 it/sec, obj=0.931]
    INFO - 08:38:10:
    INFO - 08:38:10: ...  13%|█▎        | 4/30 [00:00<00:00, 425.75 it/sec, obj=0.932]
    INFO - 08:38:10:
    INFO - 08:38:10: ...  17%|█▋        | 5/30 [00:00<00:00, 394.54 it/sec, obj=0.932]
    INFO - 08:38:10:
    INFO - 08:38:10: ...  20%|██        | 6/30 [00:00<00:00, 366.99 it/sec, obj=0.932]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: None
    INFO - 08:38:10:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: 0.9315700458978554
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_3 = [-7.73716032e-01 -2.26283968e-01  6.66133815e-16 -1.82197151e-01]
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:10:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:       | x_3  |     0.1     | 0.1577214810168453 |      1      | float |
    INFO - 08:38:10:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10: *** End PropulsionScenario execution (time: 0:00:00.027360) ***
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:10: AerodynamicsScenario
    INFO - 08:38:10:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize -y_24(x_2)
    INFO - 08:38:10:    with respect to x_2
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_2(x_2) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 926.51 it/sec, obj=-7.95]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: -7.949571790627525
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_2 = -0.0044650923747695526
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10: *** End AerodynamicsScenario execution (time: 0:00:00.013844) ***
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start StructureScenario execution ***
    INFO - 08:38:10: StructureScenario
    INFO - 08:38:10:    Disciplines: SobieskiStructure
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize -y_11(x_1)
    INFO - 08:38:10:    with respect to x_1
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_1(x_1) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:10:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 568.10 it/sec, obj=-.551]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: -0.5510242829877688
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_1 = [-0.00633492 -0.02482829 -0.0375981  -0.04638738 -0.05271665 -0.13585043
    INFO - 08:38:10:  -0.10414957]
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:10:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10: *** End StructureScenario execution (time: 0:00:00.016627) ***
    INFO - 08:38:10: ...  94%|█████████▍| 47/50 [00:11<00:00,  4.27 it/sec, obj=-3.8e+3]
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start PropulsionScenario execution ***
    INFO - 08:38:10: PropulsionScenario
    INFO - 08:38:10:    Disciplines: SobieskiPropulsion
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize y_34(x_3)
    INFO - 08:38:10:    with respect to x_3
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_3(x_3) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:10:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:    | x_3  |     0.1     | 0.1577214810168453 |      1      | float |
    INFO - 08:38:10:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 1933.75 it/sec, obj=0.934]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   7%|▋         | 2/30 [00:00<00:00, 466.40 it/sec, obj=0.934]
    INFO - 08:38:10:
    INFO - 08:38:10: ...  10%|█         | 3/30 [00:00<00:00, 423.87 it/sec, obj=0.934]
    INFO - 08:38:10:
    INFO - 08:38:10: ...  13%|█▎        | 4/30 [00:00<00:00, 437.67 it/sec, obj=0.934]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: None
    INFO - 08:38:10:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: 0.9339909173037028
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_3 = [-7.61694009e-01 -2.38305991e-01  1.11022302e-15 -1.81623669e-01]
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +------+-------------+-------------------+-------------+-------+
    INFO - 08:38:10:       | name | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:10:       +------+-------------+-------------------+-------------+-------+
    INFO - 08:38:10:       | x_3  |     0.1     | 0.157998360907212 |      1      | float |
    INFO - 08:38:10:       +------+-------------+-------------------+-------------+-------+
    INFO - 08:38:10: *** End PropulsionScenario execution (time: 0:00:00.019780) ***
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:10: AerodynamicsScenario
    INFO - 08:38:10:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize -y_24(x_2)
    INFO - 08:38:10:    with respect to x_2
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_2(x_2) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 942.75 it/sec, obj=-7.89]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: -7.894868215084619
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_2 = -0.0031867630919635292
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10: *** End AerodynamicsScenario execution (time: 0:00:00.013587) ***
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start StructureScenario execution ***
    INFO - 08:38:10: StructureScenario
    INFO - 08:38:10:    Disciplines: SobieskiStructure
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize -y_11(x_1)
    INFO - 08:38:10:    with respect to x_1
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_1(x_1) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:10:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 580.77 it/sec, obj=-.551]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: -0.5507487359954952
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_1 = [-0.00912171 -0.0268662  -0.03919405 -0.04769655 -0.05382563 -0.13671561
    INFO - 08:38:10:  -0.10328439]
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:10:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10: *** End StructureScenario execution (time: 0:00:00.016453) ***
    INFO - 08:38:10: ...  96%|█████████▌| 48/50 [00:11<00:00,  4.30 it/sec, obj=-3.77e+3]
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start PropulsionScenario execution ***
    INFO - 08:38:10: PropulsionScenario
    INFO - 08:38:10:    Disciplines: SobieskiPropulsion
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize y_34(x_3)
    INFO - 08:38:10:    with respect to x_3
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_3(x_3) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +------+-------------+-------------------+-------------+-------+
    INFO - 08:38:10:    | name | lower_bound |       value       | upper_bound | type  |
    INFO - 08:38:10:    +------+-------------+-------------------+-------------+-------+
    INFO - 08:38:10:    | x_3  |     0.1     | 0.157998360907212 |      1      | float |
    INFO - 08:38:10:    +------+-------------+-------------------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 1912.59 it/sec, obj=0.936]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   7%|▋         | 2/30 [00:00<00:00, 465.03 it/sec, obj=0.935]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 3
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: 0.9353982755957535
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_3 = [-0.75502701 -0.24497299  0.         -0.18159783]
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:10:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:       | x_3  |     0.1     | 0.1584345342383115 |      1      | float |
    INFO - 08:38:10:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10: *** End PropulsionScenario execution (time: 0:00:00.016340) ***
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:10: AerodynamicsScenario
    INFO - 08:38:10:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize -y_24(x_2)
    INFO - 08:38:10:    with respect to x_2
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_2(x_2) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 868.39 it/sec, obj=-7.87]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: -7.868845320485208
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_2 = -0.0002083814073530199
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10: *** End AerodynamicsScenario execution (time: 0:00:00.013647) ***
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start StructureScenario execution ***
    INFO - 08:38:10: StructureScenario
    INFO - 08:38:10:    Disciplines: SobieskiStructure
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize -y_11(x_1)
    INFO - 08:38:10:    with respect to x_1
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_1(x_1) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:10:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 587.93 it/sec, obj=-.551]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: -0.5509792070509785
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_1 = [-0.01843599 -0.03375531 -0.04461573 -0.05215622 -0.05760998 -0.13584555
    INFO - 08:38:10:  -0.10415445]
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:10:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10: *** End StructureScenario execution (time: 0:00:00.016386) ***
 WARNING - 08:38:10: MDAJacobi has reached its maximum number of iterations but the normed residual 5.3741673231224435e-14 is still above the tolerance 1e-14.
    INFO - 08:38:10: ...  98%|█████████▊| 49/50 [00:11<00:00,  4.31 it/sec, obj=-3.75e+3]
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start PropulsionScenario execution ***
    INFO - 08:38:10: PropulsionScenario
    INFO - 08:38:10:    Disciplines: SobieskiPropulsion
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize y_34(x_3)
    INFO - 08:38:10:    with respect to x_3
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_3(x_3) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:10:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:    | x_3  |     0.1     | 0.1584345342383115 |      1      | float |
    INFO - 08:38:10:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 1058.10 it/sec, obj=0.926]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   7%|▋         | 2/30 [00:00<00:00, 413.01 it/sec, obj=0.927]
    INFO - 08:38:10:
    INFO - 08:38:10: ...  10%|█         | 3/30 [00:00<00:00, 470.16 it/sec, obj=0.927]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: 0.9272317257344432
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_3 = [-7.69242676e-01 -2.30757324e-01  2.22044605e-16 -1.82782840e-01]
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:38:10:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10:       | x_3  |     0.1     | 0.1568585249239662 |      1      | float |
    INFO - 08:38:10:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:38:10: *** End PropulsionScenario execution (time: 0:00:00.021271) ***
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start AerodynamicsScenario execution ***
    INFO - 08:38:10: AerodynamicsScenario
    INFO - 08:38:10:    Disciplines: SobieskiAerodynamics
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize -y_24(x_2)
    INFO - 08:38:10:    with respect to x_2
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_2(x_2) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:    +------+-------------+-------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 977.47 it/sec, obj=-7.99]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: -7.989605929098186
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_2 = -0.002186762090865324
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:       +------+-------------+-------+-------------+-------+
    INFO - 08:38:10: *** End AerodynamicsScenario execution (time: 0:00:00.013614) ***
    INFO - 08:38:10:
    INFO - 08:38:10: *** Start StructureScenario execution ***
    INFO - 08:38:10: StructureScenario
    INFO - 08:38:10:    Disciplines: SobieskiStructure
    INFO - 08:38:10:    MDO formulation: DisciplinaryOpt
    INFO - 08:38:10: Optimization problem:
    INFO - 08:38:10:    minimize -y_11(x_1)
    INFO - 08:38:10:    with respect to x_1
    INFO - 08:38:10:    subject to constraints:
    INFO - 08:38:10:       g_1(x_1) <= 0.0
    INFO - 08:38:10:    over the design space:
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:10:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:    +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10: Solving optimization problem with algorithm SLSQP:
    INFO - 08:38:10: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:38:10:
    INFO - 08:38:10: ...   3%|▎         | 1/30 [00:00<00:00, 572.84 it/sec, obj=-.557]
    INFO - 08:38:10:
    INFO - 08:38:10:
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: 8
    INFO - 08:38:10:       Message: Positive directional derivative for linesearch
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: -0.5565145141710673
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_1 = [-0.0119226  -0.02892658 -0.04081176 -0.04902548 -0.05495238 -0.13677359
    INFO - 08:38:10:  -0.10322641]
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:38:10:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:38:10:       +--------+-------------+-------+-------------+-------+
    INFO - 08:38:10: *** End StructureScenario execution (time: 0:00:00.016531) ***
    INFO - 08:38:10: ... 100%|██████████| 50/50 [00:11<00:00,  4.33 it/sec, obj=-3.87e+3]
    INFO - 08:38:10: Optimization result:
    INFO - 08:38:10:    Optimizer info:
    INFO - 08:38:10:       Status: None
    INFO - 08:38:10:       Message: Maximum number of iterations reached. GEMSEO Stopped the driver
    INFO - 08:38:10:       Number of calls to the objective function by the optimizer: 52
    INFO - 08:38:10:    Solution:
    INFO - 08:38:10:       The solution is feasible.
    INFO - 08:38:10:       Objective: -3963.3800122701787
    INFO - 08:38:10:       Standardized constraints:
    INFO - 08:38:10:          g_1_g_2_g_3 = [-1.80509341e-02 -3.33391490e-02 -4.42438091e-02 -5.18299820e-02
    INFO - 08:38:10:  -5.73221710e-02 -1.37208650e-01 -1.02791350e-01  0.00000000e+00
    INFO - 08:38:10:  -7.67186463e-01 -2.32813537e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:38:10:       Design space:
    INFO - 08:38:10:       +-------------+-------------+---------------------+-------------+-------+
    INFO - 08:38:10:       | name        | lower_bound |        value        | upper_bound | type  |
    INFO - 08:38:10:       +-------------+-------------+---------------------+-------------+-------+
    INFO - 08:38:10:       | x_shared[0] |     0.01    | 0.05999999999999998 |     0.09    | float |
    INFO - 08:38:10:       | x_shared[1] |    30000    |        60000        |    60000    | float |
    INFO - 08:38:10:       | x_shared[2] |     1.4     |         1.4         |     1.8     | float |
    INFO - 08:38:10:       | x_shared[3] |     2.5     |         2.5         |     8.5     | float |
    INFO - 08:38:10:       | x_shared[4] |      40     |          70         |      70     | float |
    INFO - 08:38:10:       | x_shared[5] |     500     |         1500        |     1500    | float |
    INFO - 08:38:10:       +-------------+-------------+---------------------+-------------+-------+
    INFO - 08:38:10: *** End MDOScenario execution (time: 0:00:11.553926) ***

{'max_iter': 50, 'algo_options': {'xtol_rel': 1e-07, 'xtol_abs': 1e-07, 'ftol_rel': 1e-07, 'ftol_abs': 1e-07, 'ineq_tolerance': 0.0001}, 'algo': 'NLOPT_COBYLA'}

Plot the history of the MDA residuals

For the first MDA:

system_scenario.formulation.mda1.plot_residual_history(save=False, show=True)
# For the second MDA:
system_scenario.formulation.mda2.plot_residual_history(save=False, show=True)
  • MDAJacobi: residual plot
  • MDAJacobi: residual plot

Plot the system optimization history view

system_scenario.post_process("OptHistoryView", save=False, show=True)
  • Evolution of the optimization variables
  • Evolution of the objective value
  • Distance to the optimum
  • Evolution of the inequality constraints
/home/docs/checkouts/readthedocs.org/user_builds/gemseo/envs/5.0.1/lib/python3.9/site-packages/genson/schema/strategies/base.py:42: UserWarning: Schema incompatible. Keyword 'description' has conflicting values ('The width and height of the figure in inches, e.g. ``(w, h)``.\nIf ``None``, use the :attr:`.OptPostProcessor.DEFAULT_FIG_SIZE`\nof the post-processor.' vs. 'The width and height of the figure in inches, e.g. `(w, h)`.\nIf ``None``, use the :attr:`.OptPostProcessor.DEFAULT_FIG_SIZE`\nof the post-processor.'). Using 'The width and height of the figure in inches, e.g. ``(w, h)``.\nIf ``None``, use the :attr:`.OptPostProcessor.DEFAULT_FIG_SIZE`\nof the post-processor.'
  warn(('Schema incompatible. Keyword {0!r} has conflicting '
 WARNING - 08:38:12: Failed to create Hessian approximation.
Traceback (most recent call last):
  File "/home/docs/checkouts/readthedocs.org/user_builds/gemseo/envs/5.0.1/lib/python3.9/site-packages/gemseo/post/opt_history_view.py", line 621, in _create_hessian_approx_plot
    _, diag, _, _ = SR1Approx(history).build_approximation(
  File "/home/docs/checkouts/readthedocs.org/user_builds/gemseo/envs/5.0.1/lib/python3.9/site-packages/gemseo/post/core/hessians.py", line 379, in build_approximation
    x_hist, grad_hist, _, _ = self.get_x_grad_history(
  File "/home/docs/checkouts/readthedocs.org/user_builds/gemseo/envs/5.0.1/lib/python3.9/site-packages/gemseo/post/core/hessians.py", line 170, in get_x_grad_history
    raise ValueError(
ValueError: Cannot build approximation for function: -y_4 because its gradient history is too small: 0.

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

Plot the structure optimization histories of the 2 first iterations

struct_databases = system_scenario.formulation.scenario_adapters[2].databases
for database in struct_databases[:2]:
    opt_problem = deepcopy(sc_str.formulation.opt_problem)
    opt_problem.database = database
    execute_post(opt_problem, "OptHistoryView", save=False, show=True)

for disc in [propu, aero, mission, struct]:
    print(f"{disc.name}: {disc.n_calls} calls.")
  • Evolution of the optimization variables
  • Evolution of the objective value
  • Distance to the optimum
  • Hessian diagonal approximation
  • Evolution of the inequality constraints
  • Evolution of the optimization variables
  • Evolution of the objective value
  • Distance to the optimum
  • Hessian diagonal approximation
  • Evolution of the inequality constraints
/home/docs/checkouts/readthedocs.org/user_builds/gemseo/envs/5.0.1/lib/python3.9/site-packages/gemseo/post/opt_history_view.py:599: UserWarning: All values for SymLogScale are below linthresh, making it effectively linear. You likely should lower the value of linthresh.
  col_bar = fig.colorbar(
SobieskiPropulsion: 1602 calls.
SobieskiAerodynamics: 1766 calls.
SobieskiMission: 50 calls.
SobieskiStructure: 1794 calls.

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

Gallery generated by Sphinx-Gallery