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:24:14:
    INFO - 08:24:14: *** Start MDOScenario execution ***
    INFO - 08:24:14: MDOScenario
    INFO - 08:24:14:    Disciplines: AerodynamicsScenario PropulsionScenario SobieskiMission StructureScenario
    INFO - 08:24:14:    MDO formulation: BiLevel
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize -y_4(x_shared)
    INFO - 08:24:15:    with respect to x_shared
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_1_g_2_g_3(x_shared) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +-------------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | name        | lower_bound | value | upper_bound | type  |
    INFO - 08:24:15:    +-------------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | x_shared[0] |     0.01    |  0.05 |     0.09    | float |
    INFO - 08:24:15:    | x_shared[1] |    30000    | 45000 |    60000    | float |
    INFO - 08:24:15:    | x_shared[2] |     1.4     |  1.6  |     1.8     | float |
    INFO - 08:24:15:    | x_shared[3] |     2.5     |  5.5  |     8.5     | float |
    INFO - 08:24:15:    | x_shared[4] |      40     |   55  |      70     | float |
    INFO - 08:24:15:    | x_shared[5] |     500     |  1000 |     1500    | float |
    INFO - 08:24:15:    +-------------+-------------+-------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm NLOPT_COBYLA:
    INFO - 08:24:15: ...   0%|          | 0/50 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: *** Start PropulsionScenario execution ***
    INFO - 08:24:15: PropulsionScenario
    INFO - 08:24:15:    Disciplines: SobieskiPropulsion
    INFO - 08:24:15:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize y_34(x_3)
    INFO - 08:24:15:    with respect to x_3
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_3(x_3) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | x_3  |     0.1     |  0.5  |      1      | float |
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:15: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   3%|▎         | 1/30 [00:00<00:00, 1688.53 it/sec, obj=1.11]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   7%|▋         | 2/30 [00:00<00:00, 462.51 it/sec, obj=1.14]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  10%|█         | 3/30 [00:00<00:00, 516.26 it/sec, obj=1.1]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  13%|█▎        | 4/30 [00:00<00:00, 440.59 it/sec, obj=1.11]
    INFO - 08:24:15:
    INFO - 08:24:15:
    INFO - 08:24:15: Optimization result:
    INFO - 08:24:15:    Optimizer info:
    INFO - 08:24:15:       Status: 8
    INFO - 08:24:15:       Message: Positive directional derivative for linesearch
    INFO - 08:24:15:       Number of calls to the objective function by the optimizer: 13
    INFO - 08:24:15:    Solution:
    INFO - 08:24:15:       The solution is feasible.
    INFO - 08:24:15:       Objective: 1.1087874739328383
    INFO - 08:24:15:       Standardized constraints:
    INFO - 08:24:15:          g_3 = [-0.91571362 -0.08428638  0.         -0.05794805]
    INFO - 08:24:15:       Design space:
    INFO - 08:24:15:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:15:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:       | x_3  |     0.1     | 0.4302702621790957 |      1      | float |
    INFO - 08:24:15:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15: *** End PropulsionScenario execution (time: 0:00:00.026481) ***
    INFO - 08:24:15:
    INFO - 08:24:15: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:15: AerodynamicsScenario
    INFO - 08:24:15:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:15:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize -y_24(x_2)
    INFO - 08:24:15:    with respect to x_2
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_2(x_2) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | x_2  |     0.75    |   1   |     1.25    | float |
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:15: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   3%|▎         | 1/30 [00:00<00:00, 868.21 it/sec, obj=-4.15]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   7%|▋         | 2/30 [00:00<00:00, 396.91 it/sec, obj=-4.22]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  10%|█         | 3/30 [00:00<00:00, 367.19 it/sec, obj=-4.28]
    INFO - 08:24:15:
    INFO - 08:24:15:
    INFO - 08:24:15: Optimization result:
    INFO - 08:24:15:    Optimizer info:
    INFO - 08:24:15:       Status: 8
    INFO - 08:24:15:       Message: Positive directional derivative for linesearch
    INFO - 08:24:15:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:24:15:    Solution:
    INFO - 08:24:15:       The solution is feasible.
    INFO - 08:24:15:       Objective: -4.283343558640357
    INFO - 08:24:15:       Standardized constraints:
    INFO - 08:24:15:          g_2 = -0.040000000000000036
    INFO - 08:24:15:       Design space:
    INFO - 08:24:15:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:15:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:15:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:15: *** End AerodynamicsScenario execution (time: 0:00:00.020340) ***
    INFO - 08:24:15:
    INFO - 08:24:15: *** Start StructureScenario execution ***
    INFO - 08:24:15: StructureScenario
    INFO - 08:24:15:    Disciplines: SobieskiStructure
    INFO - 08:24:15:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize -y_11(x_1)
    INFO - 08:24:15:    with respect to x_1
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_1(x_1) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:15:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | x_1[0] |     0.1     |  0.25 |     0.4     | float |
    INFO - 08:24:15:    | x_1[1] |     0.75    |   1   |     1.25    | float |
    INFO - 08:24:15:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:15: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   3%|▎         | 1/30 [00:00<00:00, 349.82 it/sec, obj=-.152]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   7%|▋         | 2/30 [00:00<00:00, 174.95 it/sec, obj=-.143]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  10%|█         | 3/30 [00:00<00:00, 156.34 it/sec, obj=-.144]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  13%|█▎        | 4/30 [00:00<00:00, 146.48 it/sec, obj=-.146]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  17%|█▋        | 5/30 [00:00<00:00, 141.20 it/sec, obj=-.155]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  20%|██        | 6/30 [00:00<00:00, 137.96 it/sec, obj=-.156]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  23%|██▎       | 7/30 [00:00<00:00, 134.72 it/sec, obj=-.156]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  27%|██▋       | 8/30 [00:00<00:00, 132.91 it/sec, obj=-.156]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  30%|███       | 9/30 [00:00<00:00, 131.94 it/sec, obj=-.156]
    INFO - 08:24:15:
    INFO - 08:24:15:
    INFO - 08:24:15: Optimization result:
    INFO - 08:24:15:    Optimizer info:
    INFO - 08:24:15:       Status: None
    INFO - 08:24:15:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:15:       Number of calls to the objective function by the optimizer: 10
    INFO - 08:24:15:    Solution:
    INFO - 08:24:15:       The solution is feasible.
    INFO - 08:24:15:       Objective: -0.15631824062042746
    INFO - 08:24:15:       Standardized constraints:
    INFO - 08:24:15:          g_1 = [ 3.99302813e-12 -2.99419226e-02 -4.49346629e-02 -5.39372764e-02
    INFO - 08:24:15:  -5.99419226e-02 -6.61963740e-02 -1.73803626e-01]
    INFO - 08:24:15:       Design space:
    INFO - 08:24:15:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:15:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:       | x_1[0] |     0.1     |        0.1         |     0.4     | float |
    INFO - 08:24:15:       | x_1[1] |     0.75    | 0.9857121415472604 |     1.25    | float |
    INFO - 08:24:15:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15: *** End StructureScenario execution (time: 0:00:00.079067) ***
    INFO - 08:24:15: ...   2%|▏         | 1/50 [00:00<00:17,  2.79 it/sec, obj=-553]
    INFO - 08:24:15:
    INFO - 08:24:15: *** Start PropulsionScenario execution ***
    INFO - 08:24:15: PropulsionScenario
    INFO - 08:24:15:    Disciplines: SobieskiPropulsion
    INFO - 08:24:15:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize y_34(x_3)
    INFO - 08:24:15:    with respect to x_3
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_3(x_3) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:15:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:    | x_3  |     0.1     | 0.4302702621790957 |      1      | float |
    INFO - 08:24:15:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:15: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   3%|▎         | 1/30 [00:00<00:00, 2169.84 it/sec, obj=1.11]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   7%|▋         | 2/30 [00:00<00:00, 490.28 it/sec, obj=1.11]
    INFO - 08:24:15:
    INFO - 08:24:15:
    INFO - 08:24:15: Optimization result:
    INFO - 08:24:15:    Optimizer info:
    INFO - 08:24:15:       Status: 8
    INFO - 08:24:15:       Message: Positive directional derivative for linesearch
    INFO - 08:24:15:       Number of calls to the objective function by the optimizer: 12
    INFO - 08:24:15:    Solution:
    INFO - 08:24:15:       The solution is feasible.
    INFO - 08:24:15:       Objective: 1.1087874739328383
    INFO - 08:24:15:       Standardized constraints:
    INFO - 08:24:15:          g_3 = [-0.75494685 -0.24505315  0.         -0.05794805]
    INFO - 08:24:15:       Design space:
    INFO - 08:24:15:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:15:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:       | x_3  |     0.1     | 0.4302702621790957 |      1      | float |
    INFO - 08:24:15:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15: *** End PropulsionScenario execution (time: 0:00:00.019954) ***
    INFO - 08:24:15:
    INFO - 08:24:15: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:15: AerodynamicsScenario
    INFO - 08:24:15:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:15:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize -y_24(x_2)
    INFO - 08:24:15:    with respect to x_2
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_2(x_2) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:15: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   3%|▎         | 1/30 [00:00<00:00, 927.74 it/sec, obj=-3.46]
    INFO - 08:24:15:
 WARNING - 08:24:15: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:15:
    INFO - 08:24:15: Optimization result:
    INFO - 08:24:15:    Optimizer info:
    INFO - 08:24:15:       Status: 8
    INFO - 08:24:15:       Message: Positive directional derivative for linesearch
    INFO - 08:24:15:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:15:    Solution:
 WARNING - 08:24:15:       The solution is not feasible.
    INFO - 08:24:15:       Objective: -3.456006478817154
    INFO - 08:24:15:       Standardized constraints:
    INFO - 08:24:15:          g_2 = 0.010000000000000009
    INFO - 08:24:15:       Design space:
    INFO - 08:24:15:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:15:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:15:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:15: *** End AerodynamicsScenario execution (time: 0:00:00.013087) ***
    INFO - 08:24:15:
    INFO - 08:24:15: *** Start StructureScenario execution ***
    INFO - 08:24:15: StructureScenario
    INFO - 08:24:15:    Disciplines: SobieskiStructure
    INFO - 08:24:15:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize -y_11(x_1)
    INFO - 08:24:15:    with respect to x_1
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_1(x_1) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:15:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:    | x_1[0] |     0.1     |        0.1         |     0.4     | float |
    INFO - 08:24:15:    | x_1[1] |     0.75    | 0.9857121415472604 |     1.25    | float |
    INFO - 08:24:15:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:15: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   3%|▎         | 1/30 [00:00<00:00, 368.02 it/sec, obj=-.193]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   7%|▋         | 2/30 [00:00<00:00, 182.23 it/sec, obj=-.212]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  10%|█         | 3/30 [00:00<00:00, 162.41 it/sec, obj=-.285]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  13%|█▎        | 4/30 [00:00<00:00, 151.04 it/sec, obj=-.285]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  17%|█▋        | 5/30 [00:00<00:00, 144.92 it/sec, obj=-.285]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  20%|██        | 6/30 [00:00<00:00, 141.46 it/sec, obj=-.285]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  23%|██▎       | 7/30 [00:00<00:00, 139.11 it/sec, obj=-.285]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  27%|██▋       | 8/30 [00:00<00:00, 136.53 it/sec, obj=-.286]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  30%|███       | 9/30 [00:00<00:00, 134.69 it/sec, obj=-.286]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  33%|███▎      | 10/30 [00:00<00:00, 133.81 it/sec, obj=-.286]
    INFO - 08:24:15:
    INFO - 08:24:15:
    INFO - 08:24:15: Optimization result:
    INFO - 08:24:15:    Optimizer info:
    INFO - 08:24:15:       Status: None
    INFO - 08:24:15:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:15:       Number of calls to the objective function by the optimizer: 11
    INFO - 08:24:15:    Solution:
    INFO - 08:24:15:       The solution is feasible.
    INFO - 08:24:15:       Objective: -0.2861511006159976
    INFO - 08:24:15:       Standardized constraints:
    INFO - 08:24:15:          g_1 = [-0.02505357 -0.02542063 -0.03358482 -0.04103714 -0.04706944 -0.20645898
    INFO - 08:24:15:  -0.03354102]
    INFO - 08:24:15:       Design space:
    INFO - 08:24:15:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:15:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:       | x_1[0] |     0.1     | 0.3999999999999848 |     0.4     | float |
    INFO - 08:24:15:       | x_1[1] |     0.75    | 0.7500000000000006 |     1.25    | float |
    INFO - 08:24:15:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15: *** End StructureScenario execution (time: 0:00:00.084934) ***
    INFO - 08:24:15: ...   4%|▍         | 2/50 [00:00<00:15,  3.18 it/sec, obj=-574]
    INFO - 08:24:15:
    INFO - 08:24:15: *** Start PropulsionScenario execution ***
    INFO - 08:24:15: PropulsionScenario
    INFO - 08:24:15:    Disciplines: SobieskiPropulsion
    INFO - 08:24:15:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize y_34(x_3)
    INFO - 08:24:15:    with respect to x_3
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_3(x_3) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:15:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:    | x_3  |     0.1     | 0.4302702621790957 |      1      | float |
    INFO - 08:24:15:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:15: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   3%|▎         | 1/30 [00:00<00:00, 2198.27 it/sec, obj=1.1]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   7%|▋         | 2/30 [00:00<00:00, 494.90 it/sec, obj=1.16]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  10%|█         | 3/30 [00:00<00:00, 547.27 it/sec, obj=1.09]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  13%|█▎        | 4/30 [00:00<00:00, 459.66 it/sec, obj=1.12]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  17%|█▋        | 5/30 [00:00<00:00, 421.78 it/sec, obj=1.12]
    INFO - 08:24:15:
    INFO - 08:24:15: ...  20%|██        | 6/30 [00:00<00:00, 402.72 it/sec, obj=1.12]
    INFO - 08:24:15:
    INFO - 08:24:15:
    INFO - 08:24:15: Optimization result:
    INFO - 08:24:15:    Optimizer info:
    INFO - 08:24:15:       Status: None
    INFO - 08:24:15:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:15:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:24:15:    Solution:
    INFO - 08:24:15:       The solution is feasible.
    INFO - 08:24:15:       Objective: 1.1169456193906955
    INFO - 08:24:15:       Standardized constraints:
    INFO - 08:24:15:          g_3 = [-7.20996205e-01 -2.79003795e-01 -2.22044605e-16 -1.27460556e-01]
    INFO - 08:24:15:       Design space:
    INFO - 08:24:15:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:15:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:       | x_3  |     0.1     | 0.2871004772038966 |      1      | float |
    INFO - 08:24:15:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15: *** End PropulsionScenario execution (time: 0:00:00.024829) ***
    INFO - 08:24:15:
    INFO - 08:24:15: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:15: AerodynamicsScenario
    INFO - 08:24:15:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:15:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize -y_24(x_2)
    INFO - 08:24:15:    with respect to x_2
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_2(x_2) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:15:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:15: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   3%|▎         | 1/30 [00:00<00:00, 905.12 it/sec, obj=-3.32]
    INFO - 08:24:15:
 WARNING - 08:24:15: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:15:
    INFO - 08:24:15: Optimization result:
    INFO - 08:24:15:    Optimizer info:
    INFO - 08:24:15:       Status: 8
    INFO - 08:24:15:       Message: Positive directional derivative for linesearch
    INFO - 08:24:15:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:15:    Solution:
 WARNING - 08:24:15:       The solution is not feasible.
    INFO - 08:24:15:       Objective: -3.3171632100551673
    INFO - 08:24:15:       Standardized constraints:
    INFO - 08:24:15:          g_2 = 0.010000000000000009
    INFO - 08:24:15:       Design space:
    INFO - 08:24:15:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:15:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:15:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:15:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:15: *** End AerodynamicsScenario execution (time: 0:00:00.018104) ***
    INFO - 08:24:15:
    INFO - 08:24:15: *** Start StructureScenario execution ***
    INFO - 08:24:15: StructureScenario
    INFO - 08:24:15:    Disciplines: SobieskiStructure
    INFO - 08:24:15:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize -y_11(x_1)
    INFO - 08:24:15:    with respect to x_1
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_1(x_1) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:15:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:    | x_1[0] |     0.1     | 0.3999999999999848 |     0.4     | float |
    INFO - 08:24:15:    | x_1[1] |     0.75    | 0.7500000000000006 |     1.25    | float |
    INFO - 08:24:15:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:15: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   3%|▎         | 1/30 [00:00<00:00, 352.11 it/sec, obj=-.272]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   7%|▋         | 2/30 [00:00<00:00, 175.74 it/sec, obj=-.272]
    INFO - 08:24:15:
    INFO - 08:24:15:
    INFO - 08:24:15: Optimization result:
    INFO - 08:24:15:    Optimizer info:
    INFO - 08:24:15:       Status: 8
    INFO - 08:24:15:       Message: Positive directional derivative for linesearch
    INFO - 08:24:15:       Number of calls to the objective function by the optimizer: 3
    INFO - 08:24:15:    Solution:
    INFO - 08:24:15:       The solution is feasible.
    INFO - 08:24:15:       Objective: -0.2721681413246109
    INFO - 08:24:15:       Standardized constraints:
    INFO - 08:24:15:          g_1 = [-0.02505357 -0.02542063 -0.03358482 -0.04103714 -0.04706944 -0.20645898
    INFO - 08:24:15:  -0.03354102]
    INFO - 08:24:15:       Design space:
    INFO - 08:24:15:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:15:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:15:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:15:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:15:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:15:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:15: *** End StructureScenario execution (time: 0:00:00.026056) ***
    INFO - 08:24:15: ...   6%|▌         | 3/50 [00:00<00:13,  3.41 it/sec, obj=-813]
    INFO - 08:24:15:
    INFO - 08:24:15: *** Start PropulsionScenario execution ***
    INFO - 08:24:15: PropulsionScenario
    INFO - 08:24:15:    Disciplines: SobieskiPropulsion
    INFO - 08:24:15:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:15: Optimization problem:
    INFO - 08:24:15:    minimize y_34(x_3)
    INFO - 08:24:15:    with respect to x_3
    INFO - 08:24:15:    subject to constraints:
    INFO - 08:24:15:       g_3(x_3) <= 0.0
    INFO - 08:24:15:    over the design space:
    INFO - 08:24:15:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:15:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15:    | x_3  |     0.1     | 0.2871004772038966 |      1      | float |
    INFO - 08:24:15:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:15: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:15: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:15:
    INFO - 08:24:15: ...   3%|▎         | 1/30 [00:00<00:00, 1933.75 it/sec, obj=1.16]
    INFO - 08:24:15:
    INFO - 08:24:16: ...   7%|▋         | 2/30 [00:00<00:00, 467.57 it/sec, obj=1.14]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  10%|█         | 3/30 [00:00<00:00, 426.26 it/sec, obj=1.14]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  13%|█▎        | 4/30 [00:00<00:00, 447.25 it/sec, obj=1.14]
    INFO - 08:24:16:
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: None
    INFO - 08:24:16:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:16:    Solution:
    INFO - 08:24:16:       The solution is feasible.
    INFO - 08:24:16:       Objective: 1.137722098693054
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_3 = [-7.10555843e-01 -2.89444157e-01  6.66133815e-16 -1.11370139e-01]
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | x_3  |     0.1     | 0.3243399096603405 |      1      | float |
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16: *** End PropulsionScenario execution (time: 0:00:00.020412) ***
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:16: AerodynamicsScenario
    INFO - 08:24:16:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize -y_24(x_2)
    INFO - 08:24:16:    with respect to x_2
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_2(x_2) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 907.66 it/sec, obj=-3.31]
    INFO - 08:24:16:
 WARNING - 08:24:16: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: 8
    INFO - 08:24:16:       Message: Positive directional derivative for linesearch
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:16:    Solution:
 WARNING - 08:24:16:       The solution is not feasible.
    INFO - 08:24:16:       Objective: -3.3146292282019347
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_2 = 0.010000000000000009
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16: *** End AerodynamicsScenario execution (time: 0:00:00.013410) ***
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start StructureScenario execution ***
    INFO - 08:24:16: StructureScenario
    INFO - 08:24:16:    Disciplines: SobieskiStructure
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize -y_11(x_1)
    INFO - 08:24:16:    with respect to x_1
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_1(x_1) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:16:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 345.12 it/sec, obj=-.274]
    INFO - 08:24:16:
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: 8
    INFO - 08:24:16:       Message: Positive directional derivative for linesearch
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:16:    Solution:
    INFO - 08:24:16:       The solution is feasible.
    INFO - 08:24:16:       Objective: -0.2737879545502587
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_1 = [-0.02505357 -0.02542063 -0.03358482 -0.04103714 -0.04706944 -0.20645898
    INFO - 08:24:16:  -0.03354102]
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:16:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16: *** End StructureScenario execution (time: 0:00:00.018440) ***
    INFO - 08:24:16: ...   8%|▊         | 4/50 [00:01<00:13,  3.50 it/sec, obj=-751]
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start PropulsionScenario execution ***
    INFO - 08:24:16: PropulsionScenario
    INFO - 08:24:16:    Disciplines: SobieskiPropulsion
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize y_34(x_3)
    INFO - 08:24:16:    with respect to x_3
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_3(x_3) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:16:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:    | x_3  |     0.1     | 0.3243399096603405 |      1      | float |
    INFO - 08:24:16:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 1869.95 it/sec, obj=1.1]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   7%|▋         | 2/30 [00:00<00:00, 465.03 it/sec, obj=1.12]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  10%|█         | 3/30 [00:00<00:00, 517.58 it/sec, obj=1.1]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  13%|█▎        | 4/30 [00:00<00:00, 440.01 it/sec, obj=1.12]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  17%|█▋        | 5/30 [00:00<00:00, 407.16 it/sec, obj=1.12]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  20%|██        | 6/30 [00:00<00:00, 335.83 it/sec, obj=1.12]
    INFO - 08:24:16:
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: None
    INFO - 08:24:16:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 14
    INFO - 08:24:16:    Solution:
    INFO - 08:24:16:       The solution is feasible.
    INFO - 08:24:16:       Objective: 1.1169456193906955
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_3 = [-7.20597051e-01 -2.79402949e-01  2.22044605e-16 -1.27460556e-01]
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16: *** End PropulsionScenario execution (time: 0:00:00.028588) ***
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:16: AerodynamicsScenario
    INFO - 08:24:16:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize -y_24(x_2)
    INFO - 08:24:16:    with respect to x_2
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_2(x_2) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 933.73 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   7%|▋         | 2/30 [00:00<00:00, 391.10 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  10%|█         | 3/30 [00:00<00:00, 443.70 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  13%|█▎        | 4/30 [00:00<00:00, 470.44 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  17%|█▋        | 5/30 [00:00<00:00, 487.21 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  20%|██        | 6/30 [00:00<00:00, 499.60 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  23%|██▎       | 7/30 [00:00<00:00, 509.93 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  27%|██▋       | 8/30 [00:00<00:00, 515.68 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  30%|███       | 9/30 [00:00<00:00, 522.33 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  33%|███▎      | 10/30 [00:00<00:00, 526.33 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  37%|███▋      | 11/30 [00:00<00:00, 412.43 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  40%|████      | 12/30 [00:00<00:00, 399.68 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  43%|████▎     | 13/30 [00:00<00:00, 409.19 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  47%|████▋     | 14/30 [00:00<00:00, 418.01 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  50%|█████     | 15/30 [00:00<00:00, 425.47 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  53%|█████▎    | 16/30 [00:00<00:00, 432.65 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  57%|█████▋    | 17/30 [00:00<00:00, 438.88 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  60%|██████    | 18/30 [00:00<00:00, 444.70 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  63%|██████▎   | 19/30 [00:00<00:00, 449.23 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  67%|██████▋   | 20/30 [00:00<00:00, 453.65 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  70%|███████   | 21/30 [00:00<00:00, 455.56 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  73%|███████▎  | 22/30 [00:00<00:00, 459.75 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  77%|███████▋  | 23/30 [00:00<00:00, 450.74 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  80%|████████  | 24/30 [00:00<00:00, 454.64 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  83%|████████▎ | 25/30 [00:00<00:00, 457.90 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  87%|████████▋ | 26/30 [00:00<00:00, 461.53 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  90%|█████████ | 27/30 [00:00<00:00, 464.92 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  93%|█████████▎| 28/30 [00:00<00:00, 466.69 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  97%|█████████▋| 29/30 [00:00<00:00, 469.88 it/sec, obj=-3.38]
    INFO - 08:24:16:
    INFO - 08:24:16: ... 100%|██████████| 30/30 [00:00<00:00, 468.02 it/sec, obj=-3.38]
    INFO - 08:24:16:
 WARNING - 08:24:16: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: None
    INFO - 08:24:16:       Message: Maximum number of iterations reached. GEMSEO Stopped the driver
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 81
    INFO - 08:24:16:    Solution:
 WARNING - 08:24:16:       The solution is not feasible.
    INFO - 08:24:16:       Objective: -3.3833585466979232
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_2 = 0.010000000000000009
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16: *** End AerodynamicsScenario execution (time: 0:00:00.075154) ***
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start StructureScenario execution ***
    INFO - 08:24:16: StructureScenario
    INFO - 08:24:16:    Disciplines: SobieskiStructure
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize -y_11(x_1)
    INFO - 08:24:16:    with respect to x_1
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_1(x_1) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:16:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 357.11 it/sec, obj=-.256]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   7%|▋         | 2/30 [00:00<00:00, 177.23 it/sec, obj=-.233]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  10%|█         | 3/30 [00:00<00:00, 158.00 it/sec, obj=-.237]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  13%|█▎        | 4/30 [00:00<00:00, 147.44 it/sec, obj=-.255]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  17%|█▋        | 5/30 [00:00<00:00, 141.89 it/sec, obj=-.255]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  20%|██        | 6/30 [00:00<00:00, 138.02 it/sec, obj=-.255]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  23%|██▎       | 7/30 [00:00<00:00, 135.61 it/sec, obj=-.255]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  27%|██▋       | 8/30 [00:00<00:00, 133.90 it/sec, obj=-.255]
    INFO - 08:24:16:
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: None
    INFO - 08:24:16:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:24:16:    Solution:
    INFO - 08:24:16:       The solution is feasible.
    INFO - 08:24:16:       Objective: -0.25541043890623544
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_1 = [-2.87847242e-02 -1.88000814e-02 -2.52039105e-02 -3.26929762e-02
    INFO - 08:24:16:  -3.92051733e-02 -2.40000000e-01 -8.00570721e-12]
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:16:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | x_1[0] |     0.1     | 0.2842628772739993 |     0.4     | float |
    INFO - 08:24:16:       | x_1[1] |     0.75    | 0.7500000000000004 |     1.25    | float |
    INFO - 08:24:16:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16: *** End StructureScenario execution (time: 0:00:00.070259) ***
    INFO - 08:24:16: ...  10%|█         | 5/50 [00:01<00:13,  3.28 it/sec, obj=-734]
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start PropulsionScenario execution ***
    INFO - 08:24:16: PropulsionScenario
    INFO - 08:24:16:    Disciplines: SobieskiPropulsion
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize y_34(x_3)
    INFO - 08:24:16:    with respect to x_3
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_3(x_3) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:16:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:    | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:24:16:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 2014.56 it/sec, obj=1.12]
    INFO - 08:24:16:
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: 8
    INFO - 08:24:16:       Message: Positive directional derivative for linesearch
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 17
    INFO - 08:24:16:    Solution:
    INFO - 08:24:16:       The solution is feasible.
    INFO - 08:24:16:       Objective: 1.1169456193906955
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_3 = [-8.42352689e-01 -1.57647311e-01  2.22044605e-16 -1.27460556e-01]
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16: *** End PropulsionScenario execution (time: 0:00:00.019025) ***
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:16: AerodynamicsScenario
    INFO - 08:24:16:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize -y_24(x_2)
    INFO - 08:24:16:    with respect to x_2
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_2(x_2) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 2106.63 it/sec, obj=-4.01]
    INFO - 08:24:16:
 WARNING - 08:24:16: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: 8
    INFO - 08:24:16:       Message: Positive directional derivative for linesearch
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:16:    Solution:
 WARNING - 08:24:16:       The solution is not feasible.
    INFO - 08:24:16:       Objective: -4.010763549231421
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_2 = 0.010000000000000009
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16: *** End AerodynamicsScenario execution (time: 0:00:00.012608) ***
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start StructureScenario execution ***
    INFO - 08:24:16: StructureScenario
    INFO - 08:24:16:    Disciplines: SobieskiStructure
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize -y_11(x_1)
    INFO - 08:24:16:    with respect to x_1
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_1(x_1) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:16:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:    | x_1[0] |     0.1     | 0.2842628772739993 |     0.4     | float |
    INFO - 08:24:16:    | x_1[1] |     0.75    | 0.7500000000000004 |     1.25    | float |
    INFO - 08:24:16:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 2024.28 it/sec, obj=-.297]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   7%|▋         | 2/30 [00:00<00:00, 220.83 it/sec, obj=-.297]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  10%|█         | 3/30 [00:00<00:00, 177.42 it/sec, obj=-.297]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  13%|█▎        | 4/30 [00:00<00:00, 158.81 it/sec, obj=-.297]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  17%|█▋        | 5/30 [00:00<00:00, 149.56 it/sec, obj=-.297]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  20%|██        | 6/30 [00:00<00:00, 143.83 it/sec, obj=-.297]
    INFO - 08:24:16:
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: 8
    INFO - 08:24:16:       Message: Positive directional derivative for linesearch
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:16:    Solution:
    INFO - 08:24:16:       The solution is feasible.
    INFO - 08:24:16:       Objective: -0.29713711523465847
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_1 = [-0.02505357 -0.02542063 -0.03358482 -0.04103714 -0.04706944 -0.20645898
    INFO - 08:24:16:  -0.03354102]
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:16:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16: *** End StructureScenario execution (time: 0:00:00.057001) ***
    INFO - 08:24:16: ...  12%|█▏        | 6/50 [00:01<00:12,  3.40 it/sec, obj=-977]
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start PropulsionScenario execution ***
    INFO - 08:24:16: PropulsionScenario
    INFO - 08:24:16:    Disciplines: SobieskiPropulsion
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize y_34(x_3)
    INFO - 08:24:16:    with respect to x_3
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_3(x_3) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:16:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:    | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:24:16:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 2126.93 it/sec, obj=1.12]
    INFO - 08:24:16:
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: 8
    INFO - 08:24:16:       Message: Positive directional derivative for linesearch
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 17
    INFO - 08:24:16:    Solution:
    INFO - 08:24:16:       The solution is feasible.
    INFO - 08:24:16:       Objective: 1.1169456193906955
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_3 = [-6.70083434e-01 -3.29916566e-01  2.22044605e-16 -1.27460556e-01]
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:24:16:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16: *** End PropulsionScenario execution (time: 0:00:00.019298) ***
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:16: AerodynamicsScenario
    INFO - 08:24:16:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize -y_24(x_2)
    INFO - 08:24:16:    with respect to x_2
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_2(x_2) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 2097.15 it/sec, obj=-3.5]
    INFO - 08:24:16:
 WARNING - 08:24:16: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: 8
    INFO - 08:24:16:       Message: Positive directional derivative for linesearch
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:16:    Solution:
 WARNING - 08:24:16:       The solution is not feasible.
    INFO - 08:24:16:       Objective: -3.4989599823565998
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_2 = 0.010000000000000009
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:16: *** End AerodynamicsScenario execution (time: 0:00:00.017771) ***
    INFO - 08:24:16:
    INFO - 08:24:16: *** Start StructureScenario execution ***
    INFO - 08:24:16: StructureScenario
    INFO - 08:24:16:    Disciplines: SobieskiStructure
    INFO - 08:24:16:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:16: Optimization problem:
    INFO - 08:24:16:    minimize -y_11(x_1)
    INFO - 08:24:16:    with respect to x_1
    INFO - 08:24:16:    subject to constraints:
    INFO - 08:24:16:       g_1(x_1) <= 0.0
    INFO - 08:24:16:    over the design space:
    INFO - 08:24:16:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:16:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:16:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:16:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:16: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:16: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   3%|▎         | 1/30 [00:00<00:00, 334.82 it/sec, obj=-.366]
    INFO - 08:24:16:
    INFO - 08:24:16: ...   7%|▋         | 2/30 [00:00<00:00, 169.85 it/sec, obj=-.342]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  10%|█         | 3/30 [00:00<00:00, 149.75 it/sec, obj=-.365]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  13%|█▎        | 4/30 [00:00<00:00, 140.05 it/sec, obj=-.365]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  17%|█▋        | 5/30 [00:00<00:00, 135.91 it/sec, obj=-.365]
    INFO - 08:24:16:
    INFO - 08:24:16: ...  20%|██        | 6/30 [00:00<00:00, 133.29 it/sec, obj=-.365]
    INFO - 08:24:16:
    INFO - 08:24:16:
    INFO - 08:24:16: Optimization result:
    INFO - 08:24:16:    Optimizer info:
    INFO - 08:24:16:       Status: None
    INFO - 08:24:16:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:16:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:16:    Solution:
    INFO - 08:24:16:       The solution is feasible.
    INFO - 08:24:16:       Objective: -0.36496565666784275
    INFO - 08:24:16:       Standardized constraints:
    INFO - 08:24:16:          g_1 = [-2.58485524e-02 -1.74692489e-02 -2.44407670e-02 -3.21952521e-02
    INFO - 08:24:16:  -3.88530648e-02 -2.40000000e-01 -9.75552972e-13]
    INFO - 08:24:16:       Design space:
    INFO - 08:24:16:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:16:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16:       | x_1[0] |     0.1     | 0.3050815823000734 |     0.4     | float |
    INFO - 08:24:16:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:24:16:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:16: *** End StructureScenario execution (time: 0:00:00.055838) ***
    INFO - 08:24:17: ...  14%|█▍        | 7/50 [00:02<00:12,  3.37 it/sec, obj=-1.05e+3]
    INFO - 08:24:17:
    INFO - 08:24:17: *** Start PropulsionScenario execution ***
    INFO - 08:24:17: PropulsionScenario
    INFO - 08:24:17:    Disciplines: SobieskiPropulsion
    INFO - 08:24:17:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:17: Optimization problem:
    INFO - 08:24:17:    minimize y_34(x_3)
    INFO - 08:24:17:    with respect to x_3
    INFO - 08:24:17:    subject to constraints:
    INFO - 08:24:17:       g_3(x_3) <= 0.0
    INFO - 08:24:17:    over the design space:
    INFO - 08:24:17:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:17:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:    | x_3  |     0.1     | 0.2871004772038968 |      1      | float |
    INFO - 08:24:17:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:17: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   3%|▎         | 1/30 [00:00<00:00, 2141.04 it/sec, obj=1.04]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   7%|▋         | 2/30 [00:00<00:00, 484.81 it/sec, obj=1.07]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  10%|█         | 3/30 [00:00<00:00, 532.59 it/sec, obj=1.05]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  13%|█▎        | 4/30 [00:00<00:00, 453.73 it/sec, obj=1.07]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  17%|█▋        | 5/30 [00:00<00:00, 360.25 it/sec, obj=1.07]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  20%|██        | 6/30 [00:00<00:00, 379.00 it/sec, obj=1.07]
    INFO - 08:24:17:
    INFO - 08:24:17:
    INFO - 08:24:17: Optimization result:
    INFO - 08:24:17:    Optimizer info:
    INFO - 08:24:17:       Status: None
    INFO - 08:24:17:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:17:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:24:17:    Solution:
    INFO - 08:24:17:       The solution is feasible.
    INFO - 08:24:17:       Objective: 1.0733793462031596
    INFO - 08:24:17:       Standardized constraints:
    INFO - 08:24:17:          g_3 = [-0.72171604 -0.27828396  0.         -0.15721712]
    INFO - 08:24:17:       Design space:
    INFO - 08:24:17:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:17:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:       | x_3  |     0.1     | 0.2068477480804932 |      1      | float |
    INFO - 08:24:17:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17: *** End PropulsionScenario execution (time: 0:00:00.026116) ***
    INFO - 08:24:17:
    INFO - 08:24:17: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:17: AerodynamicsScenario
    INFO - 08:24:17:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:17:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:17: Optimization problem:
    INFO - 08:24:17:    minimize -y_24(x_2)
    INFO - 08:24:17:    with respect to x_2
    INFO - 08:24:17:    subject to constraints:
    INFO - 08:24:17:       g_2(x_2) <= 0.0
    INFO - 08:24:17:    over the design space:
    INFO - 08:24:17:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:17:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:17:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:17: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:17: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   3%|▎         | 1/30 [00:00<00:00, 890.89 it/sec, obj=-4.65]
    INFO - 08:24:17:
 WARNING - 08:24:17: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:17:
    INFO - 08:24:17: Optimization result:
    INFO - 08:24:17:    Optimizer info:
    INFO - 08:24:17:       Status: 8
    INFO - 08:24:17:       Message: Positive directional derivative for linesearch
    INFO - 08:24:17:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:17:    Solution:
 WARNING - 08:24:17:       The solution is not feasible.
    INFO - 08:24:17:       Objective: -4.654696008207175
    INFO - 08:24:17:       Standardized constraints:
    INFO - 08:24:17:          g_2 = 0.010000000000000009
    INFO - 08:24:17:       Design space:
    INFO - 08:24:17:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:17:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:17:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:17: *** End AerodynamicsScenario execution (time: 0:00:00.013171) ***
    INFO - 08:24:17:
    INFO - 08:24:17: *** Start StructureScenario execution ***
    INFO - 08:24:17: StructureScenario
    INFO - 08:24:17:    Disciplines: SobieskiStructure
    INFO - 08:24:17:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:17: Optimization problem:
    INFO - 08:24:17:    minimize -y_11(x_1)
    INFO - 08:24:17:    with respect to x_1
    INFO - 08:24:17:    subject to constraints:
    INFO - 08:24:17:       g_1(x_1) <= 0.0
    INFO - 08:24:17:    over the design space:
    INFO - 08:24:17:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:17:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:    | x_1[0] |     0.1     | 0.3050815823000734 |     0.4     | float |
    INFO - 08:24:17:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:24:17:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:17: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   3%|▎         | 1/30 [00:00<00:00, 347.04 it/sec, obj=-.394]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   7%|▋         | 2/30 [00:00<00:00, 174.10 it/sec, obj=-.394]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  10%|█         | 3/30 [00:00<00:00, 153.62 it/sec, obj=-.394]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  13%|█▎        | 4/30 [00:00<00:00, 143.64 it/sec, obj=-.394]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  17%|█▋        | 5/30 [00:00<00:00, 137.43 it/sec, obj=-.394]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  20%|██        | 6/30 [00:00<00:00, 133.65 it/sec, obj=-.394]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  23%|██▎       | 7/30 [00:00<00:00, 131.71 it/sec, obj=-.394]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  27%|██▋       | 8/30 [00:00<00:00, 130.39 it/sec, obj=-.394]
    INFO - 08:24:17:
    INFO - 08:24:17:
    INFO - 08:24:17: Optimization result:
    INFO - 08:24:17:    Optimizer info:
    INFO - 08:24:17:       Status: None
    INFO - 08:24:17:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:17:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:24:17:    Solution:
    INFO - 08:24:17:       The solution is feasible.
    INFO - 08:24:17:       Objective: -0.3943234828131065
    INFO - 08:24:17:       Standardized constraints:
    INFO - 08:24:17:          g_1 = [-2.18016988e-02 -1.56468526e-02 -2.34022845e-02 -3.15220572e-02
    INFO - 08:24:17:  -3.83796197e-02 -2.40000000e-01 -3.33066907e-16]
    INFO - 08:24:17:       Design space:
    INFO - 08:24:17:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:17:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:       | x_1[0] |     0.1     | 0.3350305463282076 |     0.4     | float |
    INFO - 08:24:17:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:24:17:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17: *** End StructureScenario execution (time: 0:00:00.071626) ***
    INFO - 08:24:17: ...  16%|█▌        | 8/50 [00:02<00:12,  3.36 it/sec, obj=-1.67e+3]
    INFO - 08:24:17:
    INFO - 08:24:17: *** Start PropulsionScenario execution ***
    INFO - 08:24:17: PropulsionScenario
    INFO - 08:24:17:    Disciplines: SobieskiPropulsion
    INFO - 08:24:17:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:17: Optimization problem:
    INFO - 08:24:17:    minimize y_34(x_3)
    INFO - 08:24:17:    with respect to x_3
    INFO - 08:24:17:    subject to constraints:
    INFO - 08:24:17:       g_3(x_3) <= 0.0
    INFO - 08:24:17:    over the design space:
    INFO - 08:24:17:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:17:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:    | x_3  |     0.1     | 0.2068477480804932 |      1      | float |
    INFO - 08:24:17:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:17: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   3%|▎         | 1/30 [00:00<00:00, 2181.13 it/sec, obj=1.03]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   7%|▋         | 2/30 [00:00<00:00, 490.79 it/sec, obj=1.04]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  10%|█         | 3/30 [00:00<00:00, 541.81 it/sec, obj=1.03]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  13%|█▎        | 4/30 [00:00<00:00, 455.05 it/sec, obj=1.04]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  17%|█▋        | 5/30 [00:00<00:00, 406.31 it/sec, obj=1.04]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  20%|██        | 6/30 [00:00<00:00, 393.92 it/sec, obj=1.04]
    INFO - 08:24:17:
    INFO - 08:24:17:
    INFO - 08:24:17: Optimization result:
    INFO - 08:24:17:    Optimizer info:
    INFO - 08:24:17:       Status: None
    INFO - 08:24:17:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:17:       Number of calls to the objective function by the optimizer: 10
    INFO - 08:24:17:    Solution:
    INFO - 08:24:17:       The solution is feasible.
    INFO - 08:24:17:       Objective: 1.0410444624498805
    INFO - 08:24:17:       Standardized constraints:
    INFO - 08:24:17:          g_3 = [-8.51430794e-01 -1.48569206e-01  2.22044605e-16 -1.59690326e-01]
    INFO - 08:24:17:       Design space:
    INFO - 08:24:17:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:17:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:       | x_3  |     0.1     | 0.1842648745222338 |      1      | float |
    INFO - 08:24:17:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17: *** End PropulsionScenario execution (time: 0:00:00.025260) ***
    INFO - 08:24:17:
    INFO - 08:24:17: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:17: AerodynamicsScenario
    INFO - 08:24:17:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:17:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:17: Optimization problem:
    INFO - 08:24:17:    minimize -y_24(x_2)
    INFO - 08:24:17:    with respect to x_2
    INFO - 08:24:17:    subject to constraints:
    INFO - 08:24:17:       g_2(x_2) <= 0.0
    INFO - 08:24:17:    over the design space:
    INFO - 08:24:17:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:17:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:17:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:17: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:17: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   3%|▎         | 1/30 [00:00<00:00, 931.86 it/sec, obj=-5.69]
    INFO - 08:24:17:
    INFO - 08:24:17:
    INFO - 08:24:17: Optimization result:
    INFO - 08:24:17:    Optimizer info:
    INFO - 08:24:17:       Status: 8
    INFO - 08:24:17:       Message: Positive directional derivative for linesearch
    INFO - 08:24:17:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:17:    Solution:
    INFO - 08:24:17:       The solution is feasible.
    INFO - 08:24:17:       Objective: -5.6900427487038545
    INFO - 08:24:17:       Standardized constraints:
    INFO - 08:24:17:          g_2 = -0.040898733728932046
    INFO - 08:24:17:       Design space:
    INFO - 08:24:17:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:17:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:17:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:17: *** End AerodynamicsScenario execution (time: 0:00:00.012937) ***
    INFO - 08:24:17:
    INFO - 08:24:17: *** Start StructureScenario execution ***
    INFO - 08:24:17: StructureScenario
    INFO - 08:24:17:    Disciplines: SobieskiStructure
    INFO - 08:24:17:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:17: Optimization problem:
    INFO - 08:24:17:    minimize -y_11(x_1)
    INFO - 08:24:17:    with respect to x_1
    INFO - 08:24:17:    subject to constraints:
    INFO - 08:24:17:       g_1(x_1) <= 0.0
    INFO - 08:24:17:    over the design space:
    INFO - 08:24:17:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:17:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:    | x_1[0] |     0.1     | 0.3350305463282076 |     0.4     | float |
    INFO - 08:24:17:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:24:17:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:17: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   3%|▎         | 1/30 [00:00<00:00, 351.72 it/sec, obj=-.387]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   7%|▋         | 2/30 [00:00<00:00, 175.25 it/sec, obj=-.129]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  10%|█         | 3/30 [00:00<00:00, 155.50 it/sec, obj=-.163]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  13%|█▎        | 4/30 [00:00<00:00, 147.08 it/sec, obj=-.171]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  17%|█▋        | 5/30 [00:00<00:00, 139.74 it/sec, obj=-.172]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  20%|██        | 6/30 [00:00<00:00, 135.05 it/sec, obj=-.172]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  23%|██▎       | 7/30 [00:00<00:00, 132.92 it/sec, obj=-.175]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  27%|██▋       | 8/30 [00:00<00:00, 130.72 it/sec, obj=-.177]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  30%|███       | 9/30 [00:00<00:00, 129.70 it/sec, obj=-.177]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  33%|███▎      | 10/30 [00:00<00:00, 128.86 it/sec, obj=-.177]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  37%|███▋      | 11/30 [00:00<00:00, 134.98 it/sec, obj=-.177]
    INFO - 08:24:17:
    INFO - 08:24:17:
    INFO - 08:24:17: Optimization result:
    INFO - 08:24:17:    Optimizer info:
    INFO - 08:24:17:       Status: None
    INFO - 08:24:17:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:17:       Number of calls to the objective function by the optimizer: 12
    INFO - 08:24:17:    Solution:
    INFO - 08:24:17:       The solution is feasible.
    INFO - 08:24:17:       Objective: -0.17693182961895998
    INFO - 08:24:17:       Standardized constraints:
    INFO - 08:24:17:          g_1 = [ 7.59660557e-10 -2.91294365e-02 -4.40206163e-02 -5.30597917e-02
    INFO - 08:24:17:  -5.91294368e-02 -7.67607716e-02 -1.63239228e-01]
    INFO - 08:24:17:       Design space:
    INFO - 08:24:17:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:17:       | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:24:17:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:17:       | x_1[0] |     0.1     |        0.1        |     0.4     | float |
    INFO - 08:24:17:       | x_1[1] |     0.75    | 1.045173780953992 |     1.25    | float |
    INFO - 08:24:17:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:17: *** End StructureScenario execution (time: 0:00:00.091858) ***
    INFO - 08:24:17: ...  18%|█▊        | 9/50 [00:02<00:12,  3.36 it/sec, obj=-1.73e+3]
    INFO - 08:24:17:
    INFO - 08:24:17: *** Start PropulsionScenario execution ***
    INFO - 08:24:17: PropulsionScenario
    INFO - 08:24:17:    Disciplines: SobieskiPropulsion
    INFO - 08:24:17:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:17: Optimization problem:
    INFO - 08:24:17:    minimize y_34(x_3)
    INFO - 08:24:17:    with respect to x_3
    INFO - 08:24:17:    subject to constraints:
    INFO - 08:24:17:       g_3(x_3) <= 0.0
    INFO - 08:24:17:    over the design space:
    INFO - 08:24:17:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:17:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:    | x_3  |     0.1     | 0.1842648745222338 |      1      | float |
    INFO - 08:24:17:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:17: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   3%|▎         | 1/30 [00:00<00:00, 1023.75 it/sec, obj=1.01]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   7%|▋         | 2/30 [00:00<00:00, 433.99 it/sec, obj=1.02]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  10%|█         | 3/30 [00:00<00:00, 493.51 it/sec, obj=1.01]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  13%|█▎        | 4/30 [00:00<00:00, 421.80 it/sec, obj=1.02]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  17%|█▋        | 5/30 [00:00<00:00, 394.05 it/sec, obj=1.02]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  20%|██        | 6/30 [00:00<00:00, 409.27 it/sec, obj=1.02]
    INFO - 08:24:17:
    INFO - 08:24:17:
    INFO - 08:24:17: Optimization result:
    INFO - 08:24:17:    Optimizer info:
    INFO - 08:24:17:       Status: None
    INFO - 08:24:17:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:17:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:17:    Solution:
    INFO - 08:24:17:       The solution is feasible.
    INFO - 08:24:17:       Objective: 1.016000144206171
    INFO - 08:24:17:       Standardized constraints:
    INFO - 08:24:17:          g_3 = [-7.31050536e-01 -2.68949464e-01  8.88178420e-16 -1.65753519e-01]
    INFO - 08:24:17:       Design space:
    INFO - 08:24:17:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:17:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:       | x_3  |     0.1     | 0.1765337509472551 |      1      | float |
    INFO - 08:24:17:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17: *** End PropulsionScenario execution (time: 0:00:00.024879) ***
    INFO - 08:24:17:
    INFO - 08:24:17: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:17: AerodynamicsScenario
    INFO - 08:24:17:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:17:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:17: Optimization problem:
    INFO - 08:24:17:    minimize -y_24(x_2)
    INFO - 08:24:17:    with respect to x_2
    INFO - 08:24:17:    subject to constraints:
    INFO - 08:24:17:       g_2(x_2) <= 0.0
    INFO - 08:24:17:    over the design space:
    INFO - 08:24:17:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:17:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:17:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:17: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:17: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   3%|▎         | 1/30 [00:00<00:00, 938.53 it/sec, obj=-13]
    INFO - 08:24:17:
 WARNING - 08:24:17: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:17:
    INFO - 08:24:17: Optimization result:
    INFO - 08:24:17:    Optimizer info:
    INFO - 08:24:17:       Status: 8
    INFO - 08:24:17:       Message: Positive directional derivative for linesearch
    INFO - 08:24:17:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:17:    Solution:
 WARNING - 08:24:17:       The solution is not feasible.
    INFO - 08:24:17:       Objective: -13.032585586024215
    INFO - 08:24:17:       Standardized constraints:
    INFO - 08:24:17:          g_2 = 0.006789165930262353
    INFO - 08:24:17:       Design space:
    INFO - 08:24:17:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:17:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:17:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:17:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:17: *** End AerodynamicsScenario execution (time: 0:00:00.018069) ***
    INFO - 08:24:17:
    INFO - 08:24:17: *** Start StructureScenario execution ***
    INFO - 08:24:17: StructureScenario
    INFO - 08:24:17:    Disciplines: SobieskiStructure
    INFO - 08:24:17:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:17: Optimization problem:
    INFO - 08:24:17:    minimize -y_11(x_1)
    INFO - 08:24:17:    with respect to x_1
    INFO - 08:24:17:    subject to constraints:
    INFO - 08:24:17:       g_1(x_1) <= 0.0
    INFO - 08:24:17:    over the design space:
    INFO - 08:24:17:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:17:    | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:24:17:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:17:    | x_1[0] |     0.1     |        0.1        |     0.4     | float |
    INFO - 08:24:17:    | x_1[1] |     0.75    | 1.045173780953992 |     1.25    | float |
    INFO - 08:24:17:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:17: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:17: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   3%|▎         | 1/30 [00:00<00:00, 349.26 it/sec, obj=-.199]
    INFO - 08:24:17:
    INFO - 08:24:17: ...   7%|▋         | 2/30 [00:00<00:00, 173.25 it/sec, obj=-.265]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  10%|█         | 3/30 [00:00<00:00, 155.06 it/sec, obj=-.596]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  13%|█▎        | 4/30 [00:00<00:00, 145.10 it/sec, obj=-.596]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  17%|█▋        | 5/30 [00:00<00:00, 139.72 it/sec, obj=-.596]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  20%|██        | 6/30 [00:00<00:00, 136.07 it/sec, obj=-.599]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  23%|██▎       | 7/30 [00:00<00:00, 133.74 it/sec, obj=-.604]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  27%|██▋       | 8/30 [00:00<00:00, 132.02 it/sec, obj=-.605]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  30%|███       | 9/30 [00:00<00:00, 130.80 it/sec, obj=-.605]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  33%|███▎      | 10/30 [00:00<00:00, 129.81 it/sec, obj=-.605]
    INFO - 08:24:17:
    INFO - 08:24:17: ...  37%|███▋      | 11/30 [00:00<00:00, 129.10 it/sec, obj=-.605]
    INFO - 08:24:17:
    INFO - 08:24:17:
    INFO - 08:24:17: Optimization result:
    INFO - 08:24:17:    Optimizer info:
    INFO - 08:24:17:       Status: None
    INFO - 08:24:17:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:17:       Number of calls to the objective function by the optimizer: 12
    INFO - 08:24:17:    Solution:
    INFO - 08:24:17:       The solution is feasible.
    INFO - 08:24:17:       Objective: -0.6049251017149345
    INFO - 08:24:17:       Standardized constraints:
    INFO - 08:24:17:          g_1 = [ 5.48327233e-08 -7.11383608e-03 -1.92530793e-02 -2.92829605e-02
    INFO - 08:24:17:  -3.71138544e-02 -2.24260853e-01 -1.57391466e-02]
    INFO - 08:24:17:       Design space:
    INFO - 08:24:17:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:17:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17:       | x_1[0] |     0.1     | 0.3956702361274789 |     0.4     | float |
    INFO - 08:24:17:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:24:17:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:17: *** End StructureScenario execution (time: 0:00:00.095684) ***
    INFO - 08:24:18: ...  20%|██        | 10/50 [00:03<00:12,  3.31 it/sec, obj=-2.59e+3]
    INFO - 08:24:18:
    INFO - 08:24:18: *** Start PropulsionScenario execution ***
    INFO - 08:24:18: PropulsionScenario
    INFO - 08:24:18:    Disciplines: SobieskiPropulsion
    INFO - 08:24:18:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:18: Optimization problem:
    INFO - 08:24:18:    minimize y_34(x_3)
    INFO - 08:24:18:    with respect to x_3
    INFO - 08:24:18:    subject to constraints:
    INFO - 08:24:18:       g_3(x_3) <= 0.0
    INFO - 08:24:18:    over the design space:
    INFO - 08:24:18:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:18:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:    | x_3  |     0.1     | 0.1765337509472551 |      1      | float |
    INFO - 08:24:18:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:18: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   3%|▎         | 1/30 [00:00<00:00, 2076.39 it/sec, obj=0.938]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   7%|▋         | 2/30 [00:00<00:00, 451.32 it/sec, obj=0.945]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  10%|█         | 3/30 [00:00<00:00, 484.50 it/sec, obj=0.939]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  13%|█▎        | 4/30 [00:00<00:00, 420.91 it/sec, obj=0.945]
    INFO - 08:24:18:
    INFO - 08:24:18:
    INFO - 08:24:18: Optimization result:
    INFO - 08:24:18:    Optimizer info:
    INFO - 08:24:18:       Status: 8
    INFO - 08:24:18:       Message: Positive directional derivative for linesearch
    INFO - 08:24:18:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:18:    Solution:
    INFO - 08:24:18:       The solution is feasible.
    INFO - 08:24:18:       Objective: 0.9449429707434136
    INFO - 08:24:18:       Standardized constraints:
    INFO - 08:24:18:          g_3 = [-0.75714183 -0.24285817  0.         -0.17976927]
    INFO - 08:24:18:       Design space:
    INFO - 08:24:18:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:18:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:       | x_3  |     0.1     | 0.1600061006769771 |      1      | float |
    INFO - 08:24:18:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18: *** End PropulsionScenario execution (time: 0:00:00.027129) ***
    INFO - 08:24:18:
    INFO - 08:24:18: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:18: AerodynamicsScenario
    INFO - 08:24:18:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:18:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:18: Optimization problem:
    INFO - 08:24:18:    minimize -y_24(x_2)
    INFO - 08:24:18:    with respect to x_2
    INFO - 08:24:18:    subject to constraints:
    INFO - 08:24:18:       g_2(x_2) <= 0.0
    INFO - 08:24:18:    over the design space:
    INFO - 08:24:18:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:18:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:18:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:18: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:18: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   3%|▎         | 1/30 [00:00<00:00, 713.07 it/sec, obj=-6.66]
    INFO - 08:24:18:
    INFO - 08:24:18:
    INFO - 08:24:18: Optimization result:
    INFO - 08:24:18:    Optimizer info:
    INFO - 08:24:18:       Status: 8
    INFO - 08:24:18:       Message: Positive directional derivative for linesearch
    INFO - 08:24:18:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:18:    Solution:
    INFO - 08:24:18:       The solution is feasible.
    INFO - 08:24:18:       Objective: -6.655662265043204
    INFO - 08:24:18:       Standardized constraints:
    INFO - 08:24:18:          g_2 = -5.8377637395912174e-05
    INFO - 08:24:18:       Design space:
    INFO - 08:24:18:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:18:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:18:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:18: *** End AerodynamicsScenario execution (time: 0:00:00.013373) ***
    INFO - 08:24:18:
    INFO - 08:24:18: *** Start StructureScenario execution ***
    INFO - 08:24:18: StructureScenario
    INFO - 08:24:18:    Disciplines: SobieskiStructure
    INFO - 08:24:18:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:18: Optimization problem:
    INFO - 08:24:18:    minimize -y_11(x_1)
    INFO - 08:24:18:    with respect to x_1
    INFO - 08:24:18:    subject to constraints:
    INFO - 08:24:18:       g_1(x_1) <= 0.0
    INFO - 08:24:18:    over the design space:
    INFO - 08:24:18:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:18:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:    | x_1[0] |     0.1     | 0.3956702361274789 |     0.4     | float |
    INFO - 08:24:18:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:24:18:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:18: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   3%|▎         | 1/30 [00:00<00:00, 318.21 it/sec, obj=-.499]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   7%|▋         | 2/30 [00:00<00:00, 169.31 it/sec, obj=-.408]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  10%|█         | 3/30 [00:00<00:00, 151.84 it/sec, obj=-.42]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  13%|█▎        | 4/30 [00:00<00:00, 142.98 it/sec, obj=-.437]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  17%|█▋        | 5/30 [00:00<00:00, 138.14 it/sec, obj=-.496]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  20%|██        | 6/30 [00:00<00:00, 135.08 it/sec, obj=-.496]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  23%|██▎       | 7/30 [00:00<00:00, 132.93 it/sec, obj=-.496]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  27%|██▋       | 8/30 [00:00<00:00, 131.04 it/sec, obj=-.496]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  30%|███       | 9/30 [00:00<00:00, 129.65 it/sec, obj=-.496]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  33%|███▎      | 10/30 [00:00<00:00, 128.77 it/sec, obj=-.496]
    INFO - 08:24:18:
    INFO - 08:24:18:
    INFO - 08:24:18: Optimization result:
    INFO - 08:24:18:    Optimizer info:
    INFO - 08:24:18:       Status: None
    INFO - 08:24:18:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:18:       Number of calls to the objective function by the optimizer: 11
    INFO - 08:24:18:    Solution:
    INFO - 08:24:18:       The solution is feasible.
    INFO - 08:24:18:       Objective: -0.496179358856069
    INFO - 08:24:18:       Standardized constraints:
    INFO - 08:24:18:          g_1 = [ 1.84574578e-11 -1.01681845e-02 -2.26892076e-02 -3.25816393e-02
    INFO - 08:24:18:  -4.01681845e-02 -1.89656159e-01 -5.03438410e-02]
    INFO - 08:24:18:       Design space:
    INFO - 08:24:18:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:18:       | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:24:18:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:18:       | x_1[0] |     0.1     | 0.191919639882491 |     0.4     | float |
    INFO - 08:24:18:       | x_1[1] |     0.75    |        0.75       |     1.25    | float |
    INFO - 08:24:18:       +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:18: *** End StructureScenario execution (time: 0:00:00.088263) ***
    INFO - 08:24:18: ...  22%|██▏       | 11/50 [00:03<00:11,  3.32 it/sec, obj=-2.94e+3]
    INFO - 08:24:18:
    INFO - 08:24:18: *** Start PropulsionScenario execution ***
    INFO - 08:24:18: PropulsionScenario
    INFO - 08:24:18:    Disciplines: SobieskiPropulsion
    INFO - 08:24:18:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:18: Optimization problem:
    INFO - 08:24:18:    minimize y_34(x_3)
    INFO - 08:24:18:    with respect to x_3
    INFO - 08:24:18:    subject to constraints:
    INFO - 08:24:18:       g_3(x_3) <= 0.0
    INFO - 08:24:18:    over the design space:
    INFO - 08:24:18:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:18:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:    | x_3  |     0.1     | 0.1600061006769771 |      1      | float |
    INFO - 08:24:18:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:18: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   3%|▎         | 1/30 [00:00<00:00, 1987.82 it/sec, obj=0.965]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   7%|▋         | 2/30 [00:00<00:00, 483.08 it/sec, obj=0.961]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  10%|█         | 3/30 [00:00<00:00, 434.81 it/sec, obj=0.961]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  13%|█▎        | 4/30 [00:00<00:00, 395.24 it/sec, obj=0.961]
    INFO - 08:24:18:
    INFO - 08:24:18:
    INFO - 08:24:18: Optimization result:
    INFO - 08:24:18:    Optimizer info:
    INFO - 08:24:18:       Status: None
    INFO - 08:24:18:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:18:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:18:    Solution:
    INFO - 08:24:18:       The solution is feasible.
    INFO - 08:24:18:       Objective: 0.9613579205925555
    INFO - 08:24:18:       Standardized constraints:
    INFO - 08:24:18:          g_3 = [-0.72220132 -0.27779868  0.         -0.17980067]
    INFO - 08:24:18:       Design space:
    INFO - 08:24:18:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:18:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:       | x_3  |     0.1     | 0.1662234300478979 |      1      | float |
    INFO - 08:24:18:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18: *** End PropulsionScenario execution (time: 0:00:00.020308) ***
    INFO - 08:24:18:
    INFO - 08:24:18: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:18: AerodynamicsScenario
    INFO - 08:24:18:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:18:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:18: Optimization problem:
    INFO - 08:24:18:    minimize -y_24(x_2)
    INFO - 08:24:18:    with respect to x_2
    INFO - 08:24:18:    subject to constraints:
    INFO - 08:24:18:       g_2(x_2) <= 0.0
    INFO - 08:24:18:    over the design space:
    INFO - 08:24:18:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:18:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:18:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:18: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:18: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   3%|▎         | 1/30 [00:00<00:00, 931.45 it/sec, obj=-6.58]
    INFO - 08:24:18:
    INFO - 08:24:18:
    INFO - 08:24:18: Optimization result:
    INFO - 08:24:18:    Optimizer info:
    INFO - 08:24:18:       Status: 8
    INFO - 08:24:18:       Message: Positive directional derivative for linesearch
    INFO - 08:24:18:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:18:    Solution:
    INFO - 08:24:18:       The solution is feasible.
    INFO - 08:24:18:       Objective: -6.577731318595729
    INFO - 08:24:18:       Standardized constraints:
    INFO - 08:24:18:          g_2 = -0.006064709588543993
    INFO - 08:24:18:       Design space:
    INFO - 08:24:18:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:18:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:18:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:18: *** End AerodynamicsScenario execution (time: 0:00:00.013278) ***
    INFO - 08:24:18:
    INFO - 08:24:18: *** Start StructureScenario execution ***
    INFO - 08:24:18: StructureScenario
    INFO - 08:24:18:    Disciplines: SobieskiStructure
    INFO - 08:24:18:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:18: Optimization problem:
    INFO - 08:24:18:    minimize -y_11(x_1)
    INFO - 08:24:18:    with respect to x_1
    INFO - 08:24:18:    subject to constraints:
    INFO - 08:24:18:       g_1(x_1) <= 0.0
    INFO - 08:24:18:    over the design space:
    INFO - 08:24:18:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:18:    | name   | lower_bound |       value       | upper_bound | type  |
    INFO - 08:24:18:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:18:    | x_1[0] |     0.1     | 0.191919639882491 |     0.4     | float |
    INFO - 08:24:18:    | x_1[1] |     0.75    |        0.75       |     1.25    | float |
    INFO - 08:24:18:    +--------+-------------+-------------------+-------------+-------+
    INFO - 08:24:18: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:18: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   3%|▎         | 1/30 [00:00<00:00, 350.52 it/sec, obj=-.477]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   7%|▋         | 2/30 [00:00<00:00, 170.69 it/sec, obj=-.466]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  10%|█         | 3/30 [00:00<00:00, 151.62 it/sec, obj=-.476]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  13%|█▎        | 4/30 [00:00<00:00, 141.61 it/sec, obj=-.476]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  17%|█▋        | 5/30 [00:00<00:00, 135.41 it/sec, obj=-.476]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  20%|██        | 6/30 [00:00<00:00, 132.21 it/sec, obj=-.476]
    INFO - 08:24:18:
    INFO - 08:24:18:
    INFO - 08:24:18: Optimization result:
    INFO - 08:24:18:    Optimizer info:
    INFO - 08:24:18:       Status: None
    INFO - 08:24:18:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:18:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:18:    Solution:
    INFO - 08:24:18:       The solution is feasible.
    INFO - 08:24:18:       Objective: -0.47619210457591565
    INFO - 08:24:18:       Standardized constraints:
    INFO - 08:24:18:          g_1 = [-2.44249065e-15 -1.39279471e-02 -2.69189405e-02 -3.66421829e-02
    INFO - 08:24:18:  -4.39279471e-02 -1.57166909e-01 -8.28330914e-02]
    INFO - 08:24:18:       Design space:
    INFO - 08:24:18:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:18:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:       | x_1[0] |     0.1     | 0.1077337762808727 |     0.4     | float |
    INFO - 08:24:18:       | x_1[1] |     0.75    | 0.750000000000004  |     1.25    | float |
    INFO - 08:24:18:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18: *** End StructureScenario execution (time: 0:00:00.056080) ***
 WARNING - 08:24:18: MDAJacobi has reached its maximum number of iterations but the normed residual 2.189447656198491e-13 is still above the tolerance 1e-14.
    INFO - 08:24:18: ...  24%|██▍       | 12/50 [00:03<00:11,  3.22 it/sec, obj=-2.64e+3]
    INFO - 08:24:18:
    INFO - 08:24:18: *** Start PropulsionScenario execution ***
    INFO - 08:24:18: PropulsionScenario
    INFO - 08:24:18:    Disciplines: SobieskiPropulsion
    INFO - 08:24:18:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:18: Optimization problem:
    INFO - 08:24:18:    minimize y_34(x_3)
    INFO - 08:24:18:    with respect to x_3
    INFO - 08:24:18:    subject to constraints:
    INFO - 08:24:18:       g_3(x_3) <= 0.0
    INFO - 08:24:18:    over the design space:
    INFO - 08:24:18:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:18:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:    | x_3  |     0.1     | 0.1662234300478979 |      1      | float |
    INFO - 08:24:18:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:18: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   3%|▎         | 1/30 [00:00<00:00, 2167.60 it/sec, obj=0.941]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   7%|▋         | 2/30 [00:00<00:00, 459.70 it/sec, obj=0.944]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  10%|█         | 3/30 [00:00<00:00, 516.92 it/sec, obj=0.941]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  13%|█▎        | 4/30 [00:00<00:00, 441.97 it/sec, obj=0.944]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  17%|█▋        | 5/30 [00:00<00:00, 364.18 it/sec, obj=0.944]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  20%|██        | 6/30 [00:00<00:00, 355.35 it/sec, obj=0.944]
    INFO - 08:24:18:
    INFO - 08:24:18:
    INFO - 08:24:18: Optimization result:
    INFO - 08:24:18:    Optimizer info:
    INFO - 08:24:18:       Status: None
    INFO - 08:24:18:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:18:       Number of calls to the objective function by the optimizer: 10
    INFO - 08:24:18:    Solution:
    INFO - 08:24:18:       The solution is feasible.
    INFO - 08:24:18:       Objective: 0.9436080183509947
    INFO - 08:24:18:       Standardized constraints:
    INFO - 08:24:18:          g_3 = [-0.79339711 -0.20660289  0.         -0.1802682 ]
    INFO - 08:24:18:       Design space:
    INFO - 08:24:18:       +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:18:       | name | lower_bound |       value       | upper_bound | type  |
    INFO - 08:24:18:       +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:18:       | x_3  |     0.1     | 0.159999303966325 |      1      | float |
    INFO - 08:24:18:       +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:18: *** End PropulsionScenario execution (time: 0:00:00.027535) ***
    INFO - 08:24:18:
    INFO - 08:24:18: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:18: AerodynamicsScenario
    INFO - 08:24:18:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:18:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:18: Optimization problem:
    INFO - 08:24:18:    minimize -y_24(x_2)
    INFO - 08:24:18:    with respect to x_2
    INFO - 08:24:18:    subject to constraints:
    INFO - 08:24:18:       g_2(x_2) <= 0.0
    INFO - 08:24:18:    over the design space:
    INFO - 08:24:18:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:18:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:18:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:18: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:18: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   3%|▎         | 1/30 [00:00<00:00, 905.90 it/sec, obj=-7.01]
    INFO - 08:24:18:
 WARNING - 08:24:18: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:18:
    INFO - 08:24:18: Optimization result:
    INFO - 08:24:18:    Optimizer info:
    INFO - 08:24:18:       Status: 8
    INFO - 08:24:18:       Message: Positive directional derivative for linesearch
    INFO - 08:24:18:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:18:    Solution:
 WARNING - 08:24:18:       The solution is not feasible.
    INFO - 08:24:18:       Objective: -7.007094910042883
    INFO - 08:24:18:       Standardized constraints:
    INFO - 08:24:18:          g_2 = 0.0012083674137242095
    INFO - 08:24:18:       Design space:
    INFO - 08:24:18:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:18:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:18:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:18:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:18: *** End AerodynamicsScenario execution (time: 0:00:00.013863) ***
    INFO - 08:24:18:
    INFO - 08:24:18: *** Start StructureScenario execution ***
    INFO - 08:24:18: StructureScenario
    INFO - 08:24:18:    Disciplines: SobieskiStructure
    INFO - 08:24:18:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:18: Optimization problem:
    INFO - 08:24:18:    minimize -y_11(x_1)
    INFO - 08:24:18:    with respect to x_1
    INFO - 08:24:18:    subject to constraints:
    INFO - 08:24:18:       g_1(x_1) <= 0.0
    INFO - 08:24:18:    over the design space:
    INFO - 08:24:18:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:18:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:    | x_1[0] |     0.1     | 0.1077337762808727 |     0.4     | float |
    INFO - 08:24:18:    | x_1[1] |     0.75    | 0.750000000000004  |     1.25    | float |
    INFO - 08:24:18:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:18: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   3%|▎         | 1/30 [00:00<00:00, 360.49 it/sec, obj=-.466]
    INFO - 08:24:18:
    INFO - 08:24:18: ...   7%|▋         | 2/30 [00:00<00:00, 172.65 it/sec, obj=-.466]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  10%|█         | 3/30 [00:00<00:00, 155.54 it/sec, obj=-.466]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  13%|█▎        | 4/30 [00:00<00:00, 144.35 it/sec, obj=-.467]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  17%|█▋        | 5/30 [00:00<00:00, 138.79 it/sec, obj=-.468]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  20%|██        | 6/30 [00:00<00:00, 135.33 it/sec, obj=-.468]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  23%|██▎       | 7/30 [00:00<00:00, 132.88 it/sec, obj=-.468]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  27%|██▋       | 8/30 [00:00<00:00, 131.81 it/sec, obj=-.468]
    INFO - 08:24:18:
    INFO - 08:24:18: ...  30%|███       | 9/30 [00:00<00:00, 130.29 it/sec, obj=-.468]
    INFO - 08:24:18:
    INFO - 08:24:18:
    INFO - 08:24:18: Optimization result:
    INFO - 08:24:18:    Optimizer info:
    INFO - 08:24:18:       Status: None
    INFO - 08:24:18:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:18:       Number of calls to the objective function by the optimizer: 10
    INFO - 08:24:18:    Solution:
    INFO - 08:24:18:       The solution is feasible.
    INFO - 08:24:18:       Objective: -0.4681042866530542
    INFO - 08:24:18:       Standardized constraints:
    INFO - 08:24:18:          g_1 = [-1.23234756e-13 -1.12654054e-02 -2.39235811e-02 -3.37666379e-02
    INFO - 08:24:18:  -4.12654054e-02 -1.89317904e-01 -5.06820960e-02]
    INFO - 08:24:18:       Design space:
    INFO - 08:24:18:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:18:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18:       | x_1[0] |     0.1     | 0.2608753488474911 |     0.4     | float |
    INFO - 08:24:18:       | x_1[1] |     0.75    | 0.7500000000000018 |     1.25    | float |
    INFO - 08:24:18:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:18: *** End StructureScenario execution (time: 0:00:00.080624) ***
    INFO - 08:24:18: ...  26%|██▌       | 13/50 [00:03<00:11,  3.26 it/sec, obj=-2.85e+3]
 WARNING - 08:24:19: MDAJacobi has reached its maximum number of iterations but the normed residual 1.8505396985126146e-13 is still above the tolerance 1e-14.
    INFO - 08:24:19:
    INFO - 08:24:19: *** Start PropulsionScenario execution ***
    INFO - 08:24:19: PropulsionScenario
    INFO - 08:24:19:    Disciplines: SobieskiPropulsion
    INFO - 08:24:19:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:19: Optimization problem:
    INFO - 08:24:19:    minimize y_34(x_3)
    INFO - 08:24:19:    with respect to x_3
    INFO - 08:24:19:    subject to constraints:
    INFO - 08:24:19:       g_3(x_3) <= 0.0
    INFO - 08:24:19:    over the design space:
    INFO - 08:24:19:    +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:19:    | name | lower_bound |       value       | upper_bound | type  |
    INFO - 08:24:19:    +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:19:    | x_3  |     0.1     | 0.159999303966325 |      1      | float |
    INFO - 08:24:19:    +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:19: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:19: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   3%|▎         | 1/30 [00:00<00:00, 1024.75 it/sec, obj=0.96]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   7%|▋         | 2/30 [00:00<00:00, 421.37 it/sec, obj=0.958]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  10%|█         | 3/30 [00:00<00:00, 401.25 it/sec, obj=0.958]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  13%|█▎        | 4/30 [00:00<00:00, 425.14 it/sec, obj=0.958]
    INFO - 08:24:19:
    INFO - 08:24:19:
    INFO - 08:24:19: Optimization result:
    INFO - 08:24:19:    Optimizer info:
    INFO - 08:24:19:       Status: None
    INFO - 08:24:19:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:19:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:19:    Solution:
    INFO - 08:24:19:       The solution is feasible.
    INFO - 08:24:19:       Objective: 0.9578026362024442
    INFO - 08:24:19:       Standardized constraints:
    INFO - 08:24:19:          g_3 = [-7.48013700e-01 -2.51986300e-01 -5.55111512e-16 -1.79770924e-01]
    INFO - 08:24:19:       Design space:
    INFO - 08:24:19:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | x_3  |     0.1     | 0.1647594036160696 |      1      | float |
    INFO - 08:24:19:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: *** End PropulsionScenario execution (time: 0:00:00.019820) ***
    INFO - 08:24:19:
    INFO - 08:24:19: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:19: AerodynamicsScenario
    INFO - 08:24:19:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:19:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:19: Optimization problem:
    INFO - 08:24:19:    minimize -y_24(x_2)
    INFO - 08:24:19:    with respect to x_2
    INFO - 08:24:19:    subject to constraints:
    INFO - 08:24:19:       g_2(x_2) <= 0.0
    INFO - 08:24:19:    over the design space:
    INFO - 08:24:19:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:19:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:19:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:19: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:19: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   3%|▎         | 1/30 [00:00<00:00, 913.19 it/sec, obj=-6.64]
    INFO - 08:24:19:
    INFO - 08:24:19:
    INFO - 08:24:19: Optimization result:
    INFO - 08:24:19:    Optimizer info:
    INFO - 08:24:19:       Status: 8
    INFO - 08:24:19:       Message: Positive directional derivative for linesearch
    INFO - 08:24:19:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:19:    Solution:
    INFO - 08:24:19:       The solution is feasible.
    INFO - 08:24:19:       Objective: -6.6404136418734865
    INFO - 08:24:19:       Standardized constraints:
    INFO - 08:24:19:          g_2 = -0.00044780276996525537
    INFO - 08:24:19:       Design space:
    INFO - 08:24:19:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:19:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:19:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:19: *** End AerodynamicsScenario execution (time: 0:00:00.013231) ***
    INFO - 08:24:19:
    INFO - 08:24:19: *** Start StructureScenario execution ***
    INFO - 08:24:19: StructureScenario
    INFO - 08:24:19:    Disciplines: SobieskiStructure
    INFO - 08:24:19:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:19: Optimization problem:
    INFO - 08:24:19:    minimize -y_11(x_1)
    INFO - 08:24:19:    with respect to x_1
    INFO - 08:24:19:    subject to constraints:
    INFO - 08:24:19:       g_1(x_1) <= 0.0
    INFO - 08:24:19:    over the design space:
    INFO - 08:24:19:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:    | x_1[0] |     0.1     | 0.2608753488474911 |     0.4     | float |
    INFO - 08:24:19:    | x_1[1] |     0.75    | 0.7500000000000018 |     1.25    | float |
    INFO - 08:24:19:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:19: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   3%|▎         | 1/30 [00:00<00:00, 358.18 it/sec, obj=-.495]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   7%|▋         | 2/30 [00:00<00:00, 177.36 it/sec, obj=-.486]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  10%|█         | 3/30 [00:00<00:00, 158.61 it/sec, obj=-.494]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  13%|█▎        | 4/30 [00:00<00:00, 148.25 it/sec, obj=-.494]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  17%|█▋        | 5/30 [00:00<00:00, 142.68 it/sec, obj=-.494]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  20%|██        | 6/30 [00:00<00:00, 138.06 it/sec, obj=-.494]
    INFO - 08:24:19:
    INFO - 08:24:19:
    INFO - 08:24:19: Optimization result:
    INFO - 08:24:19:    Optimizer info:
    INFO - 08:24:19:       Status: None
    INFO - 08:24:19:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:19:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:19:    Solution:
    INFO - 08:24:19:       The solution is feasible.
    INFO - 08:24:19:       Objective: -0.49418708251163673
    INFO - 08:24:19:       Standardized constraints:
    INFO - 08:24:19:          g_1 = [-4.66293670e-15 -1.05070711e-02 -2.30704550e-02 -3.29476368e-02
    INFO - 08:24:19:  -4.05070711e-02 -1.87116197e-01 -5.28838033e-02]
    INFO - 08:24:19:       Design space:
    INFO - 08:24:19:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | x_1[0] |     0.1     | 0.1863632446403095 |     0.4     | float |
    INFO - 08:24:19:       | x_1[1] |     0.75    | 0.7500000000000113 |     1.25    | float |
    INFO - 08:24:19:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: *** End StructureScenario execution (time: 0:00:00.053947) ***
    INFO - 08:24:19: ...  28%|██▊       | 14/50 [00:04<00:11,  3.24 it/sec, obj=-2.79e+3]
 WARNING - 08:24:19: MDAJacobi has reached its maximum number of iterations but the normed residual 3.0145345591022575e-14 is still above the tolerance 1e-14.
    INFO - 08:24:19:
    INFO - 08:24:19: *** Start PropulsionScenario execution ***
    INFO - 08:24:19: PropulsionScenario
    INFO - 08:24:19:    Disciplines: SobieskiPropulsion
    INFO - 08:24:19:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:19: Optimization problem:
    INFO - 08:24:19:    minimize y_34(x_3)
    INFO - 08:24:19:    with respect to x_3
    INFO - 08:24:19:    subject to constraints:
    INFO - 08:24:19:       g_3(x_3) <= 0.0
    INFO - 08:24:19:    over the design space:
    INFO - 08:24:19:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:    | x_3  |     0.1     | 0.1647594036160696 |      1      | float |
    INFO - 08:24:19:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:19: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   3%|▎         | 1/30 [00:00<00:00, 1044.66 it/sec, obj=1.01]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   7%|▋         | 2/30 [00:00<00:00, 431.00 it/sec, obj=0.995]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  10%|█         | 3/30 [00:00<00:00, 350.43 it/sec, obj=0.995]
    INFO - 08:24:19:
    INFO - 08:24:19:
    INFO - 08:24:19: Optimization result:
    INFO - 08:24:19:    Optimizer info:
    INFO - 08:24:19:       Status: 8
    INFO - 08:24:19:       Message: Positive directional derivative for linesearch
    INFO - 08:24:19:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:24:19:    Solution:
    INFO - 08:24:19:       The solution is feasible.
    INFO - 08:24:19:       Objective: 0.9950812228806769
    INFO - 08:24:19:       Standardized constraints:
    INFO - 08:24:19:          g_3 = [-7.32959190e-01 -2.67040810e-01  1.11022302e-15 -1.79766267e-01]
    INFO - 08:24:19:       Design space:
    INFO - 08:24:19:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | x_3  |     0.1     | 0.1829752622791824 |      1      | float |
    INFO - 08:24:19:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: *** End PropulsionScenario execution (time: 0:00:00.020692) ***
    INFO - 08:24:19:
    INFO - 08:24:19: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:19: AerodynamicsScenario
    INFO - 08:24:19:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:19:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:19: Optimization problem:
    INFO - 08:24:19:    minimize -y_24(x_2)
    INFO - 08:24:19:    with respect to x_2
    INFO - 08:24:19:    subject to constraints:
    INFO - 08:24:19:       g_2(x_2) <= 0.0
    INFO - 08:24:19:    over the design space:
    INFO - 08:24:19:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:19:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:19:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:19: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:19: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   3%|▎         | 1/30 [00:00<00:00, 940.43 it/sec, obj=-6.07]
    INFO - 08:24:19:
 WARNING - 08:24:19: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:19:
    INFO - 08:24:19: Optimization result:
    INFO - 08:24:19:    Optimizer info:
    INFO - 08:24:19:       Status: 8
    INFO - 08:24:19:       Message: Positive directional derivative for linesearch
    INFO - 08:24:19:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:19:    Solution:
 WARNING - 08:24:19:       The solution is not feasible.
    INFO - 08:24:19:       Objective: -6.067398311847922
    INFO - 08:24:19:       Standardized constraints:
    INFO - 08:24:19:          g_2 = 0.0006192450895168289
    INFO - 08:24:19:       Design space:
    INFO - 08:24:19:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:19:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:19:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:19: *** End AerodynamicsScenario execution (time: 0:00:00.018175) ***
    INFO - 08:24:19:
    INFO - 08:24:19: *** Start StructureScenario execution ***
    INFO - 08:24:19: StructureScenario
    INFO - 08:24:19:    Disciplines: SobieskiStructure
    INFO - 08:24:19:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:19: Optimization problem:
    INFO - 08:24:19:    minimize -y_11(x_1)
    INFO - 08:24:19:    with respect to x_1
    INFO - 08:24:19:    subject to constraints:
    INFO - 08:24:19:       g_1(x_1) <= 0.0
    INFO - 08:24:19:    over the design space:
    INFO - 08:24:19:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:    | x_1[0] |     0.1     | 0.1863632446403095 |     0.4     | float |
    INFO - 08:24:19:    | x_1[1] |     0.75    | 0.7500000000000113 |     1.25    | float |
    INFO - 08:24:19:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:19: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   3%|▎         | 1/30 [00:00<00:00, 357.39 it/sec, obj=-.494]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   7%|▋         | 2/30 [00:00<00:00, 178.24 it/sec, obj=-.494]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  10%|█         | 3/30 [00:00<00:00, 155.86 it/sec, obj=-.494]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  13%|█▎        | 4/30 [00:00<00:00, 145.01 it/sec, obj=-.495]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  17%|█▋        | 5/30 [00:00<00:00, 140.15 it/sec, obj=-.495]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  20%|██        | 6/30 [00:00<00:00, 135.89 it/sec, obj=-.495]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  23%|██▎       | 7/30 [00:00<00:00, 133.83 it/sec, obj=-.495]
    INFO - 08:24:19:
    INFO - 08:24:19:
    INFO - 08:24:19: Optimization result:
    INFO - 08:24:19:    Optimizer info:
    INFO - 08:24:19:       Status: None
    INFO - 08:24:19:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:19:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:24:19:    Solution:
    INFO - 08:24:19:       The solution is feasible.
    INFO - 08:24:19:       Objective: -0.49462632990722943
    INFO - 08:24:19:       Standardized constraints:
    INFO - 08:24:19:          g_1 = [-1.55431223e-15 -9.76910494e-03 -2.22402431e-02 -3.21506333e-02
    INFO - 08:24:19:  -3.97691049e-02 -1.93330278e-01 -4.66697218e-02]
    INFO - 08:24:19:       Design space:
    INFO - 08:24:19:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | x_1[0] |     0.1     | 0.2067419576814597 |     0.4     | float |
    INFO - 08:24:19:       | x_1[1] |     0.75    | 0.7500000000000001 |     1.25    | float |
    INFO - 08:24:19:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: *** End StructureScenario execution (time: 0:00:00.062719) ***
    INFO - 08:24:19: ...  30%|███       | 15/50 [00:04<00:11,  3.16 it/sec, obj=-2.4e+3]
    INFO - 08:24:19:
    INFO - 08:24:19: *** Start PropulsionScenario execution ***
    INFO - 08:24:19: PropulsionScenario
    INFO - 08:24:19:    Disciplines: SobieskiPropulsion
    INFO - 08:24:19:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:19: Optimization problem:
    INFO - 08:24:19:    minimize y_34(x_3)
    INFO - 08:24:19:    with respect to x_3
    INFO - 08:24:19:    subject to constraints:
    INFO - 08:24:19:       g_3(x_3) <= 0.0
    INFO - 08:24:19:    over the design space:
    INFO - 08:24:19:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:    | x_3  |     0.1     | 0.1829752622791824 |      1      | float |
    INFO - 08:24:19:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:19: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   3%|▎         | 1/30 [00:00<00:00, 2174.34 it/sec, obj=0.913]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   7%|▋         | 2/30 [00:00<00:00, 500.93 it/sec, obj=0.924]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  10%|█         | 3/30 [00:00<00:00, 550.05 it/sec, obj=0.915]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  13%|█▎        | 4/30 [00:00<00:00, 462.14 it/sec, obj=0.924]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  17%|█▋        | 5/30 [00:00<00:00, 382.72 it/sec, obj=0.924]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  20%|██        | 6/30 [00:00<00:00, 400.33 it/sec, obj=0.924]
    INFO - 08:24:19:
    INFO - 08:24:19:
    INFO - 08:24:19: Optimization result:
    INFO - 08:24:19:    Optimizer info:
    INFO - 08:24:19:       Status: None
    INFO - 08:24:19:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:19:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:24:19:    Solution:
    INFO - 08:24:19:       The solution is feasible.
    INFO - 08:24:19:       Objective: 0.9239330847904542
    INFO - 08:24:19:       Standardized constraints:
    INFO - 08:24:19:          g_3 = [-7.67265363e-01 -2.32734637e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:19:       Design space:
    INFO - 08:24:19:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:19:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: *** End PropulsionScenario execution (time: 0:00:00.024998) ***
    INFO - 08:24:19:
    INFO - 08:24:19: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:19: AerodynamicsScenario
    INFO - 08:24:19:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:19:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:19: Optimization problem:
    INFO - 08:24:19:    minimize -y_24(x_2)
    INFO - 08:24:19:    with respect to x_2
    INFO - 08:24:19:    subject to constraints:
    INFO - 08:24:19:       g_2(x_2) <= 0.0
    INFO - 08:24:19:    over the design space:
    INFO - 08:24:19:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:19:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:19:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:19: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:19: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   3%|▎         | 1/30 [00:00<00:00, 915.79 it/sec, obj=-6.84]
    INFO - 08:24:19:
    INFO - 08:24:19:
    INFO - 08:24:19: Optimization result:
    INFO - 08:24:19:    Optimizer info:
    INFO - 08:24:19:       Status: 8
    INFO - 08:24:19:       Message: Positive directional derivative for linesearch
    INFO - 08:24:19:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:19:    Solution:
    INFO - 08:24:19:       The solution is feasible.
    INFO - 08:24:19:       Objective: -6.836653396296616
    INFO - 08:24:19:       Standardized constraints:
    INFO - 08:24:19:          g_2 = -7.660913015072879e-09
    INFO - 08:24:19:       Design space:
    INFO - 08:24:19:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:19:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:19:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:19:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:19: *** End AerodynamicsScenario execution (time: 0:00:00.012915) ***
    INFO - 08:24:19:
    INFO - 08:24:19: *** Start StructureScenario execution ***
    INFO - 08:24:19: StructureScenario
    INFO - 08:24:19:    Disciplines: SobieskiStructure
    INFO - 08:24:19:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:19: Optimization problem:
    INFO - 08:24:19:    minimize -y_11(x_1)
    INFO - 08:24:19:    with respect to x_1
    INFO - 08:24:19:    subject to constraints:
    INFO - 08:24:19:       g_1(x_1) <= 0.0
    INFO - 08:24:19:    over the design space:
    INFO - 08:24:19:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:    | x_1[0] |     0.1     | 0.2067419576814597 |     0.4     | float |
    INFO - 08:24:19:    | x_1[1] |     0.75    | 0.7500000000000001 |     1.25    | float |
    INFO - 08:24:19:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:19: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   3%|▎         | 1/30 [00:00<00:00, 347.56 it/sec, obj=-.498]
    INFO - 08:24:19:
    INFO - 08:24:19: ...   7%|▋         | 2/30 [00:00<00:00, 174.12 it/sec, obj=-.498]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  10%|█         | 3/30 [00:00<00:00, 155.27 it/sec, obj=-.498]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  13%|█▎        | 4/30 [00:00<00:00, 144.37 it/sec, obj=-.498]
    INFO - 08:24:19:
    INFO - 08:24:19: ...  17%|█▋        | 5/30 [00:00<00:00, 138.98 it/sec, obj=-.498]
    INFO - 08:24:19:
    INFO - 08:24:19:
    INFO - 08:24:19: Optimization result:
    INFO - 08:24:19:    Optimizer info:
    INFO - 08:24:19:       Status: None
    INFO - 08:24:19:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:19:       Number of calls to the objective function by the optimizer: 6
    INFO - 08:24:19:    Solution:
    INFO - 08:24:19:       The solution is feasible.
    INFO - 08:24:19:       Objective: -0.49756361580448816
    INFO - 08:24:19:       Standardized constraints:
    INFO - 08:24:19:          g_1 = [-2.22044605e-16 -1.01563884e-02 -2.26759370e-02 -3.25688995e-02
    INFO - 08:24:19:  -4.01563884e-02 -1.89880692e-01 -5.01193085e-02]
    INFO - 08:24:19:       Design space:
    INFO - 08:24:19:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:19:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19:       | x_1[0] |     0.1     | 0.1936837145681151 |     0.4     | float |
    INFO - 08:24:19:       | x_1[1] |     0.75    | 0.7500000000000002 |     1.25    | float |
    INFO - 08:24:19:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:19: *** End StructureScenario execution (time: 0:00:00.046279) ***
    INFO - 08:24:19: ...  32%|███▏      | 16/50 [00:04<00:10,  3.21 it/sec, obj=-3.07e+3]
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start PropulsionScenario execution ***
    INFO - 08:24:20: PropulsionScenario
    INFO - 08:24:20:    Disciplines: SobieskiPropulsion
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize y_34(x_3)
    INFO - 08:24:20:    with respect to x_3
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_3(x_3) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 2135.59 it/sec, obj=0.925]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   7%|▋         | 2/30 [00:00<00:00, 487.23 it/sec, obj=0.925]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: 8
    INFO - 08:24:20:       Message: Positive directional derivative for linesearch
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 3
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: 0.9251892859460505
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_3 = [-7.61206456e-01 -2.38793544e-01  4.44089210e-16 -1.83242630e-01]
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | x_3  |     0.1     | 0.1566205377278103 |      1      | float |
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: *** End PropulsionScenario execution (time: 0:00:00.016150) ***
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:20: AerodynamicsScenario
    INFO - 08:24:20:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize -y_24(x_2)
    INFO - 08:24:20:    with respect to x_2
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_2(x_2) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 948.51 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   7%|▋         | 2/30 [00:00<00:00, 410.12 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  10%|█         | 3/30 [00:00<00:00, 450.89 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  13%|█▎        | 4/30 [00:00<00:00, 470.82 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  17%|█▋        | 5/30 [00:00<00:00, 488.22 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  20%|██        | 6/30 [00:00<00:00, 493.38 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  23%|██▎       | 7/30 [00:00<00:00, 502.55 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  27%|██▋       | 8/30 [00:00<00:00, 501.61 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  30%|███       | 9/30 [00:00<00:00, 509.49 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  33%|███▎      | 10/30 [00:00<00:00, 499.11 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  37%|███▋      | 11/30 [00:00<00:00, 491.92 it/sec, obj=-7.01]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  40%|████      | 12/30 [00:00<00:00, 493.80 it/sec, obj=-7.01]
    INFO - 08:24:20:
 WARNING - 08:24:20: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: 8
    INFO - 08:24:20:       Message: Positive directional derivative for linesearch
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 57
    INFO - 08:24:20:    Solution:
 WARNING - 08:24:20:       The solution is not feasible.
    INFO - 08:24:20:       Objective: -7.006202923152259
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_2 = 0.00012320715726499287
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20: *** End AerodynamicsScenario execution (time: 0:00:00.040912) ***
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start StructureScenario execution ***
    INFO - 08:24:20: StructureScenario
    INFO - 08:24:20:    Disciplines: SobieskiStructure
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize -y_11(x_1)
    INFO - 08:24:20:    with respect to x_1
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_1(x_1) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | x_1[0] |     0.1     | 0.1936837145681151 |     0.4     | float |
    INFO - 08:24:20:    | x_1[1] |     0.75    | 0.7500000000000002 |     1.25    | float |
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 347.93 it/sec, obj=-.495]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   7%|▋         | 2/30 [00:00<00:00, 172.85 it/sec, obj=-.495]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  10%|█         | 3/30 [00:00<00:00, 153.27 it/sec, obj=-.495]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  13%|█▎        | 4/30 [00:00<00:00, 143.82 it/sec, obj=-.495]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: 8
    INFO - 08:24:20:       Message: Positive directional derivative for linesearch
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: -0.49513045007328005
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_1 = [ 0.         -0.00975571 -0.02222517 -0.03213616 -0.03975571 -0.19187341
    INFO - 08:24:20:  -0.04812659]
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | x_1[0] |     0.1     | 0.1888884081075827 |     0.4     | float |
    INFO - 08:24:20:       | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:24:20:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: *** End StructureScenario execution (time: 0:00:00.043705) ***
    INFO - 08:24:20: ...  34%|███▍      | 17/50 [00:05<00:10,  3.26 it/sec, obj=-3.01e+3]
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start PropulsionScenario execution ***
    INFO - 08:24:20: PropulsionScenario
    INFO - 08:24:20:    Disciplines: SobieskiPropulsion
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize y_34(x_3)
    INFO - 08:24:20:    with respect to x_3
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_3(x_3) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | x_3  |     0.1     | 0.1566205377278103 |      1      | float |
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 2226.28 it/sec, obj=0.924]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   7%|▋         | 2/30 [00:00<00:00, 504.46 it/sec, obj=0.924]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  10%|█         | 3/30 [00:00<00:00, 551.86 it/sec, obj=0.924]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  13%|█▎        | 4/30 [00:00<00:00, 455.05 it/sec, obj=0.924]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  17%|█▋        | 5/30 [00:00<00:00, 413.25 it/sec, obj=0.924]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: 8
    INFO - 08:24:20:       Message: Positive directional derivative for linesearch
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: 0.9239330847904546
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_3 = [-7.67304994e-01 -2.32695006e-01 -3.33066907e-16 -1.83255000e-01]
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | x_3  |     0.1     | 0.1562447456462874 |      1      | float |
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: *** End PropulsionScenario execution (time: 0:00:00.023867) ***
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:20: AerodynamicsScenario
    INFO - 08:24:20:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize -y_24(x_2)
    INFO - 08:24:20:    with respect to x_2
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_2(x_2) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 786.63 it/sec, obj=-7.44]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: 8
    INFO - 08:24:20:       Message: Positive directional derivative for linesearch
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: -7.443939352858946
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_2 = 8.881784197001252e-16
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20: *** End AerodynamicsScenario execution (time: 0:00:00.013256) ***
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start StructureScenario execution ***
    INFO - 08:24:20: StructureScenario
    INFO - 08:24:20:    Disciplines: SobieskiStructure
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize -y_11(x_1)
    INFO - 08:24:20:    with respect to x_1
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_1(x_1) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | x_1[0] |     0.1     | 0.1888884081075827 |     0.4     | float |
    INFO - 08:24:20:    | x_1[1] |     0.75    |        0.75        |     1.25    | float |
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 347.01 it/sec, obj=-.524]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   7%|▋         | 2/30 [00:00<00:00, 174.69 it/sec, obj=-.524]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  10%|█         | 3/30 [00:00<00:00, 155.90 it/sec, obj=-.524]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  13%|█▎        | 4/30 [00:00<00:00, 145.94 it/sec, obj=-.524]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  17%|█▋        | 5/30 [00:00<00:00, 140.43 it/sec, obj=-.525]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  20%|██        | 6/30 [00:00<00:00, 137.01 it/sec, obj=-.525]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  23%|██▎       | 7/30 [00:00<00:00, 134.74 it/sec, obj=-.525]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  27%|██▋       | 8/30 [00:00<00:00, 132.70 it/sec, obj=-.525]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: None
    INFO - 08:24:20:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: -0.5251399996605213
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_1 = [-5.18280974e-11 -1.46465246e-02 -2.77273401e-02 -3.74182465e-02
    INFO - 08:24:20:  -4.46465246e-02 -1.73028628e-01 -6.69713716e-02]
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | x_1[0] |     0.1     | 0.3067102901577426 |     0.4     | float |
    INFO - 08:24:20:       | x_1[1] |     0.75    | 0.7500000000000003 |     1.25    | float |
    INFO - 08:24:20:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: *** End StructureScenario execution (time: 0:00:00.070654) ***
    INFO - 08:24:20: ...  36%|███▌      | 18/50 [00:05<00:09,  3.29 it/sec, obj=-3.39e+3]
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start PropulsionScenario execution ***
    INFO - 08:24:20: PropulsionScenario
    INFO - 08:24:20:    Disciplines: SobieskiPropulsion
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize y_34(x_3)
    INFO - 08:24:20:    with respect to x_3
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_3(x_3) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | x_3  |     0.1     | 0.1562447456462874 |      1      | float |
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 2223.92 it/sec, obj=0.924]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   7%|▋         | 2/30 [00:00<00:00, 474.15 it/sec, obj=0.924]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: 8
    INFO - 08:24:20:       Message: Positive directional derivative for linesearch
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 17
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: 0.9239330847904543
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_3 = [-7.67237087e-01 -2.32762913e-01 -3.33066907e-16 -1.83255000e-01]
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | x_3  |     0.1     | 0.1562447456462874 |      1      | float |
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: *** End PropulsionScenario execution (time: 0:00:00.020825) ***
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:20: AerodynamicsScenario
    INFO - 08:24:20:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize -y_24(x_2)
    INFO - 08:24:20:    with respect to x_2
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_2(x_2) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 883.94 it/sec, obj=-7.94]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: 8
    INFO - 08:24:20:       Message: Positive directional derivative for linesearch
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: -7.937421254145114
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_2 = -2.220446049250313e-16
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20: *** End AerodynamicsScenario execution (time: 0:00:00.014572) ***
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start StructureScenario execution ***
    INFO - 08:24:20: StructureScenario
    INFO - 08:24:20:    Disciplines: SobieskiStructure
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize -y_11(x_1)
    INFO - 08:24:20:    with respect to x_1
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_1(x_1) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | x_1[0] |     0.1     | 0.3067102901577426 |     0.4     | float |
    INFO - 08:24:20:    | x_1[1] |     0.75    | 0.7500000000000003 |     1.25    | float |
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 348.54 it/sec, obj=-.557]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   7%|▋         | 2/30 [00:00<00:00, 174.84 it/sec, obj=-.557]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  10%|█         | 3/30 [00:00<00:00, 156.03 it/sec, obj=-.557]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  13%|█▎        | 4/30 [00:00<00:00, 145.97 it/sec, obj=-.557]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  17%|█▋        | 5/30 [00:00<00:00, 139.84 it/sec, obj=-.558]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  20%|██        | 6/30 [00:00<00:00, 136.19 it/sec, obj=-.558]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  23%|██▎       | 7/30 [00:00<00:00, 134.02 it/sec, obj=-.558]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: None
    INFO - 08:24:20:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: -0.5579880445505224
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_1 = [-0.01113901 -0.02739148 -0.03928067 -0.04761832 -0.05367848 -0.14672464
    INFO - 08:24:20:  -0.09327536]
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | x_1[0] |     0.1     | 0.3999999999999997 |     0.4     | float |
    INFO - 08:24:20:       | x_1[1] |     0.75    | 0.7500000000000001 |     1.25    | float |
    INFO - 08:24:20:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: *** End StructureScenario execution (time: 0:00:00.062618) ***
    INFO - 08:24:20: ...  38%|███▊      | 19/50 [00:05<00:09,  3.33 it/sec, obj=-3.84e+3]
 WARNING - 08:24:20: MDAJacobi has reached its maximum number of iterations but the normed residual 3.8877123894689336e-14 is still above the tolerance 1e-14.
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start PropulsionScenario execution ***
    INFO - 08:24:20: PropulsionScenario
    INFO - 08:24:20:    Disciplines: SobieskiPropulsion
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize y_34(x_3)
    INFO - 08:24:20:    with respect to x_3
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_3(x_3) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | x_3  |     0.1     | 0.1562447456462874 |      1      | float |
    INFO - 08:24:20:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 1064.81 it/sec, obj=0.947]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   7%|▋         | 2/30 [00:00<00:00, 439.52 it/sec, obj=0.945]
    INFO - 08:24:20:
    INFO - 08:24:20: ...  10%|█         | 3/30 [00:00<00:00, 409.65 it/sec, obj=0.945]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: 8
    INFO - 08:24:20:       Message: Positive directional derivative for linesearch
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: 0.9448121426729421
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_3 = [-7.55896579e-01 -2.44103421e-01  1.11022302e-15 -1.79791759e-01]
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:       | x_3  |     0.1     | 0.1599813390454214 |      1      | float |
    INFO - 08:24:20:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: *** End PropulsionScenario execution (time: 0:00:00.024878) ***
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:20: AerodynamicsScenario
    INFO - 08:24:20:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize -y_24(x_2)
    INFO - 08:24:20:    with respect to x_2
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_2(x_2) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:20:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 933.10 it/sec, obj=-7.58]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: 8
    INFO - 08:24:20:       Message: Positive directional derivative for linesearch
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: -7.582140362685478
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_2 = 2.220446049250313e-16
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:20:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:20: *** End AerodynamicsScenario execution (time: 0:00:00.013497) ***
    INFO - 08:24:20:
    INFO - 08:24:20: *** Start StructureScenario execution ***
    INFO - 08:24:20: StructureScenario
    INFO - 08:24:20:    Disciplines: SobieskiStructure
    INFO - 08:24:20:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:20: Optimization problem:
    INFO - 08:24:20:    minimize -y_11(x_1)
    INFO - 08:24:20:    with respect to x_1
    INFO - 08:24:20:    subject to constraints:
    INFO - 08:24:20:       g_1(x_1) <= 0.0
    INFO - 08:24:20:    over the design space:
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20:    | x_1[0] |     0.1     | 0.3999999999999997 |     0.4     | float |
    INFO - 08:24:20:    | x_1[1] |     0.75    | 0.7500000000000001 |     1.25    | float |
    INFO - 08:24:20:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:20: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:20: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   3%|▎         | 1/30 [00:00<00:00, 343.12 it/sec, obj=-.548]
    INFO - 08:24:20:
    INFO - 08:24:20: ...   7%|▋         | 2/30 [00:00<00:00, 170.56 it/sec, obj=-.548]
    INFO - 08:24:20:
    INFO - 08:24:20:
    INFO - 08:24:20: Optimization result:
    INFO - 08:24:20:    Optimizer info:
    INFO - 08:24:20:       Status: 8
    INFO - 08:24:20:       Message: Positive directional derivative for linesearch
    INFO - 08:24:20:       Number of calls to the objective function by the optimizer: 3
    INFO - 08:24:20:    Solution:
    INFO - 08:24:20:       The solution is feasible.
    INFO - 08:24:20:       Objective: -0.5482123795932845
    INFO - 08:24:20:       Standardized constraints:
    INFO - 08:24:20:          g_1 = [-0.00443104 -0.02161932 -0.03446398 -0.04353093 -0.05014231 -0.15621602
    INFO - 08:24:20:  -0.08378398]
    INFO - 08:24:20:       Design space:
    INFO - 08:24:20:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:20:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:20:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:20:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:20:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:20:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:20: *** End StructureScenario execution (time: 0:00:00.027076) ***
    INFO - 08:24:20: ...  40%|████      | 20/50 [00:05<00:08,  3.34 it/sec, obj=-3.58e+3]
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start PropulsionScenario execution ***
    INFO - 08:24:21: PropulsionScenario
    INFO - 08:24:21:    Disciplines: SobieskiPropulsion
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize y_34(x_3)
    INFO - 08:24:21:    with respect to x_3
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_3(x_3) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:    | x_3  |     0.1     | 0.1599813390454214 |      1      | float |
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 2055.02 it/sec, obj=0.924]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   7%|▋         | 2/30 [00:00<00:00, 478.23 it/sec, obj=0.925]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  10%|█         | 3/30 [00:00<00:00, 531.53 it/sec, obj=0.924]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  13%|█▎        | 4/30 [00:00<00:00, 448.94 it/sec, obj=0.925]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: 8
    INFO - 08:24:21:       Message: Positive directional derivative for linesearch
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: 0.9251015972669371
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_3 = [-7.84107623e-01 -2.15892377e-01  1.33226763e-15 -1.83255000e-01]
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:       | x_3  |     0.1     | 0.1566040745652442 |      1      | float |
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21: *** End PropulsionScenario execution (time: 0:00:00.022444) ***
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:21: AerodynamicsScenario
    INFO - 08:24:21:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize -y_24(x_2)
    INFO - 08:24:21:    with respect to x_2
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_2(x_2) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 891.84 it/sec, obj=-7.85]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: 8
    INFO - 08:24:21:       Message: Positive directional derivative for linesearch
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: -7.8475265129037615
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_2 = -0.014276119292126577
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21: *** End AerodynamicsScenario execution (time: 0:00:00.013255) ***
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start StructureScenario execution ***
    INFO - 08:24:21: StructureScenario
    INFO - 08:24:21:    Disciplines: SobieskiStructure
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize -y_11(x_1)
    INFO - 08:24:21:    with respect to x_1
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_1(x_1) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:21:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 348.91 it/sec, obj=-.535]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   7%|▋         | 2/30 [00:00<00:00, 171.43 it/sec, obj=-.502]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  10%|█         | 3/30 [00:00<00:00, 153.44 it/sec, obj=-.534]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  13%|█▎        | 4/30 [00:00<00:00, 143.66 it/sec, obj=-.534]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  17%|█▋        | 5/30 [00:00<00:00, 138.31 it/sec, obj=-.534]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  20%|██        | 6/30 [00:00<00:00, 135.29 it/sec, obj=-.534]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: None
    INFO - 08:24:21:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: -0.5336548601537184
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_1 = [-3.78097553e-12 -1.77187194e-02 -3.11835594e-02 -4.07362170e-02
    INFO - 08:24:21:  -4.77187194e-02 -1.21178332e-01 -1.18821668e-01]
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:       | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:21:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:       | x_1[0] |     0.1     |  0.2647821598084   |     0.4     | float |
    INFO - 08:24:21:       | x_1[1] |     0.75    | 0.7500000000000022 |     1.25    | float |
    INFO - 08:24:21:       +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21: *** End StructureScenario execution (time: 0:00:00.054864) ***
    INFO - 08:24:21: ...  42%|████▏     | 21/50 [00:06<00:08,  3.37 it/sec, obj=-3.66e+3]
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start PropulsionScenario execution ***
    INFO - 08:24:21: PropulsionScenario
    INFO - 08:24:21:    Disciplines: SobieskiPropulsion
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize y_34(x_3)
    INFO - 08:24:21:    with respect to x_3
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_3(x_3) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:    | x_3  |     0.1     | 0.1566040745652442 |      1      | float |
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 2138.86 it/sec, obj=0.924]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   7%|▋         | 2/30 [00:00<00:00, 484.69 it/sec, obj=0.924]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  10%|█         | 3/30 [00:00<00:00, 537.25 it/sec, obj=0.924]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  13%|█▎        | 4/30 [00:00<00:00, 452.61 it/sec, obj=0.924]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  17%|█▋        | 5/30 [00:00<00:00, 415.38 it/sec, obj=0.924]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  20%|██        | 6/30 [00:00<00:00, 427.52 it/sec, obj=0.924]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: None
    INFO - 08:24:21:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: 0.9239330847904544
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_3 = [-8.26866726e-01 -1.73133274e-01 -2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:       | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21: *** End PropulsionScenario execution (time: 0:00:00.024419) ***
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:21: AerodynamicsScenario
    INFO - 08:24:21:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize -y_24(x_2)
    INFO - 08:24:21:    with respect to x_2
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_2(x_2) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 933.94 it/sec, obj=-8.37]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: 8
    INFO - 08:24:21:       Message: Positive directional derivative for linesearch
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: -8.371335260462438
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_2 = 2.220446049250313e-16
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21: *** End AerodynamicsScenario execution (time: 0:00:00.013177) ***
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start StructureScenario execution ***
    INFO - 08:24:21: StructureScenario
    INFO - 08:24:21:    Disciplines: SobieskiStructure
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize -y_11(x_1)
    INFO - 08:24:21:    with respect to x_1
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_1(x_1) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:    | name   | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:21:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:    | x_1[0] |     0.1     |  0.2647821598084   |     0.4     | float |
    INFO - 08:24:21:    | x_1[1] |     0.75    | 0.7500000000000022 |     1.25    | float |
    INFO - 08:24:21:    +--------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 348.60 it/sec, obj=-.518]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   7%|▋         | 2/30 [00:00<00:00, 174.71 it/sec, obj=-.518]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  10%|█         | 3/30 [00:00<00:00, 155.92 it/sec, obj=-.518]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  13%|█▎        | 4/30 [00:00<00:00, 145.85 it/sec, obj=-.518]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  17%|█▋        | 5/30 [00:00<00:00, 140.21 it/sec, obj=-.519]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: 8
    INFO - 08:24:21:       Message: Positive directional derivative for linesearch
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 6
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: -0.5193563723938468
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_1 = [-0.02722058 -0.04122957 -0.05082812 -0.05741735 -0.06215604 -0.12499785
    INFO - 08:24:21:  -0.11500215]
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:21:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21: *** End StructureScenario execution (time: 0:00:00.051033) ***
    INFO - 08:24:21: ...  44%|████▍     | 22/50 [00:06<00:08,  3.40 it/sec, obj=-3.77e+3]
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start PropulsionScenario execution ***
    INFO - 08:24:21: PropulsionScenario
    INFO - 08:24:21:    Disciplines: SobieskiPropulsion
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize y_34(x_3)
    INFO - 08:24:21:    with respect to x_3
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_3(x_3) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:    | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 2086.72 it/sec, obj=0.927]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   7%|▋         | 2/30 [00:00<00:00, 479.92 it/sec, obj=0.927]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  10%|█         | 3/30 [00:00<00:00, 365.84 it/sec, obj=0.927]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  13%|█▎        | 4/30 [00:00<00:00, 395.61 it/sec, obj=0.927]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: None
    INFO - 08:24:21:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: 0.9265588362570738
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_3 = [-7.51803331e-01 -2.48196669e-01 -2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:       | x_3  |     0.1     | 0.1570583105881983 |      1      | float |
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21: *** End PropulsionScenario execution (time: 0:00:00.020387) ***
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:21: AerodynamicsScenario
    INFO - 08:24:21:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize -y_24(x_2)
    INFO - 08:24:21:    with respect to x_2
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_2(x_2) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 905.51 it/sec, obj=-7.84]
    INFO - 08:24:21:
 WARNING - 08:24:21: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: 8
    INFO - 08:24:21:       Message: Positive directional derivative for linesearch
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:21:    Solution:
 WARNING - 08:24:21:       The solution is not feasible.
    INFO - 08:24:21:       Objective: -7.835881874625267
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_2 = 0.0016975456444545678
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21: *** End AerodynamicsScenario execution (time: 0:00:00.013455) ***
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start StructureScenario execution ***
    INFO - 08:24:21: StructureScenario
    INFO - 08:24:21:    Disciplines: SobieskiStructure
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize -y_11(x_1)
    INFO - 08:24:21:    with respect to x_1
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_1(x_1) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:21:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 353.95 it/sec, obj=-.553]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: 8
    INFO - 08:24:21:       Message: Positive directional derivative for linesearch
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: -0.5529320868211332
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_1 = [-0.01688178 -0.03135845 -0.04230781 -0.05006495 -0.05573119 -0.14672464
    INFO - 08:24:21:  -0.09327536]
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:21:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21: *** End StructureScenario execution (time: 0:00:00.018676) ***
    INFO - 08:24:21: ...  46%|████▌     | 23/50 [00:06<00:07,  3.43 it/sec, obj=-3.75e+3]
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start PropulsionScenario execution ***
    INFO - 08:24:21: PropulsionScenario
    INFO - 08:24:21:    Disciplines: SobieskiPropulsion
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize y_34(x_3)
    INFO - 08:24:21:    with respect to x_3
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_3(x_3) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:    | x_3  |     0.1     | 0.1570583105881983 |      1      | float |
    INFO - 08:24:21:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 2076.39 it/sec, obj=1]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   7%|▋         | 2/30 [00:00<00:00, 480.03 it/sec, obj=0.986]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  10%|█         | 3/30 [00:00<00:00, 435.12 it/sec, obj=0.986]
    INFO - 08:24:21:
    INFO - 08:24:21: ...  13%|█▎        | 4/30 [00:00<00:00, 398.27 it/sec, obj=0.986]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: None
    INFO - 08:24:21:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: 0.9855112506293789
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_3 = [-7.41498945e-01 -2.58501055e-01 -1.11022302e-16 -1.83255000e-01]
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21:       | x_3  |     0.1     | 0.1827444258226188 |      1      | float |
    INFO - 08:24:21:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:21: *** End PropulsionScenario execution (time: 0:00:00.020360) ***
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:21: AerodynamicsScenario
    INFO - 08:24:21:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize -y_24(x_2)
    INFO - 08:24:21:    with respect to x_2
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_2(x_2) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 925.28 it/sec, obj=-6.84]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: 8
    INFO - 08:24:21:       Message: Positive directional derivative for linesearch
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: -6.844945579945089
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_2 = -4.440892098500626e-16
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:21: *** End AerodynamicsScenario execution (time: 0:00:00.013088) ***
    INFO - 08:24:21:
    INFO - 08:24:21: *** Start StructureScenario execution ***
    INFO - 08:24:21: StructureScenario
    INFO - 08:24:21:    Disciplines: SobieskiStructure
    INFO - 08:24:21:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:21: Optimization problem:
    INFO - 08:24:21:    minimize -y_11(x_1)
    INFO - 08:24:21:    with respect to x_1
    INFO - 08:24:21:    subject to constraints:
    INFO - 08:24:21:       g_1(x_1) <= 0.0
    INFO - 08:24:21:    over the design space:
    INFO - 08:24:21:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:21:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:21: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:21:
    INFO - 08:24:21: ...   3%|▎         | 1/30 [00:00<00:00, 349.88 it/sec, obj=-.548]
    INFO - 08:24:21:
    INFO - 08:24:21:
    INFO - 08:24:21: Optimization result:
    INFO - 08:24:21:    Optimizer info:
    INFO - 08:24:21:       Status: 8
    INFO - 08:24:21:       Message: Positive directional derivative for linesearch
    INFO - 08:24:21:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:21:    Solution:
    INFO - 08:24:21:       The solution is feasible.
    INFO - 08:24:21:       Objective: -0.547887339587595
    INFO - 08:24:21:       Standardized constraints:
    INFO - 08:24:21:          g_1 = [-0.00443104 -0.02161932 -0.03446398 -0.04353093 -0.05014231 -0.15621602
    INFO - 08:24:21:  -0.08378398]
    INFO - 08:24:21:       Design space:
    INFO - 08:24:21:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:21:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:21:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:21:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:21: *** End StructureScenario execution (time: 0:00:00.018453) ***
    INFO - 08:24:21: ...  48%|████▊     | 24/50 [00:06<00:07,  3.44 it/sec, obj=-2.94e+3]
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start PropulsionScenario execution ***
    INFO - 08:24:22: PropulsionScenario
    INFO - 08:24:22:    Disciplines: SobieskiPropulsion
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize y_34(x_3)
    INFO - 08:24:22:    with respect to x_3
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_3(x_3) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:    | x_3  |     0.1     | 0.1827444258226188 |      1      | float |
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 2098.20 it/sec, obj=0.913]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   7%|▋         | 2/30 [00:00<00:00, 486.27 it/sec, obj=0.924]
    INFO - 08:24:22:
    INFO - 08:24:22: ...  10%|█         | 3/30 [00:00<00:00, 539.34 it/sec, obj=0.915]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: 0.9239330847904544
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_3 = [-0.74389718 -0.25610282  0.         -0.183255  ]
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:       | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22: *** End PropulsionScenario execution (time: 0:00:00.019638) ***
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:22: AerodynamicsScenario
    INFO - 08:24:22:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize -y_24(x_2)
    INFO - 08:24:22:    with respect to x_2
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_2(x_2) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 920.41 it/sec, obj=-7.59]
    INFO - 08:24:22:
 WARNING - 08:24:22: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
 WARNING - 08:24:22:       The solution is not feasible.
    INFO - 08:24:22:       Objective: -7.588321332233691
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_2 = 0.0006766757786100808
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22: *** End AerodynamicsScenario execution (time: 0:00:00.019121) ***
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start StructureScenario execution ***
    INFO - 08:24:22: StructureScenario
    INFO - 08:24:22:    Disciplines: SobieskiStructure
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize -y_11(x_1)
    INFO - 08:24:22:    with respect to x_1
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_1(x_1) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:22:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 365.90 it/sec, obj=-.544]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: -0.5435697481227609
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_1 = [-0.01340661 -0.0289632  -0.04048195 -0.04859014 -0.05449433 -0.14672464
    INFO - 08:24:22:  -0.09327536]
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:22:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22: *** End StructureScenario execution (time: 0:00:00.018885) ***
    INFO - 08:24:22: ...  50%|█████     | 25/50 [00:07<00:07,  3.45 it/sec, obj=-3.71e+3]
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start PropulsionScenario execution ***
    INFO - 08:24:22: PropulsionScenario
    INFO - 08:24:22:    Disciplines: SobieskiPropulsion
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize y_34(x_3)
    INFO - 08:24:22:    with respect to x_3
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_3(x_3) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:    | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 2007.80 it/sec, obj=0.924]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: 0.9239330847904544
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_3 = [-0.76718646 -0.23281354  0.         -0.183255  ]
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:       | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22: *** End PropulsionScenario execution (time: 0:00:00.013097) ***
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:22: AerodynamicsScenario
    INFO - 08:24:22:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize -y_24(x_2)
    INFO - 08:24:22:    with respect to x_2
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_2(x_2) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 2064.13 it/sec, obj=-8.06]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: -8.057471591025651
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_2 = 0.0
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22: *** End AerodynamicsScenario execution (time: 0:00:00.012611) ***
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start StructureScenario execution ***
    INFO - 08:24:22: StructureScenario
    INFO - 08:24:22:    Disciplines: SobieskiStructure
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize -y_11(x_1)
    INFO - 08:24:22:    with respect to x_1
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_1(x_1) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:22:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 1961.79 it/sec, obj=-.566]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: -0.5663669640583606
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_1 = [-0.01805093 -0.03333915 -0.04424381 -0.05182998 -0.05732217 -0.13720865
    INFO - 08:24:22:  -0.10279135]
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:22:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22: *** End StructureScenario execution (time: 0:00:00.016312) ***
    INFO - 08:24:22: ...  52%|█████▏    | 26/50 [00:07<00:06,  3.51 it/sec, obj=-3.96e+3]
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start PropulsionScenario execution ***
    INFO - 08:24:22: PropulsionScenario
    INFO - 08:24:22:    Disciplines: SobieskiPropulsion
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize y_34(x_3)
    INFO - 08:24:22:    with respect to x_3
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_3(x_3) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:    | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 1922.23 it/sec, obj=0.931]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   7%|▋         | 2/30 [00:00<00:00, 481.97 it/sec, obj=0.93]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 3
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: 0.9304261864856944
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_3 = [-7.65100836e-01 -2.34899164e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:22:       | name | lower_bound |       value       | upper_bound | type  |
    INFO - 08:24:22:       +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:22:       | x_3  |     0.1     | 0.158297465782302 |      1      | float |
    INFO - 08:24:22:       +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:22: *** End PropulsionScenario execution (time: 0:00:00.015807) ***
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:22: AerodynamicsScenario
    INFO - 08:24:22:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize -y_24(x_2)
    INFO - 08:24:22:    with respect to x_2
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_2(x_2) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 896.99 it/sec, obj=-7.95]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: -7.953469822448724
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_2 = -0.00016498424778843557
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22: *** End AerodynamicsScenario execution (time: 0:00:00.013417) ***
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start StructureScenario execution ***
    INFO - 08:24:22: StructureScenario
    INFO - 08:24:22:    Disciplines: SobieskiStructure
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize -y_11(x_1)
    INFO - 08:24:22:    with respect to x_1
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_1(x_1) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:22:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 319.76 it/sec, obj=-.566]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: -0.5659064896386437
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_1 = [-0.01755166 -0.03297976 -0.04396432 -0.05160161 -0.05712921 -0.13720865
    INFO - 08:24:22:  -0.10279135]
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:22:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22: *** End StructureScenario execution (time: 0:00:00.019193) ***
    INFO - 08:24:22: ...  54%|█████▍    | 27/50 [00:07<00:06,  3.56 it/sec, obj=-3.87e+3]
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start PropulsionScenario execution ***
    INFO - 08:24:22: PropulsionScenario
    INFO - 08:24:22:    Disciplines: SobieskiPropulsion
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize y_34(x_3)
    INFO - 08:24:22:    with respect to x_3
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_3(x_3) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:22:    | name | lower_bound |       value       | upper_bound | type  |
    INFO - 08:24:22:    +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:22:    | x_3  |     0.1     | 0.158297465782302 |      1      | float |
    INFO - 08:24:22:    +------+-------------+-------------------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 2039.04 it/sec, obj=0.923]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   7%|▋         | 2/30 [00:00<00:00, 473.72 it/sec, obj=0.924]
    INFO - 08:24:22:
    INFO - 08:24:22: ...  10%|█         | 3/30 [00:00<00:00, 528.23 it/sec, obj=0.923]
    INFO - 08:24:22:
    INFO - 08:24:22: ...  13%|█▎        | 4/30 [00:00<00:00, 372.19 it/sec, obj=0.924]
    INFO - 08:24:22:
    INFO - 08:24:22: ...  17%|█▋        | 5/30 [00:00<00:00, 363.08 it/sec, obj=0.924]
    INFO - 08:24:22:
    INFO - 08:24:22: ...  20%|██        | 6/30 [00:00<00:00, 262.08 it/sec, obj=0.924]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: None
    INFO - 08:24:22:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 19
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: 0.9239604613334125
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_3 = [-7.72113382e-01 -2.27886618e-01 -2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:       | x_3  |     0.1     | 0.1562531146502505 |      1      | float |
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22: *** End PropulsionScenario execution (time: 0:00:00.033309) ***
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:22: AerodynamicsScenario
    INFO - 08:24:22:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize -y_24(x_2)
    INFO - 08:24:22:    with respect to x_2
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_2(x_2) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 910.02 it/sec, obj=-8.06]
    INFO - 08:24:22:
 WARNING - 08:24:22: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
 WARNING - 08:24:22:       The solution is not feasible.
    INFO - 08:24:22:       Objective: -8.061363685996323
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_2 = 0.00033106978947294863
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22: *** End AerodynamicsScenario execution (time: 0:00:00.013197) ***
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start StructureScenario execution ***
    INFO - 08:24:22: StructureScenario
    INFO - 08:24:22:    Disciplines: SobieskiStructure
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize -y_11(x_1)
    INFO - 08:24:22:    with respect to x_1
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_1(x_1) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:22:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 349.88 it/sec, obj=-.562]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: -0.562195416811245
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_1 = [-0.01987255 -0.03476848 -0.04539641 -0.05279075 -0.0581443  -0.13608879
    INFO - 08:24:22:  -0.10391121]
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:22:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22: *** End StructureScenario execution (time: 0:00:00.018388) ***
    INFO - 08:24:22: ...  56%|█████▌    | 28/50 [00:07<00:06,  3.60 it/sec, obj=-3.95e+3]
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start PropulsionScenario execution ***
    INFO - 08:24:22: PropulsionScenario
    INFO - 08:24:22:    Disciplines: SobieskiPropulsion
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize y_34(x_3)
    INFO - 08:24:22:    with respect to x_3
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_3(x_3) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:    | x_3  |     0.1     | 0.1562531146502505 |      1      | float |
    INFO - 08:24:22:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 1893.59 it/sec, obj=0.929]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   7%|▋         | 2/30 [00:00<00:00, 404.09 it/sec, obj=0.928]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 3
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: 0.9281930735802203
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_3 = [-7.65089824e-01 -2.34910176e-01  2.22044605e-16 -1.82567888e-01]
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22:       | x_3  |     0.1     | 0.1569735643304175 |      1      | float |
    INFO - 08:24:22:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:22: *** End PropulsionScenario execution (time: 0:00:00.018283) ***
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:22: AerodynamicsScenario
    INFO - 08:24:22:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize -y_24(x_2)
    INFO - 08:24:22:    with respect to x_2
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_2(x_2) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 924.67 it/sec, obj=-8.01]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: -8.009097954743929
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_2 = 0.0
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:22: *** End AerodynamicsScenario execution (time: 0:00:00.013416) ***
    INFO - 08:24:22:
    INFO - 08:24:22: *** Start StructureScenario execution ***
    INFO - 08:24:22: StructureScenario
    INFO - 08:24:22:    Disciplines: SobieskiStructure
    INFO - 08:24:22:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:22: Optimization problem:
    INFO - 08:24:22:    minimize -y_11(x_1)
    INFO - 08:24:22:    with respect to x_1
    INFO - 08:24:22:    subject to constraints:
    INFO - 08:24:22:       g_1(x_1) <= 0.0
    INFO - 08:24:22:    over the design space:
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:22:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:22: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:22:
    INFO - 08:24:22: ...   3%|▎         | 1/30 [00:00<00:00, 356.69 it/sec, obj=-.566]
    INFO - 08:24:22:
    INFO - 08:24:22:
    INFO - 08:24:22: Optimization result:
    INFO - 08:24:22:    Optimizer info:
    INFO - 08:24:22:       Status: 8
    INFO - 08:24:22:       Message: Positive directional derivative for linesearch
    INFO - 08:24:22:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:22:    Solution:
    INFO - 08:24:22:       The solution is feasible.
    INFO - 08:24:22:       Objective: -0.5660121633284011
    INFO - 08:24:22:       Standardized constraints:
    INFO - 08:24:22:          g_1 = [-0.01805093 -0.03333915 -0.04424381 -0.05182998 -0.05732217 -0.13720865
    INFO - 08:24:22:  -0.10279135]
    INFO - 08:24:22:       Design space:
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:22:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:22:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:22: *** End StructureScenario execution (time: 0:00:00.018881) ***
    INFO - 08:24:22: ...  58%|█████▊    | 29/50 [00:07<00:05,  3.64 it/sec, obj=-3.93e+3]
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start PropulsionScenario execution ***
    INFO - 08:24:23: PropulsionScenario
    INFO - 08:24:23:    Disciplines: SobieskiPropulsion
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize y_34(x_3)
    INFO - 08:24:23:    with respect to x_3
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_3(x_3) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | x_3  |     0.1     | 0.1569735643304175 |      1      | float |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 2193.67 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   7%|▋         | 2/30 [00:00<00:00, 496.72 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  10%|█         | 3/30 [00:00<00:00, 547.06 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  13%|█▎        | 4/30 [00:00<00:00, 457.69 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  17%|█▋        | 5/30 [00:00<00:00, 380.46 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  20%|██        | 6/30 [00:00<00:00, 396.45 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: None
    INFO - 08:24:23:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: 0.9240568558468601
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_3 = [-0.7659489 -0.2340511  0.        -0.183255 ]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | x_3  |     0.1     | 0.1562826012928182 |      1      | float |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: *** End PropulsionScenario execution (time: 0:00:00.025207) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:23: AerodynamicsScenario
    INFO - 08:24:23:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_24(x_2)
    INFO - 08:24:23:    with respect to x_2
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_2(x_2) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 902.19 it/sec, obj=-8.05]
    INFO - 08:24:23:
 WARNING - 08:24:23: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
 WARNING - 08:24:23:       The solution is not feasible.
    INFO - 08:24:23:       Objective: -8.049124030999952
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_2 = 0.0008826396484502563
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End AerodynamicsScenario execution (time: 0:00:00.013255) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start StructureScenario execution ***
    INFO - 08:24:23: StructureScenario
    INFO - 08:24:23:    Disciplines: SobieskiStructure
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_11(x_1)
    INFO - 08:24:23:    with respect to x_1
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_1(x_1) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 356.36 it/sec, obj=-.567]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: -0.5669939350251024
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_1 = [-0.02079828 -0.03531624 -0.0457812  -0.05308609 -0.05838348 -0.13714173
    INFO - 08:24:23:  -0.10285827]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End StructureScenario execution (time: 0:00:00.018256) ***
    INFO - 08:24:23: ...  60%|██████    | 30/50 [00:08<00:05,  3.68 it/sec, obj=-3.97e+3]
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start PropulsionScenario execution ***
    INFO - 08:24:23: PropulsionScenario
    INFO - 08:24:23:    Disciplines: SobieskiPropulsion
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize y_34(x_3)
    INFO - 08:24:23:    with respect to x_3
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_3(x_3) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | x_3  |     0.1     | 0.1562826012928182 |      1      | float |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 1064.27 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   7%|▋         | 2/30 [00:00<00:00, 442.93 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  10%|█         | 3/30 [00:00<00:00, 502.05 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  13%|█▎        | 4/30 [00:00<00:00, 433.20 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  17%|█▋        | 5/30 [00:00<00:00, 402.52 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: 0.9239339340322452
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_3 = [-7.66827853e-01 -2.33172147e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | x_3  |     0.1     | 0.1562450052237469 |      1      | float |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: *** End PropulsionScenario execution (time: 0:00:00.029558) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:23: AerodynamicsScenario
    INFO - 08:24:23:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_24(x_2)
    INFO - 08:24:23:    with respect to x_2
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_2(x_2) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 916.39 it/sec, obj=-8.05]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: -8.054505555080496
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_2 = -0.0001259774961595017
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End AerodynamicsScenario execution (time: 0:00:00.012950) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start StructureScenario execution ***
    INFO - 08:24:23: StructureScenario
    INFO - 08:24:23:    Disciplines: SobieskiStructure
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_11(x_1)
    INFO - 08:24:23:    with respect to x_1
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_1(x_1) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 335.17 it/sec, obj=-.566]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: -0.5658717830568343
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_1 = [-0.01766984 -0.03306492 -0.04403057 -0.05165576 -0.05717497 -0.13720825
    INFO - 08:24:23:  -0.10279175]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End StructureScenario execution (time: 0:00:00.018523) ***
    INFO - 08:24:23: ...  62%|██████▏   | 31/50 [00:08<00:05,  3.71 it/sec, obj=-3.96e+3]
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start PropulsionScenario execution ***
    INFO - 08:24:23: PropulsionScenario
    INFO - 08:24:23:    Disciplines: SobieskiPropulsion
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize y_34(x_3)
    INFO - 08:24:23:    with respect to x_3
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_3(x_3) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | x_3  |     0.1     | 0.1562450052237469 |      1      | float |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 2006.84 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   7%|▋         | 2/30 [00:00<00:00, 491.77 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  10%|█         | 3/30 [00:00<00:00, 442.44 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  13%|█▎        | 4/30 [00:00<00:00, 404.57 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: None
    INFO - 08:24:23:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: 0.9239386524437929
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_3 = [-7.66572163e-01 -2.33427837e-01 -3.33066907e-16 -1.83255000e-01]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | x_3  |     0.1     | 0.1562464474849996 |      1      | float |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: *** End PropulsionScenario execution (time: 0:00:00.019799) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:23: AerodynamicsScenario
    INFO - 08:24:23:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_24(x_2)
    INFO - 08:24:23:    with respect to x_2
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_2(x_2) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 938.32 it/sec, obj=-8.05]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: -8.053751697367987
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_2 = -0.00011307823289885555
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End AerodynamicsScenario execution (time: 0:00:00.012921) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start StructureScenario execution ***
    INFO - 08:24:23: StructureScenario
    INFO - 08:24:23:    Disciplines: SobieskiStructure
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_11(x_1)
    INFO - 08:24:23:    with respect to x_1
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_1(x_1) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 353.65 it/sec, obj=-.566]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: -0.5657363150062684
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_1 = [-0.01771027 -0.03309422 -0.04405343 -0.05167447 -0.0571908  -0.13720633
    INFO - 08:24:23:  -0.10279367]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End StructureScenario execution (time: 0:00:00.018196) ***
    INFO - 08:24:23: ...  64%|██████▍   | 32/50 [00:08<00:04,  3.76 it/sec, obj=-3.96e+3]
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start PropulsionScenario execution ***
    INFO - 08:24:23: PropulsionScenario
    INFO - 08:24:23:    Disciplines: SobieskiPropulsion
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize y_34(x_3)
    INFO - 08:24:23:    with respect to x_3
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_3(x_3) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | x_3  |     0.1     | 0.1562464474849996 |      1      | float |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 2212.19 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   7%|▋         | 2/30 [00:00<00:00, 499.00 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  10%|█         | 3/30 [00:00<00:00, 374.26 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  13%|█▎        | 4/30 [00:00<00:00, 401.45 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: None
    INFO - 08:24:23:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: 0.9239450876081343
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_3 = [-7.66177496e-01 -2.33822504e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | x_3  |     0.1     | 0.1562484146138013 |      1      | float |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: *** End PropulsionScenario execution (time: 0:00:00.019939) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:23: AerodynamicsScenario
    INFO - 08:24:23:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_24(x_2)
    INFO - 08:24:23:    with respect to x_2
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_2(x_2) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 914.39 it/sec, obj=-8.05]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: -8.051409230252824
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_2 = -0.0001716833030158682
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End AerodynamicsScenario execution (time: 0:00:00.012925) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start StructureScenario execution ***
    INFO - 08:24:23: StructureScenario
    INFO - 08:24:23:    Disciplines: SobieskiStructure
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_11(x_1)
    INFO - 08:24:23:    with respect to x_1
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_1(x_1) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 358.67 it/sec, obj=-.565]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: -0.5653857905081654
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_1 = [-0.01753174 -0.03296546 -0.0439532  -0.05159254 -0.05712154 -0.13720823
    INFO - 08:24:23:  -0.10279177]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End StructureScenario execution (time: 0:00:00.018636) ***
    INFO - 08:24:23: ...  66%|██████▌   | 33/50 [00:08<00:04,  3.80 it/sec, obj=-3.95e+3]
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start PropulsionScenario execution ***
    INFO - 08:24:23: PropulsionScenario
    INFO - 08:24:23:    Disciplines: SobieskiPropulsion
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize y_34(x_3)
    INFO - 08:24:23:    with respect to x_3
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_3(x_3) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | x_3  |     0.1     | 0.1562484146138013 |      1      | float |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 2239.35 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   7%|▋         | 2/30 [00:00<00:00, 502.64 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  10%|█         | 3/30 [00:00<00:00, 550.43 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  13%|█▎        | 4/30 [00:00<00:00, 462.05 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  17%|█▋        | 5/30 [00:00<00:00, 421.92 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  20%|██        | 6/30 [00:00<00:00, 403.96 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: None
    INFO - 08:24:23:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: 0.9239370818012884
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_3 = [-7.64322124e-01 -2.35677876e-01  1.37039326e-05 -1.83255000e-01]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | x_3  |     0.1     | 0.1562484146138013 |      1      | float |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: *** End PropulsionScenario execution (time: 0:00:00.024821) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:23: AerodynamicsScenario
    INFO - 08:24:23:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_24(x_2)
    INFO - 08:24:23:    with respect to x_2
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_2(x_2) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 914.99 it/sec, obj=-8.04]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: -8.043072770239572
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_2 = -0.00015296975300738147
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End AerodynamicsScenario execution (time: 0:00:00.012984) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start StructureScenario execution ***
    INFO - 08:24:23: StructureScenario
    INFO - 08:24:23:    Disciplines: SobieskiStructure
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_11(x_1)
    INFO - 08:24:23:    with respect to x_1
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_1(x_1) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 357.48 it/sec, obj=-.564]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: -0.5642962163539958
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_1 = [-0.01758936 -0.03300711 -0.04398566 -0.05161908 -0.05714399 -0.13720676
    INFO - 08:24:23:  -0.10279324]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End StructureScenario execution (time: 0:00:00.018198) ***
    INFO - 08:24:23: ...  68%|██████▊   | 34/50 [00:08<00:04,  3.85 it/sec, obj=-3.94e+3]
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start PropulsionScenario execution ***
    INFO - 08:24:23: PropulsionScenario
    INFO - 08:24:23:    Disciplines: SobieskiPropulsion
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize y_34(x_3)
    INFO - 08:24:23:    with respect to x_3
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_3(x_3) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:    | x_3  |     0.1     | 0.1562484146138013 |      1      | float |
    INFO - 08:24:23:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 2244.14 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   7%|▋         | 2/30 [00:00<00:00, 454.62 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  10%|█         | 3/30 [00:00<00:00, 390.49 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23: ...  13%|█▎        | 4/30 [00:00<00:00, 368.87 it/sec, obj=0.924]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: None
    INFO - 08:24:23:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: 0.9240587614841845
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_3 = [-7.65309777e-01 -2.34690223e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23:       | x_3  |     0.1     | 0.1562831845148063 |      1      | float |
    INFO - 08:24:23:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:23: *** End PropulsionScenario execution (time: 0:00:00.020632) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:23: AerodynamicsScenario
    INFO - 08:24:23:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_24(x_2)
    INFO - 08:24:23:    with respect to x_2
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_2(x_2) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 900.65 it/sec, obj=-8.06]
    INFO - 08:24:23:
 WARNING - 08:24:23: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
 WARNING - 08:24:23:       The solution is not feasible.
    INFO - 08:24:23:       Objective: -8.056260616459241
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_2 = 0.001246639674936878
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End AerodynamicsScenario execution (time: 0:00:00.013118) ***
    INFO - 08:24:23:
    INFO - 08:24:23: *** Start StructureScenario execution ***
    INFO - 08:24:23: StructureScenario
    INFO - 08:24:23:    Disciplines: SobieskiStructure
    INFO - 08:24:23:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:23: Optimization problem:
    INFO - 08:24:23:    minimize -y_11(x_1)
    INFO - 08:24:23:    with respect to x_1
    INFO - 08:24:23:    subject to constraints:
    INFO - 08:24:23:       g_1(x_1) <= 0.0
    INFO - 08:24:23:    over the design space:
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:23: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:23:
    INFO - 08:24:23: ...   3%|▎         | 1/30 [00:00<00:00, 356.45 it/sec, obj=-.567]
    INFO - 08:24:23:
    INFO - 08:24:23:
    INFO - 08:24:23: Optimization result:
    INFO - 08:24:23:    Optimizer info:
    INFO - 08:24:23:       Status: 8
    INFO - 08:24:23:       Message: Positive directional derivative for linesearch
    INFO - 08:24:23:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:23:    Solution:
    INFO - 08:24:23:       The solution is feasible.
    INFO - 08:24:23:       Objective: -0.5674939378648898
    INFO - 08:24:23:       Standardized constraints:
    INFO - 08:24:23:          g_1 = [-0.02192229 -0.03611789 -0.04640205 -0.05359219 -0.05881046 -0.13714579
    INFO - 08:24:23:  -0.10285421]
    INFO - 08:24:23:       Design space:
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:23:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:23:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:23: *** End StructureScenario execution (time: 0:00:00.018200) ***
    INFO - 08:24:23: ...  70%|███████   | 35/50 [00:08<00:03,  3.89 it/sec, obj=-3.97e+3]
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start PropulsionScenario execution ***
    INFO - 08:24:24: PropulsionScenario
    INFO - 08:24:24:    Disciplines: SobieskiPropulsion
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize y_34(x_3)
    INFO - 08:24:24:    with respect to x_3
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_3(x_3) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | x_3  |     0.1     | 0.1562831845148063 |      1      | float |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 1852.61 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   7%|▋         | 2/30 [00:00<00:00, 454.03 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  10%|█         | 3/30 [00:00<00:00, 506.48 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  13%|█▎        | 4/30 [00:00<00:00, 364.26 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 6
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: 0.9240130559445365
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_3 = [-7.63213964e-01 -2.36786036e-01  7.82909243e-05 -1.83255000e-01]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | x_3  |     0.1     | 0.1562831845148063 |      1      | float |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: *** End PropulsionScenario execution (time: 0:00:00.022978) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:24: AerodynamicsScenario
    INFO - 08:24:24:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_24(x_2)
    INFO - 08:24:24:    with respect to x_2
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_2(x_2) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 2121.55 it/sec, obj=-8.06]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   7%|▋         | 2/30 [00:00<00:00, 435.95 it/sec, obj=-8.06]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  10%|█         | 3/30 [00:00<00:00, 483.12 it/sec, obj=-8.06]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  13%|█▎        | 4/30 [00:00<00:00, 486.62 it/sec, obj=-8.06]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  17%|█▋        | 5/30 [00:00<00:00, 502.60 it/sec, obj=-8.06]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  20%|██        | 6/30 [00:00<00:00, 511.32 it/sec, obj=-8.06]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  23%|██▎       | 7/30 [00:00<00:00, 351.92 it/sec, obj=-8.06]
    INFO - 08:24:24:
 WARNING - 08:24:24: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 266
    INFO - 08:24:24:    Solution:
 WARNING - 08:24:24:       The solution is not feasible.
    INFO - 08:24:24:       Objective: -8.055268899023858
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_2 = 0.0024209803470320868
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End AerodynamicsScenario execution (time: 0:00:00.064851) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start StructureScenario execution ***
    INFO - 08:24:24: StructureScenario
    INFO - 08:24:24:    Disciplines: SobieskiStructure
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_11(x_1)
    INFO - 08:24:24:    with respect to x_1
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_1(x_1) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 2001.10 it/sec, obj=-.569]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -0.568938732047312
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_1 = [-0.02559193 -0.03871703 -0.04840868 -0.05522498 -0.06018639 -0.13717979
    INFO - 08:24:24:  -0.10282021]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End StructureScenario execution (time: 0:00:00.016137) ***
    INFO - 08:24:24: ...  72%|███████▏  | 36/50 [00:09<00:03,  3.91 it/sec, obj=-3.98e+3]
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start PropulsionScenario execution ***
    INFO - 08:24:24: PropulsionScenario
    INFO - 08:24:24:    Disciplines: SobieskiPropulsion
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize y_34(x_3)
    INFO - 08:24:24:    with respect to x_3
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_3(x_3) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | x_3  |     0.1     | 0.1562831845148063 |      1      | float |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 2173.21 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   7%|▋         | 2/30 [00:00<00:00, 497.87 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  10%|█         | 3/30 [00:00<00:00, 549.93 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  13%|█▎        | 4/30 [00:00<00:00, 460.81 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  17%|█▋        | 5/30 [00:00<00:00, 422.57 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  20%|██        | 6/30 [00:00<00:00, 399.02 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: None
    INFO - 08:24:24:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: 0.9239330847904542
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_3 = [-7.67186722e-01 -2.32813278e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: *** End PropulsionScenario execution (time: 0:00:00.025070) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:24: AerodynamicsScenario
    INFO - 08:24:24:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_24(x_2)
    INFO - 08:24:24:    with respect to x_2
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_2(x_2) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 946.80 it/sec, obj=-8.05]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -8.053958508617187
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_2 = 0.0
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End AerodynamicsScenario execution (time: 0:00:00.013116) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start StructureScenario execution ***
    INFO - 08:24:24: StructureScenario
    INFO - 08:24:24:    Disciplines: SobieskiStructure
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_11(x_1)
    INFO - 08:24:24:    with respect to x_1
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_1(x_1) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 344.78 it/sec, obj=-.566]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -0.5661587635728854
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_1 = [-0.0178897  -0.03320041 -0.04412804 -0.05173174 -0.05723718 -0.13742757
    INFO - 08:24:24:  -0.10257243]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End StructureScenario execution (time: 0:00:00.018615) ***
    INFO - 08:24:24: ...  74%|███████▍  | 37/50 [00:09<00:03,  3.95 it/sec, obj=-3.96e+3]
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start PropulsionScenario execution ***
    INFO - 08:24:24: PropulsionScenario
    INFO - 08:24:24:    Disciplines: SobieskiPropulsion
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize y_34(x_3)
    INFO - 08:24:24:    with respect to x_3
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_3(x_3) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 2219.21 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   7%|▋         | 2/30 [00:00<00:00, 500.75 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  10%|█         | 3/30 [00:00<00:00, 551.79 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: None
    INFO - 08:24:24:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: 0.9239330847904542
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_3 = [-7.67186948e-01 -2.32813052e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: *** End PropulsionScenario execution (time: 0:00:00.015380) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:24: AerodynamicsScenario
    INFO - 08:24:24:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_24(x_2)
    INFO - 08:24:24:    with respect to x_2
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_2(x_2) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 946.37 it/sec, obj=-8.05]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -8.04781856654709
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_2 = 0.0
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End AerodynamicsScenario execution (time: 0:00:00.012924) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start StructureScenario execution ***
    INFO - 08:24:24: StructureScenario
    INFO - 08:24:24:    Disciplines: SobieskiStructure
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_11(x_1)
    INFO - 08:24:24:    with respect to x_1
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_1(x_1) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 355.57 it/sec, obj=-.566]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -0.5657358107441277
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_1 = [-0.01755144 -0.03290933 -0.04388514 -0.05152562 -0.05705886 -0.13788735
    INFO - 08:24:24:  -0.10211265]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End StructureScenario execution (time: 0:00:00.018112) ***
    INFO - 08:24:24: ...  76%|███████▌  | 38/50 [00:09<00:02,  4.00 it/sec, obj=-3.95e+3]
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start PropulsionScenario execution ***
    INFO - 08:24:24: PropulsionScenario
    INFO - 08:24:24:    Disciplines: SobieskiPropulsion
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize y_34(x_3)
    INFO - 08:24:24:    with respect to x_3
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_3(x_3) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 2208.69 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   7%|▋         | 2/30 [00:00<00:00, 501.80 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  10%|█         | 3/30 [00:00<00:00, 551.04 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: None
    INFO - 08:24:24:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 4
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: 0.9239330847904542
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_3 = [-7.67187181e-01 -2.32812819e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: *** End PropulsionScenario execution (time: 0:00:00.015283) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:24: AerodynamicsScenario
    INFO - 08:24:24:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_24(x_2)
    INFO - 08:24:24:    with respect to x_2
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_2(x_2) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 941.27 it/sec, obj=-8.04]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -8.042988170364897
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_2 = 0.0
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End AerodynamicsScenario execution (time: 0:00:00.012973) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start StructureScenario execution ***
    INFO - 08:24:24: StructureScenario
    INFO - 08:24:24:    Disciplines: SobieskiStructure
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_11(x_1)
    INFO - 08:24:24:    with respect to x_1
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_1(x_1) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 353.35 it/sec, obj=-.565]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -0.5654201686840538
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_1 = [-0.01730084 -0.03269369 -0.0437052  -0.05137292 -0.05692675 -0.13822839
    INFO - 08:24:24:  -0.10177161]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End StructureScenario execution (time: 0:00:00.018273) ***
    INFO - 08:24:24: ...  78%|███████▊  | 39/50 [00:09<00:02,  4.04 it/sec, obj=-3.95e+3]
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start PropulsionScenario execution ***
    INFO - 08:24:24: PropulsionScenario
    INFO - 08:24:24:    Disciplines: SobieskiPropulsion
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize y_34(x_3)
    INFO - 08:24:24:    with respect to x_3
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_3(x_3) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | x_3  |     0.1     | 0.1562447456462875 |      1      | float |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 2185.67 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   7%|▋         | 2/30 [00:00<00:00, 498.25 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  10%|█         | 3/30 [00:00<00:00, 444.74 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  13%|█▎        | 4/30 [00:00<00:00, 406.99 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: None
    INFO - 08:24:24:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: 0.9240155423713895
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_3 = [-0.76714556 -0.23285444  0.         -0.18324179]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | x_3  |     0.1     | 0.1562586961828198 |      1      | float |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: *** End PropulsionScenario execution (time: 0:00:00.019687) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:24: AerodynamicsScenario
    INFO - 08:24:24:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_24(x_2)
    INFO - 08:24:24:    with respect to x_2
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_2(x_2) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 947.65 it/sec, obj=-8.06]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -8.056535211782654
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_2 = 0.0
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End AerodynamicsScenario execution (time: 0:00:00.012907) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start StructureScenario execution ***
    INFO - 08:24:24: StructureScenario
    INFO - 08:24:24:    Disciplines: SobieskiStructure
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_11(x_1)
    INFO - 08:24:24:    with respect to x_1
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_1(x_1) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 354.49 it/sec, obj=-.566]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -0.5663600223483964
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_1 = [-0.01805093 -0.03333915 -0.04424381 -0.05182998 -0.05732217 -0.13720865
    INFO - 08:24:24:  -0.10279135]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End StructureScenario execution (time: 0:00:00.018215) ***
    INFO - 08:24:24: ...  80%|████████  | 40/50 [00:09<00:02,  4.07 it/sec, obj=-3.96e+3]
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start PropulsionScenario execution ***
    INFO - 08:24:24: PropulsionScenario
    INFO - 08:24:24:    Disciplines: SobieskiPropulsion
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize y_34(x_3)
    INFO - 08:24:24:    with respect to x_3
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_3(x_3) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:    | x_3  |     0.1     | 0.1562586961828198 |      1      | float |
    INFO - 08:24:24:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 2131.25 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   7%|▋         | 2/30 [00:00<00:00, 504.34 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  10%|█         | 3/30 [00:00<00:00, 552.92 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  13%|█▎        | 4/30 [00:00<00:00, 452.94 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  17%|█▋        | 5/30 [00:00<00:00, 412.29 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24: ...  20%|██        | 6/30 [00:00<00:00, 391.58 it/sec, obj=0.924]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: None
    INFO - 08:24:24:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: 0.9239686048990369
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_3 = [-7.67171858e-01 -2.32828142e-01  1.73102028e-05 -1.83255000e-01]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24:       | x_3  |     0.1     | 0.1562586961828198 |      1      | float |
    INFO - 08:24:24:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:24: *** End PropulsionScenario execution (time: 0:00:00.025756) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:24: AerodynamicsScenario
    INFO - 08:24:24:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_24(x_2)
    INFO - 08:24:24:    with respect to x_2
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_2(x_2) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 2138.86 it/sec, obj=-8.06]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -8.056745208133067
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_2 = 8.805810840062378e-06
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End AerodynamicsScenario execution (time: 0:00:00.012548) ***
    INFO - 08:24:24:
    INFO - 08:24:24: *** Start StructureScenario execution ***
    INFO - 08:24:24: StructureScenario
    INFO - 08:24:24:    Disciplines: SobieskiStructure
    INFO - 08:24:24:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:24: Optimization problem:
    INFO - 08:24:24:    minimize -y_11(x_1)
    INFO - 08:24:24:    with respect to x_1
    INFO - 08:24:24:    subject to constraints:
    INFO - 08:24:24:       g_1(x_1) <= 0.0
    INFO - 08:24:24:    over the design space:
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:24: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:24:
    INFO - 08:24:24: ...   3%|▎         | 1/30 [00:00<00:00, 1976.58 it/sec, obj=-.566]
    INFO - 08:24:24:
    INFO - 08:24:24:
    INFO - 08:24:24: Optimization result:
    INFO - 08:24:24:    Optimizer info:
    INFO - 08:24:24:       Status: 8
    INFO - 08:24:24:       Message: Positive directional derivative for linesearch
    INFO - 08:24:24:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:24:    Solution:
    INFO - 08:24:24:       The solution is feasible.
    INFO - 08:24:24:       Objective: -0.5663760001121093
    INFO - 08:24:24:       Standardized constraints:
    INFO - 08:24:24:          g_1 = [-0.01807779 -0.03335849 -0.04425886 -0.05184228 -0.05733256 -0.13720843
    INFO - 08:24:24:  -0.10279157]
    INFO - 08:24:24:       Design space:
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:24:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:24:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:24: *** End StructureScenario execution (time: 0:00:00.016425) ***
    INFO - 08:24:24: ...  82%|████████▏ | 41/50 [00:09<00:02,  4.11 it/sec, obj=-3.96e+3]
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start PropulsionScenario execution ***
    INFO - 08:24:25: PropulsionScenario
    INFO - 08:24:25:    Disciplines: SobieskiPropulsion
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize y_34(x_3)
    INFO - 08:24:25:    with respect to x_3
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_3(x_3) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | x_3  |     0.1     | 0.1562586961828198 |      1      | float |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 1073.54 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   7%|▋         | 2/30 [00:00<00:00, 448.49 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  10%|█         | 3/30 [00:00<00:00, 506.74 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  13%|█▎        | 4/30 [00:00<00:00, 439.34 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  17%|█▋        | 5/30 [00:00<00:00, 408.14 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 8
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: 0.9239451810594393
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_3 = [-7.67615422e-01 -2.32384578e-01  5.74125333e-05 -1.83255000e-01]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | x_3  |     0.1     | 0.1562586961828198 |      1      | float |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: *** End PropulsionScenario execution (time: 0:00:00.024066) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:25: AerodynamicsScenario
    INFO - 08:24:25:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_24(x_2)
    INFO - 08:24:25:    with respect to x_2
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_2(x_2) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 1975.65 it/sec, obj=-8.06]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -8.058845797480751
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_2 = -1.73258759983419e-06
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End AerodynamicsScenario execution (time: 0:00:00.012356) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start StructureScenario execution ***
    INFO - 08:24:25: StructureScenario
    INFO - 08:24:25:    Disciplines: SobieskiStructure
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_11(x_1)
    INFO - 08:24:25:    with respect to x_1
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_1(x_1) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:25:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 356.81 it/sec, obj=-.566]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -0.5660584591876601
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_1 = [-0.01810506 -0.03338646 -0.04428351 -0.05186376 -0.05735144 -0.13712807
    INFO - 08:24:25:  -0.10287193]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:25:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End StructureScenario execution (time: 0:00:00.018244) ***
    INFO - 08:24:25: ...  84%|████████▍ | 42/50 [00:10<00:01,  4.15 it/sec, obj=-3.96e+3]
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start PropulsionScenario execution ***
    INFO - 08:24:25: PropulsionScenario
    INFO - 08:24:25:    Disciplines: SobieskiPropulsion
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize y_34(x_3)
    INFO - 08:24:25:    with respect to x_3
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_3(x_3) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | x_3  |     0.1     | 0.1562586961828198 |      1      | float |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 2201.73 it/sec, obj=0.925]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   7%|▋         | 2/30 [00:00<00:00, 501.35 it/sec, obj=0.925]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  10%|█         | 3/30 [00:00<00:00, 446.52 it/sec, obj=0.925]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  13%|█▎        | 4/30 [00:00<00:00, 403.08 it/sec, obj=0.925]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: None
    INFO - 08:24:25:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: 0.9250211286076014
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_3 = [-7.66784144e-01 -2.33215856e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | x_3  |     0.1     | 0.1565791903250239 |      1      | float |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: *** End PropulsionScenario execution (time: 0:00:00.019783) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:25: AerodynamicsScenario
    INFO - 08:24:25:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_24(x_2)
    INFO - 08:24:25:    with respect to x_2
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_2(x_2) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 941.06 it/sec, obj=-8.04]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -8.040025344177474
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_2 = 6.846222577294725e-06
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End AerodynamicsScenario execution (time: 0:00:00.018096) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start StructureScenario execution ***
    INFO - 08:24:25: StructureScenario
    INFO - 08:24:25:    Disciplines: SobieskiStructure
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_11(x_1)
    INFO - 08:24:25:    with respect to x_1
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_1(x_1) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:25:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 362.67 it/sec, obj=-.566]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -0.5663092469871336
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_1 = [-0.01807465 -0.03335663 -0.04425754 -0.05184127 -0.05733174 -0.13720463
    INFO - 08:24:25:  -0.10279537]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:25:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End StructureScenario execution (time: 0:00:00.018436) ***
    INFO - 08:24:25: ...  86%|████████▌ | 43/50 [00:10<00:01,  4.17 it/sec, obj=-3.95e+3]
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start PropulsionScenario execution ***
    INFO - 08:24:25: PropulsionScenario
    INFO - 08:24:25:    Disciplines: SobieskiPropulsion
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize y_34(x_3)
    INFO - 08:24:25:    with respect to x_3
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_3(x_3) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | x_3  |     0.1     | 0.1565791903250239 |      1      | float |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 2115.13 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   7%|▋         | 2/30 [00:00<00:00, 504.64 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  10%|█         | 3/30 [00:00<00:00, 554.83 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  13%|█▎        | 4/30 [00:00<00:00, 459.60 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: 0.924478088557637
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_3 = [-7.66917185e-01 -2.33082815e-01 -3.33066907e-16 -1.83167629e-01]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | x_3  |     0.1     | 0.1563370656314928 |      1      | float |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: *** End PropulsionScenario execution (time: 0:00:00.020447) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:25: AerodynamicsScenario
    INFO - 08:24:25:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_24(x_2)
    INFO - 08:24:25:    with respect to x_2
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_2(x_2) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 929.79 it/sec, obj=-8.05]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -8.047865837104876
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_2 = 0.0
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End AerodynamicsScenario execution (time: 0:00:00.012927) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start StructureScenario execution ***
    INFO - 08:24:25: StructureScenario
    INFO - 08:24:25:    Disciplines: SobieskiStructure
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_11(x_1)
    INFO - 08:24:25:    with respect to x_1
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_1(x_1) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:25:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 361.24 it/sec, obj=-.566]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -0.5662848637296173
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_1 = [-0.01805093 -0.03333915 -0.04424381 -0.05182998 -0.05732217 -0.13720865
    INFO - 08:24:25:  -0.10279135]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:25:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End StructureScenario execution (time: 0:00:00.018090) ***
 WARNING - 08:24:25: MDAJacobi has reached its maximum number of iterations but the normed residual 3.8001101574110354e-14 is still above the tolerance 1e-14.
    INFO - 08:24:25: ...  88%|████████▊ | 44/50 [00:10<00:01,  4.16 it/sec, obj=-3.96e+3]
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start PropulsionScenario execution ***
    INFO - 08:24:25: PropulsionScenario
    INFO - 08:24:25:    Disciplines: SobieskiPropulsion
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize y_34(x_3)
    INFO - 08:24:25:    with respect to x_3
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_3(x_3) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | x_3  |     0.1     | 0.1563370656314928 |      1      | float |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 1435.42 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   7%|▋         | 2/30 [00:00<00:00, 476.17 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  10%|█         | 3/30 [00:00<00:00, 526.99 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  13%|█▎        | 4/30 [00:00<00:00, 450.41 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  17%|█▋        | 5/30 [00:00<00:00, 417.29 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  20%|██        | 6/30 [00:00<00:00, 388.09 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: None
    INFO - 08:24:25:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: 0.9239484242102134
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_3 = [-7.67558550e-01 -2.32441450e-01  2.22044605e-16 -1.83255000e-01]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | x_3  |     0.1     | 0.1562494346122365 |      1      | float |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: *** End PropulsionScenario execution (time: 0:00:00.025757) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:25: AerodynamicsScenario
    INFO - 08:24:25:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_24(x_2)
    INFO - 08:24:25:    with respect to x_2
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_2(x_2) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 930.83 it/sec, obj=-8.06]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -8.057942332050649
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_2 = -8.033740557467084e-06
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End AerodynamicsScenario execution (time: 0:00:00.012959) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start StructureScenario execution ***
    INFO - 08:24:25: StructureScenario
    INFO - 08:24:25:    Disciplines: SobieskiStructure
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_11(x_1)
    INFO - 08:24:25:    with respect to x_1
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_1(x_1) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:25:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 369.74 it/sec, obj=-.566]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -0.566054301128594
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_1 = [-0.01808201 -0.03336931 -0.04426998 -0.05185262 -0.05734198 -0.13713346
    INFO - 08:24:25:  -0.10286654]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:25:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End StructureScenario execution (time: 0:00:00.018015) ***
    INFO - 08:24:25: ...  90%|█████████ | 45/50 [00:10<00:01,  4.18 it/sec, obj=-3.96e+3]
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start PropulsionScenario execution ***
    INFO - 08:24:25: PropulsionScenario
    INFO - 08:24:25:    Disciplines: SobieskiPropulsion
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize y_34(x_3)
    INFO - 08:24:25:    with respect to x_3
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_3(x_3) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | x_3  |     0.1     | 0.1562494346122365 |      1      | float |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 2114.06 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   7%|▋         | 2/30 [00:00<00:00, 504.00 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  10%|█         | 3/30 [00:00<00:00, 556.37 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  13%|█▎        | 4/30 [00:00<00:00, 468.64 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  17%|█▋        | 5/30 [00:00<00:00, 386.43 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...  20%|██        | 6/30 [00:00<00:00, 403.23 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: None
    INFO - 08:24:25:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 10
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: 0.9239431385319572
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_3 = [-7.67475734e-01 -2.32524266e-01  9.04799878e-06 -1.83255000e-01]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | x_3  |     0.1     | 0.1562494346122365 |      1      | float |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: *** End PropulsionScenario execution (time: 0:00:00.024720) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:25: AerodynamicsScenario
    INFO - 08:24:25:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_24(x_2)
    INFO - 08:24:25:    with respect to x_2
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_2(x_2) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 2143.23 it/sec, obj=-8.06]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -8.058532673340416
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_2 = -3.417256228432919e-06
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End AerodynamicsScenario execution (time: 0:00:00.012279) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start StructureScenario execution ***
    INFO - 08:24:25: StructureScenario
    INFO - 08:24:25:    Disciplines: SobieskiStructure
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_11(x_1)
    INFO - 08:24:25:    with respect to x_1
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_1(x_1) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:25:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 2026.23 it/sec, obj=-.566]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -0.5661347090018393
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_1 = [-0.01808364 -0.03336875 -0.04426894 -0.05185149 -0.05734087 -0.13715021
    INFO - 08:24:25:  -0.10284979]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:25:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End StructureScenario execution (time: 0:00:00.015796) ***
    INFO - 08:24:25: ...  92%|█████████▏| 46/50 [00:10<00:00,  4.22 it/sec, obj=-3.96e+3]
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start PropulsionScenario execution ***
    INFO - 08:24:25: PropulsionScenario
    INFO - 08:24:25:    Disciplines: SobieskiPropulsion
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize y_34(x_3)
    INFO - 08:24:25:    with respect to x_3
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_3(x_3) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:    | x_3  |     0.1     | 0.1562494346122365 |      1      | float |
    INFO - 08:24:25:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 2258.65 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   7%|▋         | 2/30 [00:00<00:00, 511.78 it/sec, obj=0.924]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 3
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: 0.923948926399915
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_3 = [-0.767815 -0.232185  0.       -0.183255]
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25:       | x_3  |     0.1     | 0.1562495881345509 |      1      | float |
    INFO - 08:24:25:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:25: *** End PropulsionScenario execution (time: 0:00:00.014934) ***
    INFO - 08:24:25:
    INFO - 08:24:25: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:25: AerodynamicsScenario
    INFO - 08:24:25:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:25:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:25: Optimization problem:
    INFO - 08:24:25:    minimize -y_24(x_2)
    INFO - 08:24:25:    with respect to x_2
    INFO - 08:24:25:    subject to constraints:
    INFO - 08:24:25:       g_2(x_2) <= 0.0
    INFO - 08:24:25:    over the design space:
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:25: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:25:
    INFO - 08:24:25: ...   3%|▎         | 1/30 [00:00<00:00, 932.69 it/sec, obj=-8.06]
    INFO - 08:24:25:
    INFO - 08:24:25:
    INFO - 08:24:25: Optimization result:
    INFO - 08:24:25:    Optimizer info:
    INFO - 08:24:25:       Status: 8
    INFO - 08:24:25:       Message: Positive directional derivative for linesearch
    INFO - 08:24:25:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:25:    Solution:
    INFO - 08:24:25:       The solution is feasible.
    INFO - 08:24:25:       Objective: -8.05990219839784
    INFO - 08:24:25:       Standardized constraints:
    INFO - 08:24:25:          g_2 = -2.162021519480639e-05
    INFO - 08:24:25:       Design space:
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:25:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:25: *** End AerodynamicsScenario execution (time: 0:00:00.012855) ***
    INFO - 08:24:26:
    INFO - 08:24:26: *** Start StructureScenario execution ***
    INFO - 08:24:26: StructureScenario
    INFO - 08:24:26:    Disciplines: SobieskiStructure
    INFO - 08:24:26:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:26: Optimization problem:
    INFO - 08:24:26:    minimize -y_11(x_1)
    INFO - 08:24:26:    with respect to x_1
    INFO - 08:24:26:    subject to constraints:
    INFO - 08:24:26:       g_1(x_1) <= 0.0
    INFO - 08:24:26:    over the design space:
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:26:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:26: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   3%|▎         | 1/30 [00:00<00:00, 354.58 it/sec, obj=-.566]
    INFO - 08:24:26:
    INFO - 08:24:26:
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: 8
    INFO - 08:24:26:       Message: Positive directional derivative for linesearch
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:26:    Solution:
    INFO - 08:24:26:       The solution is feasible.
    INFO - 08:24:26:       Objective: -0.5658635662415427
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_1 = [-0.01807616 -0.03337006 -0.04427228 -0.0518553  -0.05734468 -0.13708561
    INFO - 08:24:26:  -0.10291439]
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:26:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26: *** End StructureScenario execution (time: 0:00:00.018239) ***
    INFO - 08:24:26: ...  94%|█████████▍| 47/50 [00:11<00:00,  4.25 it/sec, obj=-3.96e+3]
    INFO - 08:24:26:
    INFO - 08:24:26: *** Start PropulsionScenario execution ***
    INFO - 08:24:26: PropulsionScenario
    INFO - 08:24:26:    Disciplines: SobieskiPropulsion
    INFO - 08:24:26:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:26: Optimization problem:
    INFO - 08:24:26:    minimize y_34(x_3)
    INFO - 08:24:26:    with respect to x_3
    INFO - 08:24:26:    subject to constraints:
    INFO - 08:24:26:       g_3(x_3) <= 0.0
    INFO - 08:24:26:    over the design space:
    INFO - 08:24:26:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:26:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:    | x_3  |     0.1     | 0.1562495881345509 |      1      | float |
    INFO - 08:24:26:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:26: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   3%|▎         | 1/30 [00:00<00:00, 1940.01 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   7%|▋         | 2/30 [00:00<00:00, 463.25 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...  10%|█         | 3/30 [00:00<00:00, 514.09 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...  13%|█▎        | 4/30 [00:00<00:00, 442.20 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...  17%|█▋        | 5/30 [00:00<00:00, 399.61 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26:
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: 8
    INFO - 08:24:26:       Message: Positive directional derivative for linesearch
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 7
    INFO - 08:24:26:    Solution:
    INFO - 08:24:26:       The solution is feasible.
    INFO - 08:24:26:       Objective: 0.923931018038371
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_3 = [-7.66865479e-01 -2.33134521e-01  3.06548930e-05 -1.83255000e-01]
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:26:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:       | x_3  |     0.1     | 0.1562495881345509 |      1      | float |
    INFO - 08:24:26:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26: *** End PropulsionScenario execution (time: 0:00:00.025175) ***
    INFO - 08:24:26:
    INFO - 08:24:26: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:26: AerodynamicsScenario
    INFO - 08:24:26:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:26:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:26: Optimization problem:
    INFO - 08:24:26:    minimize -y_24(x_2)
    INFO - 08:24:26:    with respect to x_2
    INFO - 08:24:26:    subject to constraints:
    INFO - 08:24:26:       g_2(x_2) <= 0.0
    INFO - 08:24:26:    over the design space:
    INFO - 08:24:26:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:26: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:26: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   3%|▎         | 1/30 [00:00<00:00, 1965.47 it/sec, obj=-8.06]
    INFO - 08:24:26:
 WARNING - 08:24:26: Optimization found no feasible point !  The least infeasible point is selected.
    INFO - 08:24:26:
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: 8
    INFO - 08:24:26:       Message: Positive directional derivative for linesearch
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:26:    Solution:
 WARNING - 08:24:26:       The solution is not feasible.
    INFO - 08:24:26:       Objective: -8.05737120207493
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_2 = 0.00020555566604918418
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:26: *** End AerodynamicsScenario execution (time: 0:00:00.018316) ***
    INFO - 08:24:26:
    INFO - 08:24:26: *** Start StructureScenario execution ***
    INFO - 08:24:26: StructureScenario
    INFO - 08:24:26:    Disciplines: SobieskiStructure
    INFO - 08:24:26:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:26: Optimization problem:
    INFO - 08:24:26:    minimize -y_11(x_1)
    INFO - 08:24:26:    with respect to x_1
    INFO - 08:24:26:    subject to constraints:
    INFO - 08:24:26:       g_1(x_1) <= 0.0
    INFO - 08:24:26:    over the design space:
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:26:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:26: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   3%|▎         | 1/30 [00:00<00:00, 1957.21 it/sec, obj=-.567]
    INFO - 08:24:26:
    INFO - 08:24:26:
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: 8
    INFO - 08:24:26:       Message: Positive directional derivative for linesearch
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:26:    Solution:
    INFO - 08:24:26:       The solution is feasible.
    INFO - 08:24:26:       Objective: -0.5665890491062292
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_1 = [-0.01867697 -0.03378936 -0.04459379 -0.05211588 -0.0575637  -0.13720645
    INFO - 08:24:26:  -0.10279355]
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:26:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26: *** End StructureScenario execution (time: 0:00:00.016289) ***
    INFO - 08:24:26: ...  96%|█████████▌| 48/50 [00:11<00:00,  4.28 it/sec, obj=-3.96e+3]
    INFO - 08:24:26:
    INFO - 08:24:26: *** Start PropulsionScenario execution ***
    INFO - 08:24:26: PropulsionScenario
    INFO - 08:24:26:    Disciplines: SobieskiPropulsion
    INFO - 08:24:26:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:26: Optimization problem:
    INFO - 08:24:26:    minimize y_34(x_3)
    INFO - 08:24:26:    with respect to x_3
    INFO - 08:24:26:    subject to constraints:
    INFO - 08:24:26:       g_3(x_3) <= 0.0
    INFO - 08:24:26:    over the design space:
    INFO - 08:24:26:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:26:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:    | x_3  |     0.1     | 0.1562495881345509 |      1      | float |
    INFO - 08:24:26:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:26: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   3%|▎         | 1/30 [00:00<00:00, 2095.06 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   7%|▋         | 2/30 [00:00<00:00, 489.70 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...  10%|█         | 3/30 [00:00<00:00, 541.71 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...  13%|█▎        | 4/30 [00:00<00:00, 460.98 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26:
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: 8
    INFO - 08:24:26:       Message: Positive directional derivative for linesearch
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 5
    INFO - 08:24:26:    Solution:
    INFO - 08:24:26:       The solution is feasible.
    INFO - 08:24:26:       Objective: 0.9239311496544078
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_3 = [-7.66740703e-01 -2.33259297e-01  3.04296041e-05 -1.83255000e-01]
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:26:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:       | x_3  |     0.1     | 0.1562495881345509 |      1      | float |
    INFO - 08:24:26:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26: *** End PropulsionScenario execution (time: 0:00:00.020826) ***
    INFO - 08:24:26:
    INFO - 08:24:26: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:26: AerodynamicsScenario
    INFO - 08:24:26:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:26:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:26: Optimization problem:
    INFO - 08:24:26:    minimize -y_24(x_2)
    INFO - 08:24:26:    with respect to x_2
    INFO - 08:24:26:    subject to constraints:
    INFO - 08:24:26:       g_2(x_2) <= 0.0
    INFO - 08:24:26:    over the design space:
    INFO - 08:24:26:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:26: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:26: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   3%|▎         | 1/30 [00:00<00:00, 2098.20 it/sec, obj=-8.06]
    INFO - 08:24:26:
    INFO - 08:24:26:
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: 8
    INFO - 08:24:26:       Message: Positive directional derivative for linesearch
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:26:    Solution:
    INFO - 08:24:26:       The solution is feasible.
    INFO - 08:24:26:       Objective: -8.055274359144438
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_2 = -1.1503322596695398e-06
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:26: *** End AerodynamicsScenario execution (time: 0:00:00.012536) ***
    INFO - 08:24:26:
    INFO - 08:24:26: *** Start StructureScenario execution ***
    INFO - 08:24:26: StructureScenario
    INFO - 08:24:26:    Disciplines: SobieskiStructure
    INFO - 08:24:26:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:26: Optimization problem:
    INFO - 08:24:26:    minimize -y_11(x_1)
    INFO - 08:24:26:    with respect to x_1
    INFO - 08:24:26:    subject to constraints:
    INFO - 08:24:26:       g_1(x_1) <= 0.0
    INFO - 08:24:26:    over the design space:
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:26:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:26: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   3%|▎         | 1/30 [00:00<00:00, 1996.34 it/sec, obj=-.566]
    INFO - 08:24:26:
    INFO - 08:24:26:
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: 8
    INFO - 08:24:26:       Message: Positive directional derivative for linesearch
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:26:    Solution:
    INFO - 08:24:26:       The solution is feasible.
    INFO - 08:24:26:       Objective: -0.5660816381828422
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_1 = [-0.01804777 -0.03333692 -0.04424209 -0.05182859 -0.057321   -0.13720821
    INFO - 08:24:26:  -0.10279179]
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:26:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26: *** End StructureScenario execution (time: 0:00:00.016443) ***
    INFO - 08:24:26: ...  98%|█████████▊| 49/50 [00:11<00:00,  4.32 it/sec, obj=-3.96e+3]
    INFO - 08:24:26:
    INFO - 08:24:26: *** Start PropulsionScenario execution ***
    INFO - 08:24:26: PropulsionScenario
    INFO - 08:24:26:    Disciplines: SobieskiPropulsion
    INFO - 08:24:26:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:26: Optimization problem:
    INFO - 08:24:26:    minimize y_34(x_3)
    INFO - 08:24:26:    with respect to x_3
    INFO - 08:24:26:    subject to constraints:
    INFO - 08:24:26:       g_3(x_3) <= 0.0
    INFO - 08:24:26:    over the design space:
    INFO - 08:24:26:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:    | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:26:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:    | x_3  |     0.1     | 0.1562495881345509 |      1      | float |
    INFO - 08:24:26:    +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:26: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   3%|▎         | 1/30 [00:00<00:00, 1885.93 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   7%|▋         | 2/30 [00:00<00:00, 487.91 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...  10%|█         | 3/30 [00:00<00:00, 535.60 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...  13%|█▎        | 4/30 [00:00<00:00, 456.32 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...  17%|█▋        | 5/30 [00:00<00:00, 421.04 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26: ...  20%|██        | 6/30 [00:00<00:00, 401.06 it/sec, obj=0.924]
    INFO - 08:24:26:
    INFO - 08:24:26:
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: None
    INFO - 08:24:26:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 9
    INFO - 08:24:26:    Solution:
    INFO - 08:24:26:       The solution is feasible.
    INFO - 08:24:26:       Objective: 0.9239308205318695
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_3 = [-7.67209301e-01 -2.32790699e-01  3.09929671e-05 -1.83255000e-01]
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:       | name | lower_bound |       value        | upper_bound | type  |
    INFO - 08:24:26:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26:       | x_3  |     0.1     | 0.1562495881345509 |      1      | float |
    INFO - 08:24:26:       +------+-------------+--------------------+-------------+-------+
    INFO - 08:24:26: *** End PropulsionScenario execution (time: 0:00:00.025201) ***
    INFO - 08:24:26:
    INFO - 08:24:26: *** Start AerodynamicsScenario execution ***
    INFO - 08:24:26: AerodynamicsScenario
    INFO - 08:24:26:    Disciplines: SobieskiAerodynamics
    INFO - 08:24:26:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:26: Optimization problem:
    INFO - 08:24:26:    minimize -y_24(x_2)
    INFO - 08:24:26:    with respect to x_2
    INFO - 08:24:26:    subject to constraints:
    INFO - 08:24:26:       g_2(x_2) <= 0.0
    INFO - 08:24:26:    over the design space:
    INFO - 08:24:26:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:    +------+-------------+-------+-------------+-------+
    INFO - 08:24:26: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:26: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   3%|▎         | 1/30 [00:00<00:00, 2099.25 it/sec, obj=-8.06]
    INFO - 08:24:26:
    INFO - 08:24:26:
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: 8
    INFO - 08:24:26:       Message: Positive directional derivative for linesearch
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:26:    Solution:
    INFO - 08:24:26:       The solution is feasible.
    INFO - 08:24:26:       Objective: -8.055195614443923
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_2 = 0.0
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | name | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | x_2  |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:       +------+-------------+-------+-------------+-------+
    INFO - 08:24:26: *** End AerodynamicsScenario execution (time: 0:00:00.012546) ***
    INFO - 08:24:26:
    INFO - 08:24:26: *** Start StructureScenario execution ***
    INFO - 08:24:26: StructureScenario
    INFO - 08:24:26:    Disciplines: SobieskiStructure
    INFO - 08:24:26:    MDO formulation: DisciplinaryOpt
    INFO - 08:24:26: Optimization problem:
    INFO - 08:24:26:    minimize -y_11(x_1)
    INFO - 08:24:26:    with respect to x_1
    INFO - 08:24:26:    subject to constraints:
    INFO - 08:24:26:       g_1(x_1) <= 0.0
    INFO - 08:24:26:    over the design space:
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:    | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:26:    | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:    +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26: Solving optimization problem with algorithm SLSQP:
    INFO - 08:24:26: ...   0%|          | 0/30 [00:00<?, ?it]
    INFO - 08:24:26:
    INFO - 08:24:26: ...   3%|▎         | 1/30 [00:00<00:00, 2005.88 it/sec, obj=-.566]
    INFO - 08:24:26:
    INFO - 08:24:26:
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: 8
    INFO - 08:24:26:       Message: Positive directional derivative for linesearch
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 2
    INFO - 08:24:26:    Solution:
    INFO - 08:24:26:       The solution is feasible.
    INFO - 08:24:26:       Objective: -0.5662260514471474
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_1 = [-0.01793588 -0.03324015 -0.0441612  -0.05175988 -0.05726152 -0.13736485
    INFO - 08:24:26:  -0.10263515]
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | name   | lower_bound | value | upper_bound | type  |
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26:       | x_1[0] |     0.1     |  0.4  |     0.4     | float |
    INFO - 08:24:26:       | x_1[1] |     0.75    |  0.75 |     1.25    | float |
    INFO - 08:24:26:       +--------+-------------+-------+-------------+-------+
    INFO - 08:24:26: *** End StructureScenario execution (time: 0:00:00.016129) ***
    INFO - 08:24:26: ... 100%|██████████| 50/50 [00:11<00:00,  4.35 it/sec, obj=-3.96e+3]
    INFO - 08:24:26: Optimization result:
    INFO - 08:24:26:    Optimizer info:
    INFO - 08:24:26:       Status: None
    INFO - 08:24:26:       Message: Maximum number of iterations reached. GEMSEO Stopped the driver
    INFO - 08:24:26:       Number of calls to the objective function by the optimizer: 52
    INFO - 08:24:26:    Solution:
    INFO - 08:24:26:       The solution is feasible.
    INFO - 08:24:26:       Objective: -3963.3800122701787
    INFO - 08:24:26:       Standardized constraints:
    INFO - 08:24:26:          g_1_g_2_g_3 = [-0.01805093 -0.03333915 -0.04424381 -0.05182998 -0.05732217 -0.13720865
    INFO - 08:24:26:  -0.10279135  0.         -0.76718646 -0.23281354  0.         -0.183255  ]
    INFO - 08:24:26:       Design space:
    INFO - 08:24:26:       +-------------+-------------+---------------------+-------------+-------+
    INFO - 08:24:26:       | name        | lower_bound |        value        | upper_bound | type  |
    INFO - 08:24:26:       +-------------+-------------+---------------------+-------------+-------+
    INFO - 08:24:26:       | x_shared[0] |     0.01    | 0.05999999999999999 |     0.09    | float |
    INFO - 08:24:26:       | x_shared[1] |    30000    |        60000        |    60000    | float |
    INFO - 08:24:26:       | x_shared[2] |     1.4     |         1.4         |     1.8     | float |
    INFO - 08:24:26:       | x_shared[3] |     2.5     |         2.5         |     8.5     | float |
    INFO - 08:24:26:       | x_shared[4] |      40     |          70         |      70     | float |
    INFO - 08:24:26:       | x_shared[5] |     500     |         1500        |     1500    | float |
    INFO - 08:24:26:       +-------------+-------------+---------------------+-------------+-------+
    INFO - 08:24:26: *** End MDOScenario execution (time: 0:00:11.512494) ***

{'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
<gemseo.post.opt_history_view.OptHistoryView object at 0x7f0cbc312fd0>

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
SobieskiPropulsion: 1290 calls.
SobieskiAerodynamics: 1343 calls.
SobieskiMission: 50 calls.
SobieskiStructure: 1394 calls.

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

Gallery generated by Sphinx-Gallery