Note
Go to the end to download the full example code
Solve a 2D MBB topology optimization problem¶
from __future__ import annotations
from gemseo import configure_logger
from gemseo import create_scenario
from gemseo.problems.topo_opt.topopt_initialize import (
initialize_design_space_and_discipline_to,
)
configure_logger()
<RootLogger root (INFO)>
Setup the topology optimization problem¶
Define the target volume fraction:
volume_fraction = 0.3
Define the problem type:
problem_name = "MBB"
Define the number of elements in x- and y- directions:
n_x = 50
n_y = 25
Define the full material Young’s modulus and the Poisson’s ratio:
e0 = 1
nu = 0.3
Define the penalty of the SIMP approach:
penalty = 3
Define the minimum member size in the solution:
min_member_size = 1.5
Instantiate the DesignSpace and the disciplines:
design_space, disciplines = initialize_design_space_and_discipline_to(
problem=problem_name,
n_x=n_x,
n_y=n_y,
e0=e0,
nu=nu,
penalty=penalty,
min_member_size=min_member_size,
vf0=volume_fraction,
)
Solve the topology optimization problem¶
Generate an MDOScenario
scenario = create_scenario(
disciplines,
"DisciplinaryOpt",
"compliance",
design_space,
)
Add the volume fraction constraint to the scenario:
scenario.add_constraint(
"volume fraction", constraint_type="ineq", value=volume_fraction
)
Generate the XDSM
scenario.xdsmize()
Execute the scenario
scenario.execute({"max_iter": 200, "algo": "NLOPT_MMA"})
INFO - 13:11:31:
INFO - 13:11:31: *** Start MDOScenario execution ***
INFO - 13:11:31: MDOScenario
INFO - 13:11:31: Disciplines: DensityFilter FininiteElementAnalysis MaterialModelInterpolation VolumeFraction
INFO - 13:11:31: MDO formulation: DisciplinaryOpt
INFO - 13:11:31: Optimization problem:
INFO - 13:11:31: minimize compliance(x)
INFO - 13:11:31: with respect to x
INFO - 13:11:31: subject to constraints:
INFO - 13:11:31: volume fraction(x) <= 0.3
INFO - 13:11:31: Solving optimization problem with algorithm NLOPT_MMA:
INFO - 13:11:31: 1%| | 2/200 [00:00<00:15, 12.82 it/sec, obj=1.79e+3]
INFO - 13:11:31: 2%|▏ | 3/200 [00:00<00:13, 14.60 it/sec, obj=1.78e+3]
INFO - 13:11:31: 2%|▏ | 4/200 [00:00<00:12, 15.74 it/sec, obj=1.77e+3]
INFO - 13:11:31: 2%|▎ | 5/200 [00:00<00:11, 16.48 it/sec, obj=1.75e+3]
INFO - 13:11:31: 3%|▎ | 6/200 [00:00<00:11, 16.94 it/sec, obj=1.71e+3]
INFO - 13:11:31: 4%|▎ | 7/200 [00:00<00:11, 17.41 it/sec, obj=1.65e+3]
INFO - 13:11:31: 4%|▍ | 8/200 [00:00<00:10, 17.74 it/sec, obj=1.41e+3]
INFO - 13:11:31: 4%|▍ | 9/200 [00:00<00:10, 18.04 it/sec, obj=1.19e+3]
INFO - 13:11:31: 5%|▌ | 10/200 [00:00<00:10, 18.26 it/sec, obj=903]
INFO - 13:11:31: 6%|▌ | 11/200 [00:00<00:10, 18.48 it/sec, obj=724]
INFO - 13:11:31: 6%|▌ | 12/200 [00:00<00:10, 18.65 it/sec, obj=612]
INFO - 13:11:31: 6%|▋ | 13/200 [00:00<00:09, 18.80 it/sec, obj=534]
INFO - 13:11:31: 7%|▋ | 14/200 [00:00<00:09, 18.91 it/sec, obj=474]
INFO - 13:11:31: 8%|▊ | 15/200 [00:00<00:09, 19.04 it/sec, obj=444]
INFO - 13:11:32: 8%|▊ | 16/200 [00:00<00:09, 19.16 it/sec, obj=419]
INFO - 13:11:32: 8%|▊ | 17/200 [00:00<00:09, 19.30 it/sec, obj=405]
INFO - 13:11:32: 9%|▉ | 18/200 [00:00<00:09, 19.42 it/sec, obj=387]
INFO - 13:11:32: 10%|▉ | 19/200 [00:00<00:09, 19.51 it/sec, obj=364]
INFO - 13:11:32: 10%|█ | 20/200 [00:01<00:09, 19.55 it/sec, obj=338]
INFO - 13:11:32: 10%|█ | 21/200 [00:01<00:09, 19.62 it/sec, obj=306]
INFO - 13:11:32: 11%|█ | 22/200 [00:01<00:09, 19.68 it/sec, obj=272]
INFO - 13:11:32: 12%|█▏ | 23/200 [00:01<00:08, 19.74 it/sec, obj=253]
INFO - 13:11:32: 12%|█▏ | 24/200 [00:01<00:08, 19.77 it/sec, obj=244]
INFO - 13:11:32: 12%|█▎ | 25/200 [00:01<00:08, 19.83 it/sec, obj=234]
INFO - 13:11:32: 13%|█▎ | 26/200 [00:01<00:08, 19.86 it/sec, obj=224]
INFO - 13:11:32: 14%|█▎ | 27/200 [00:01<00:08, 19.90 it/sec, obj=213]
INFO - 13:11:32: 14%|█▍ | 28/200 [00:01<00:08, 19.98 it/sec, obj=207]
INFO - 13:11:32: 14%|█▍ | 29/200 [00:01<00:08, 20.02 it/sec, obj=202]
INFO - 13:11:32: 15%|█▌ | 30/200 [00:01<00:08, 20.06 it/sec, obj=197]
INFO - 13:11:32: 16%|█▌ | 31/200 [00:01<00:08, 20.05 it/sec, obj=193]
INFO - 13:11:32: 16%|█▌ | 32/200 [00:01<00:08, 20.09 it/sec, obj=190]
INFO - 13:11:32: 16%|█▋ | 33/200 [00:01<00:08, 20.15 it/sec, obj=188]
INFO - 13:11:32: 17%|█▋ | 34/200 [00:01<00:08, 20.20 it/sec, obj=186]
INFO - 13:11:32: 18%|█▊ | 35/200 [00:01<00:08, 20.23 it/sec, obj=185]
INFO - 13:11:32: 18%|█▊ | 36/200 [00:01<00:08, 20.26 it/sec, obj=184]
INFO - 13:11:33: 18%|█▊ | 37/200 [00:01<00:08, 20.31 it/sec, obj=183]
INFO - 13:11:33: 19%|█▉ | 38/200 [00:01<00:07, 20.36 it/sec, obj=182]
INFO - 13:11:33: 20%|█▉ | 39/200 [00:01<00:07, 20.38 it/sec, obj=181]
INFO - 13:11:33: 20%|██ | 40/200 [00:01<00:07, 20.39 it/sec, obj=179]
INFO - 13:11:33: 20%|██ | 41/200 [00:02<00:07, 20.41 it/sec, obj=177]
INFO - 13:11:33: 21%|██ | 42/200 [00:02<00:07, 20.42 it/sec, obj=175]
INFO - 13:11:33: 22%|██▏ | 43/200 [00:02<00:07, 20.44 it/sec, obj=174]
INFO - 13:11:33: 22%|██▏ | 44/200 [00:02<00:07, 20.46 it/sec, obj=173]
INFO - 13:11:33: 22%|██▎ | 45/200 [00:02<00:07, 20.50 it/sec, obj=172]
INFO - 13:11:33: 23%|██▎ | 46/200 [00:02<00:07, 20.54 it/sec, obj=172]
INFO - 13:11:33: 24%|██▎ | 47/200 [00:02<00:07, 20.57 it/sec, obj=172]
INFO - 13:11:33: 24%|██▍ | 48/200 [00:02<00:07, 20.61 it/sec, obj=172]
INFO - 13:11:33: 24%|██▍ | 49/200 [00:02<00:07, 20.64 it/sec, obj=172]
INFO - 13:11:33: 25%|██▌ | 50/200 [00:02<00:07, 20.67 it/sec, obj=172]
INFO - 13:11:33: 26%|██▌ | 51/200 [00:02<00:07, 20.69 it/sec, obj=172]
INFO - 13:11:33: 26%|██▌ | 52/200 [00:02<00:07, 20.71 it/sec, obj=172]
INFO - 13:11:33: 26%|██▋ | 53/200 [00:02<00:07, 20.74 it/sec, obj=172]
INFO - 13:11:33: 27%|██▋ | 54/200 [00:02<00:07, 20.77 it/sec, obj=172]
INFO - 13:11:33: 28%|██▊ | 55/200 [00:02<00:06, 20.79 it/sec, obj=172]
INFO - 13:11:33: 28%|██▊ | 56/200 [00:02<00:06, 20.81 it/sec, obj=172]
INFO - 13:11:33: 28%|██▊ | 57/200 [00:02<00:06, 20.84 it/sec, obj=172]
INFO - 13:11:33: 29%|██▉ | 58/200 [00:02<00:06, 20.86 it/sec, obj=171]
INFO - 13:11:34: 30%|██▉ | 59/200 [00:02<00:06, 20.88 it/sec, obj=171]
INFO - 13:11:34: 30%|███ | 60/200 [00:02<00:06, 20.92 it/sec, obj=171]
INFO - 13:11:34: 30%|███ | 61/200 [00:02<00:06, 20.94 it/sec, obj=171]
INFO - 13:11:34: 31%|███ | 62/200 [00:02<00:06, 20.96 it/sec, obj=171]
INFO - 13:11:34: 32%|███▏ | 63/200 [00:03<00:06, 20.98 it/sec, obj=171]
INFO - 13:11:34: 32%|███▏ | 64/200 [00:03<00:06, 21.00 it/sec, obj=171]
INFO - 13:11:34: 32%|███▎ | 65/200 [00:03<00:06, 21.01 it/sec, obj=171]
INFO - 13:11:34: 33%|███▎ | 66/200 [00:03<00:06, 21.03 it/sec, obj=171]
INFO - 13:11:34: 34%|███▎ | 67/200 [00:03<00:06, 21.03 it/sec, obj=171]
INFO - 13:11:34: 34%|███▍ | 68/200 [00:03<00:06, 21.04 it/sec, obj=171]
INFO - 13:11:34: 34%|███▍ | 69/200 [00:03<00:06, 21.05 it/sec, obj=171]
INFO - 13:11:34: 35%|███▌ | 70/200 [00:03<00:06, 21.07 it/sec, obj=171]
INFO - 13:11:34: 36%|███▌ | 71/200 [00:03<00:06, 21.08 it/sec, obj=171]
INFO - 13:11:34: 36%|███▌ | 72/200 [00:03<00:06, 21.09 it/sec, obj=171]
INFO - 13:11:34: 36%|███▋ | 73/200 [00:03<00:06, 21.11 it/sec, obj=171]
INFO - 13:11:34: 37%|███▋ | 74/200 [00:03<00:05, 21.12 it/sec, obj=171]
INFO - 13:11:34: 38%|███▊ | 75/200 [00:03<00:05, 21.13 it/sec, obj=171]
INFO - 13:11:34: 38%|███▊ | 76/200 [00:03<00:05, 21.13 it/sec, obj=171]
INFO - 13:11:34: 38%|███▊ | 77/200 [00:03<00:05, 21.15 it/sec, obj=171]
INFO - 13:11:34: 39%|███▉ | 78/200 [00:03<00:05, 21.16 it/sec, obj=171]
INFO - 13:11:34: 40%|███▉ | 79/200 [00:03<00:05, 21.17 it/sec, obj=171]
INFO - 13:11:34: 40%|████ | 80/200 [00:03<00:05, 21.18 it/sec, obj=171]
INFO - 13:11:35: 40%|████ | 81/200 [00:03<00:05, 21.19 it/sec, obj=171]
INFO - 13:11:35: 41%|████ | 82/200 [00:03<00:05, 21.21 it/sec, obj=171]
INFO - 13:11:35: 42%|████▏ | 83/200 [00:03<00:05, 21.21 it/sec, obj=171]
INFO - 13:11:35: 42%|████▏ | 84/200 [00:03<00:05, 21.21 it/sec, obj=171]
INFO - 13:11:35: 42%|████▎ | 85/200 [00:04<00:05, 21.22 it/sec, obj=171]
INFO - 13:11:35: 43%|████▎ | 86/200 [00:04<00:05, 21.22 it/sec, obj=171]
INFO - 13:11:35: 44%|████▎ | 87/200 [00:04<00:05, 21.23 it/sec, obj=171]
INFO - 13:11:35: 44%|████▍ | 88/200 [00:04<00:05, 21.24 it/sec, obj=171]
INFO - 13:11:35: 44%|████▍ | 89/200 [00:04<00:05, 21.25 it/sec, obj=171]
INFO - 13:11:35: 45%|████▌ | 90/200 [00:04<00:05, 21.27 it/sec, obj=171]
INFO - 13:11:35: 46%|████▌ | 91/200 [00:04<00:05, 21.28 it/sec, obj=171]
INFO - 13:11:35: 46%|████▌ | 92/200 [00:04<00:05, 21.29 it/sec, obj=171]
INFO - 13:11:35: 46%|████▋ | 93/200 [00:04<00:05, 21.30 it/sec, obj=171]
INFO - 13:11:35: 47%|████▋ | 94/200 [00:04<00:04, 21.31 it/sec, obj=171]
INFO - 13:11:35: 48%|████▊ | 95/200 [00:04<00:04, 21.32 it/sec, obj=171]
INFO - 13:11:35: 48%|████▊ | 96/200 [00:04<00:04, 21.33 it/sec, obj=171]
INFO - 13:11:35: 48%|████▊ | 97/200 [00:04<00:04, 21.34 it/sec, obj=171]
INFO - 13:11:35: 49%|████▉ | 98/200 [00:04<00:04, 21.35 it/sec, obj=171]
INFO - 13:11:35: 50%|████▉ | 99/200 [00:04<00:04, 21.36 it/sec, obj=171]
INFO - 13:11:35: 50%|█████ | 100/200 [00:04<00:04, 21.37 it/sec, obj=171]
INFO - 13:11:35: 50%|█████ | 101/200 [00:04<00:04, 21.38 it/sec, obj=171]
INFO - 13:11:35: 51%|█████ | 102/200 [00:04<00:04, 21.38 it/sec, obj=171]
INFO - 13:11:35: 52%|█████▏ | 103/200 [00:04<00:04, 21.39 it/sec, obj=171]
INFO - 13:11:36: 52%|█████▏ | 104/200 [00:04<00:04, 21.40 it/sec, obj=171]
INFO - 13:11:36: 52%|█████▎ | 105/200 [00:04<00:04, 21.41 it/sec, obj=171]
INFO - 13:11:36: 53%|█████▎ | 106/200 [00:04<00:04, 21.42 it/sec, obj=171]
INFO - 13:11:36: 54%|█████▎ | 107/200 [00:04<00:04, 21.43 it/sec, obj=171]
INFO - 13:11:36: 54%|█████▍ | 108/200 [00:05<00:04, 21.44 it/sec, obj=171]
INFO - 13:11:36: 55%|█████▍ | 109/200 [00:05<00:04, 21.45 it/sec, obj=171]
INFO - 13:11:36: 55%|█████▌ | 110/200 [00:05<00:04, 21.46 it/sec, obj=171]
INFO - 13:11:36: 56%|█████▌ | 111/200 [00:05<00:04, 21.47 it/sec, obj=171]
INFO - 13:11:36: 56%|█████▌ | 112/200 [00:05<00:04, 21.47 it/sec, obj=171]
INFO - 13:11:36: 56%|█████▋ | 113/200 [00:05<00:04, 21.47 it/sec, obj=171]
INFO - 13:11:36: 57%|█████▋ | 114/200 [00:05<00:04, 21.48 it/sec, obj=171]
INFO - 13:11:36: 57%|█████▊ | 115/200 [00:05<00:03, 21.50 it/sec, obj=172]
INFO - 13:11:36: 58%|█████▊ | 116/200 [00:05<00:03, 21.51 it/sec, obj=172]
INFO - 13:11:36: 58%|█████▊ | 117/200 [00:05<00:03, 21.52 it/sec, obj=172]
INFO - 13:11:36: 59%|█████▉ | 118/200 [00:05<00:03, 21.52 it/sec, obj=172]
INFO - 13:11:36: 60%|█████▉ | 119/200 [00:05<00:03, 21.53 it/sec, obj=171]
INFO - 13:11:36: 60%|██████ | 120/200 [00:05<00:03, 21.52 it/sec, obj=171]
INFO - 13:11:36: 60%|██████ | 121/200 [00:05<00:03, 21.53 it/sec, obj=171]
INFO - 13:11:36: 61%|██████ | 122/200 [00:05<00:03, 21.53 it/sec, obj=170]
INFO - 13:11:36: 62%|██████▏ | 123/200 [00:05<00:03, 21.53 it/sec, obj=170]
INFO - 13:11:36: 62%|██████▏ | 124/200 [00:05<00:03, 21.53 it/sec, obj=170]
INFO - 13:11:36: 62%|██████▎ | 125/200 [00:05<00:03, 21.53 it/sec, obj=170]
INFO - 13:11:37: 63%|██████▎ | 126/200 [00:05<00:03, 21.54 it/sec, obj=170]
INFO - 13:11:37: 64%|██████▎ | 127/200 [00:05<00:03, 21.54 it/sec, obj=170]
INFO - 13:11:37: 64%|██████▍ | 128/200 [00:05<00:03, 21.54 it/sec, obj=170]
INFO - 13:11:37: 64%|██████▍ | 129/200 [00:05<00:03, 21.54 it/sec, obj=170]
INFO - 13:11:37: 65%|██████▌ | 130/200 [00:06<00:03, 21.54 it/sec, obj=170]
INFO - 13:11:37: 66%|██████▌ | 131/200 [00:06<00:03, 21.54 it/sec, obj=170]
INFO - 13:11:37: 66%|██████▌ | 132/200 [00:06<00:03, 21.54 it/sec, obj=170]
INFO - 13:11:37: 66%|██████▋ | 133/200 [00:06<00:03, 21.55 it/sec, obj=170]
INFO - 13:11:37: 67%|██████▋ | 134/200 [00:06<00:03, 21.56 it/sec, obj=170]
INFO - 13:11:37: 68%|██████▊ | 135/200 [00:06<00:03, 21.56 it/sec, obj=170]
INFO - 13:11:37: 68%|██████▊ | 136/200 [00:06<00:02, 21.57 it/sec, obj=170]
INFO - 13:11:37: 68%|██████▊ | 137/200 [00:06<00:02, 21.57 it/sec, obj=170]
INFO - 13:11:37: 69%|██████▉ | 138/200 [00:06<00:02, 21.58 it/sec, obj=170]
INFO - 13:11:37: 70%|██████▉ | 139/200 [00:06<00:02, 21.59 it/sec, obj=170]
INFO - 13:11:37: 70%|███████ | 140/200 [00:06<00:02, 21.59 it/sec, obj=170]
INFO - 13:11:37: 70%|███████ | 141/200 [00:06<00:02, 21.59 it/sec, obj=170]
INFO - 13:11:37: 71%|███████ | 142/200 [00:06<00:02, 21.60 it/sec, obj=170]
INFO - 13:11:37: 72%|███████▏ | 143/200 [00:06<00:02, 21.60 it/sec, obj=170]
INFO - 13:11:37: 72%|███████▏ | 144/200 [00:06<00:02, 21.61 it/sec, obj=170]
INFO - 13:11:37: 72%|███████▎ | 145/200 [00:06<00:02, 21.61 it/sec, obj=170]
INFO - 13:11:37: 73%|███████▎ | 146/200 [00:06<00:02, 21.61 it/sec, obj=170]
INFO - 13:11:37: 74%|███████▎ | 147/200 [00:06<00:02, 21.62 it/sec, obj=170]
INFO - 13:11:38: 74%|███████▍ | 148/200 [00:06<00:02, 21.62 it/sec, obj=170]
INFO - 13:11:38: 74%|███████▍ | 149/200 [00:06<00:02, 21.63 it/sec, obj=170]
INFO - 13:11:38: 75%|███████▌ | 150/200 [00:06<00:02, 21.64 it/sec, obj=170]
INFO - 13:11:38: 76%|███████▌ | 151/200 [00:06<00:02, 21.64 it/sec, obj=170]
INFO - 13:11:38: 76%|███████▌ | 152/200 [00:07<00:02, 21.65 it/sec, obj=170]
INFO - 13:11:38: 76%|███████▋ | 153/200 [00:07<00:02, 21.65 it/sec, obj=170]
INFO - 13:11:38: 77%|███████▋ | 154/200 [00:07<00:02, 21.66 it/sec, obj=170]
INFO - 13:11:38: 78%|███████▊ | 155/200 [00:07<00:02, 21.66 it/sec, obj=170]
INFO - 13:11:38: 78%|███████▊ | 156/200 [00:07<00:02, 21.66 it/sec, obj=170]
INFO - 13:11:38: 78%|███████▊ | 157/200 [00:07<00:01, 21.67 it/sec, obj=170]
INFO - 13:11:38: 79%|███████▉ | 158/200 [00:07<00:01, 21.67 it/sec, obj=170]
INFO - 13:11:38: 80%|███████▉ | 159/200 [00:07<00:01, 21.68 it/sec, obj=170]
INFO - 13:11:38: 80%|████████ | 160/200 [00:07<00:01, 21.68 it/sec, obj=170]
INFO - 13:11:38: 80%|████████ | 161/200 [00:07<00:01, 21.69 it/sec, obj=170]
INFO - 13:11:38: 81%|████████ | 162/200 [00:07<00:01, 21.69 it/sec, obj=170]
INFO - 13:11:38: 82%|████████▏ | 163/200 [00:07<00:01, 21.69 it/sec, obj=170]
INFO - 13:11:38: 82%|████████▏ | 164/200 [00:07<00:01, 21.69 it/sec, obj=170]
INFO - 13:11:38: 82%|████████▎ | 165/200 [00:07<00:01, 21.70 it/sec, obj=170]
INFO - 13:11:38: 83%|████████▎ | 166/200 [00:07<00:01, 21.70 it/sec, obj=170]
INFO - 13:11:38: 84%|████████▎ | 167/200 [00:07<00:01, 21.71 it/sec, obj=170]
INFO - 13:11:38: 84%|████████▍ | 168/200 [00:07<00:01, 21.70 it/sec, obj=170]
INFO - 13:11:38: 84%|████████▍ | 169/200 [00:07<00:01, 21.70 it/sec, obj=170]
INFO - 13:11:39: 85%|████████▌ | 170/200 [00:07<00:01, 21.71 it/sec, obj=170]
INFO - 13:11:39: 86%|████████▌ | 171/200 [00:07<00:01, 21.71 it/sec, obj=170]
INFO - 13:11:39: 86%|████████▌ | 172/200 [00:07<00:01, 21.71 it/sec, obj=170]
INFO - 13:11:39: 86%|████████▋ | 173/200 [00:07<00:01, 21.71 it/sec, obj=170]
INFO - 13:11:39: 87%|████████▋ | 174/200 [00:08<00:01, 21.71 it/sec, obj=170]
INFO - 13:11:39: 88%|████████▊ | 175/200 [00:08<00:01, 21.72 it/sec, obj=170]
INFO - 13:11:39: 88%|████████▊ | 176/200 [00:08<00:01, 21.72 it/sec, obj=170]
INFO - 13:11:39: 88%|████████▊ | 177/200 [00:08<00:01, 21.72 it/sec, obj=170]
INFO - 13:11:39: 89%|████████▉ | 178/200 [00:08<00:01, 21.72 it/sec, obj=170]
INFO - 13:11:39: 90%|████████▉ | 179/200 [00:08<00:00, 21.73 it/sec, obj=170]
INFO - 13:11:39: 90%|█████████ | 180/200 [00:08<00:00, 21.73 it/sec, obj=170]
INFO - 13:11:39: 90%|█████████ | 181/200 [00:08<00:00, 21.73 it/sec, obj=170]
INFO - 13:11:39: 91%|█████████ | 182/200 [00:08<00:00, 21.74 it/sec, obj=170]
INFO - 13:11:39: 92%|█████████▏| 183/200 [00:08<00:00, 21.74 it/sec, obj=170]
INFO - 13:11:39: 92%|█████████▏| 184/200 [00:08<00:00, 21.75 it/sec, obj=170]
INFO - 13:11:39: 92%|█████████▎| 185/200 [00:08<00:00, 21.75 it/sec, obj=170]
INFO - 13:11:39: 93%|█████████▎| 186/200 [00:08<00:00, 21.76 it/sec, obj=170]
INFO - 13:11:39: 94%|█████████▎| 187/200 [00:08<00:00, 21.76 it/sec, obj=170]
INFO - 13:11:39: 94%|█████████▍| 188/200 [00:08<00:00, 21.77 it/sec, obj=170]
INFO - 13:11:39: 94%|█████████▍| 189/200 [00:08<00:00, 21.77 it/sec, obj=170]
INFO - 13:11:39: 95%|█████████▌| 190/200 [00:08<00:00, 21.77 it/sec, obj=170]
INFO - 13:11:39: 96%|█████████▌| 191/200 [00:08<00:00, 21.78 it/sec, obj=170]
INFO - 13:11:39: 96%|█████████▌| 192/200 [00:08<00:00, 21.78 it/sec, obj=170]
INFO - 13:11:40: 96%|█████████▋| 193/200 [00:08<00:00, 21.79 it/sec, obj=170]
INFO - 13:11:40: 97%|█████████▋| 194/200 [00:08<00:00, 21.79 it/sec, obj=170]
INFO - 13:11:40: 98%|█████████▊| 195/200 [00:08<00:00, 21.80 it/sec, obj=170]
INFO - 13:11:40: 98%|█████████▊| 196/200 [00:08<00:00, 21.80 it/sec, obj=170]
INFO - 13:11:40: 98%|█████████▊| 197/200 [00:09<00:00, 21.80 it/sec, obj=170]
INFO - 13:11:40: 99%|█████████▉| 198/200 [00:09<00:00, 21.81 it/sec, obj=170]
INFO - 13:11:40: 100%|█████████▉| 199/200 [00:09<00:00, 21.81 it/sec, obj=170]
INFO - 13:11:40: 100%|██████████| 200/200 [00:09<00:00, 21.89 it/sec, obj=170]
INFO - 13:11:40: Optimization result:
INFO - 13:11:40: Optimizer info:
INFO - 13:11:40: Status: None
INFO - 13:11:40: Message: Maximum number of iterations reached. GEMSEO Stopped the driver
INFO - 13:11:40: Number of calls to the objective function by the optimizer: 201
INFO - 13:11:40: Solution:
INFO - 13:11:40: The solution is feasible.
INFO - 13:11:40: Objective: 169.89161468983534
INFO - 13:11:40: Standardized constraints:
INFO - 13:11:40: [volume fraction-0.3] = -4.312432086428508e-07
INFO - 13:11:40: *** End MDOScenario execution (time: 0:00:09.155696) ***
{'max_iter': 200, 'algo': 'NLOPT_MMA'}
Results¶
Post-process the optimization history:
scenario.post_process(
"BasicHistory", variable_names=["compliance"], show=True, save=False
)

/home/docs/checkouts/readthedocs.org/user_builds/gemseo/envs/5.3.2/lib/python3.9/site-packages/gemseo/datasets/dataset.py:490: PerformanceWarning: DataFrame is highly fragmented. This is usually the result of calling `frame.insert` many times, which has poor performance. Consider joining all columns at once using pd.concat(axis=1) instead. To get a de-fragmented frame, use `newframe = frame.copy()`
self[columns] = value
<gemseo.post.basic_history.BasicHistory object at 0x7f8b975149a0>
Plot the solution
scenario.post_process("TopologyView", n_x=n_x, n_y=n_y, show=True, save=False)

<gemseo.post.topology_view.TopologyView object at 0x7f8bb422e250>
Total running time of the script: (0 minutes 9.955 seconds)