Note
Click here to download the full example code
Solve a 2D short cantilever topology optimization problem¶
from __future__ import annotations
import matplotlib.pyplot as plt
from gemseo.api import configure_logger
from gemseo.api import create_scenario
from gemseo.problems.topo_opt.topopt_initialize import (
initialize_design_space_and_discipline_to,
)
from matplotlib import colors
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 = "Short_Cantilever"
Define the number of elements in the x- and y- directions:
n_x = 50
n_y = 25
Define the full material Young’s modulus and 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_memeber_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_memeber_size,
vf0=volume_fraction,
)
Solve the topology optimization problem¶
Generate a MDOScenario
:
scenario = create_scenario(
disciplines,
formulation="DisciplinaryOpt",
objective_name="compliance",
design_space=design_space,
)
Add the volume fraction constraint to the scenario:
scenario.add_constraint("volume fraction", "ineq", value=volume_fraction)
Generate the XDSM:
scenario.xdsmize()
INFO - 16:34:15: Generating HTML XDSM file in : xdsm.html
Execute the scenario:
scenario.execute(input_data={"max_iter": 200, "algo": "NLOPT_MMA"})
INFO - 16:34:15:
INFO - 16:34:15: *** Start MDOScenario execution ***
INFO - 16:34:15: MDOScenario
INFO - 16:34:15: Disciplines: DensityFilter FininiteElementAnalysis MaterialModelInterpolation VolumeFraction
INFO - 16:34:15: MDO formulation: DisciplinaryOpt
INFO - 16:34:15: Optimization problem:
INFO - 16:34:15: minimize compliance(x)
INFO - 16:34:15: with respect to x
INFO - 16:34:15: subject to constraints:
INFO - 16:34:15: volume fraction(x) <= 0.3
INFO - 16:34:15: Solving optimization problem with algorithm NLOPT_MMA:
INFO - 16:34:15: ... 0%| | 0/200 [00:00<?, ?it]
INFO - 16:34:15: ... 0%| | 1/200 [00:00<00:18, 10.83 it/sec, obj=1.46e+3]
INFO - 16:34:15: ... 1%| | 2/200 [00:00<00:32, 6.08 it/sec, obj=1.46e+3]
INFO - 16:34:15: ... 2%|▏ | 3/200 [00:00<00:29, 6.75 it/sec, obj=1.45e+3]
INFO - 16:34:15: ... 2%|▏ | 4/200 [00:00<00:26, 7.33 it/sec, obj=1.45e+3]
INFO - 16:34:15: ... 2%|▎ | 5/200 [00:00<00:26, 7.41 it/sec, obj=1.45e+3]
INFO - 16:34:16: ... 3%|▎ | 6/200 [00:00<00:25, 7.71 it/sec, obj=1.43e+3]
INFO - 16:34:16: ... 4%|▎ | 7/200 [00:00<00:24, 7.79 it/sec, obj=1.4e+3]
INFO - 16:34:16: ... 4%|▍ | 8/200 [00:01<00:24, 7.95 it/sec, obj=1.36e+3]
INFO - 16:34:16: ... 4%|▍ | 9/200 [00:01<00:23, 7.99 it/sec, obj=1.2e+3]
INFO - 16:34:16: ... 5%|▌ | 10/200 [00:01<00:23, 8.10 it/sec, obj=1.01e+3]
INFO - 16:34:16: ... 6%|▌ | 11/200 [00:01<00:23, 8.10 it/sec, obj=756]
INFO - 16:34:16: ... 6%|▌ | 12/200 [00:01<00:22, 8.21 it/sec, obj=573]
INFO - 16:34:16: ... 6%|▋ | 13/200 [00:01<00:22, 8.25 it/sec, obj=509]
INFO - 16:34:16: ... 7%|▋ | 14/200 [00:01<00:22, 8.35 it/sec, obj=448]
INFO - 16:34:17: ... 8%|▊ | 15/200 [00:01<00:22, 8.38 it/sec, obj=399]
INFO - 16:34:17: ... 8%|▊ | 16/200 [00:01<00:21, 8.46 it/sec, obj=360]
INFO - 16:34:17: ... 8%|▊ | 17/200 [00:02<00:21, 8.47 it/sec, obj=329]
INFO - 16:34:17: ... 9%|▉ | 18/200 [00:02<00:21, 8.53 it/sec, obj=304]
INFO - 16:34:17: ... 10%|▉ | 19/200 [00:02<00:21, 8.55 it/sec, obj=278]
INFO - 16:34:17: ... 10%|█ | 20/200 [00:02<00:20, 8.61 it/sec, obj=251]
INFO - 16:34:17: ... 10%|█ | 21/200 [00:02<00:20, 8.62 it/sec, obj=231]
INFO - 16:34:17: ... 11%|█ | 22/200 [00:02<00:20, 8.67 it/sec, obj=213]
INFO - 16:34:17: ... 12%|█▏ | 23/200 [00:02<00:20, 8.68 it/sec, obj=193]
INFO - 16:34:18: ... 12%|█▏ | 24/200 [00:02<00:20, 8.72 it/sec, obj=175]
INFO - 16:34:18: ... 12%|█▎ | 25/200 [00:02<00:20, 8.70 it/sec, obj=161]
INFO - 16:34:18: ... 13%|█▎ | 26/200 [00:02<00:19, 8.74 it/sec, obj=153]
INFO - 16:34:18: ... 14%|█▎ | 27/200 [00:03<00:19, 8.74 it/sec, obj=148]
INFO - 16:34:18: ... 14%|█▍ | 28/200 [00:03<00:19, 8.78 it/sec, obj=145]
INFO - 16:34:18: ... 14%|█▍ | 29/200 [00:03<00:19, 8.78 it/sec, obj=143]
INFO - 16:34:18: ... 15%|█▌ | 30/200 [00:03<00:19, 8.82 it/sec, obj=142]
INFO - 16:34:18: ... 16%|█▌ | 31/200 [00:03<00:19, 8.83 it/sec, obj=141]
INFO - 16:34:18: ... 16%|█▌ | 32/200 [00:03<00:18, 8.87 it/sec, obj=140]
INFO - 16:34:18: ... 16%|█▋ | 33/200 [00:03<00:18, 8.88 it/sec, obj=140]
INFO - 16:34:19: ... 17%|█▋ | 34/200 [00:03<00:18, 8.92 it/sec, obj=140]
INFO - 16:34:19: ... 18%|█▊ | 35/200 [00:03<00:18, 8.92 it/sec, obj=139]
INFO - 16:34:19: ... 18%|█▊ | 36/200 [00:04<00:18, 8.95 it/sec, obj=139]
INFO - 16:34:19: ... 18%|█▊ | 37/200 [00:04<00:18, 8.96 it/sec, obj=139]
INFO - 16:34:19: ... 19%|█▉ | 38/200 [00:04<00:18, 8.98 it/sec, obj=139]
INFO - 16:34:19: ... 20%|█▉ | 39/200 [00:04<00:17, 8.99 it/sec, obj=139]
INFO - 16:34:19: ... 20%|██ | 40/200 [00:04<00:17, 9.01 it/sec, obj=139]
INFO - 16:34:19: ... 20%|██ | 41/200 [00:04<00:17, 9.02 it/sec, obj=139]
INFO - 16:34:19: ... 21%|██ | 42/200 [00:04<00:17, 9.04 it/sec, obj=138]
INFO - 16:34:20: ... 22%|██▏ | 43/200 [00:04<00:17, 9.04 it/sec, obj=138]
INFO - 16:34:20: ... 22%|██▏ | 44/200 [00:04<00:17, 9.05 it/sec, obj=138]
INFO - 16:34:20: ... 22%|██▎ | 45/200 [00:04<00:17, 9.05 it/sec, obj=138]
INFO - 16:34:20: ... 23%|██▎ | 46/200 [00:05<00:16, 9.07 it/sec, obj=138]
INFO - 16:34:20: ... 24%|██▎ | 47/200 [00:05<00:16, 9.07 it/sec, obj=138]
INFO - 16:34:20: ... 24%|██▍ | 48/200 [00:05<00:16, 9.08 it/sec, obj=138]
INFO - 16:34:20: ... 24%|██▍ | 49/200 [00:05<00:16, 9.08 it/sec, obj=138]
INFO - 16:34:20: ... 25%|██▌ | 50/200 [00:05<00:16, 9.09 it/sec, obj=138]
INFO - 16:34:20: ... 26%|██▌ | 51/200 [00:05<00:16, 9.09 it/sec, obj=138]
INFO - 16:34:20: ... 26%|██▌ | 52/200 [00:05<00:16, 9.12 it/sec, obj=138]
INFO - 16:34:21: ... 26%|██▋ | 53/200 [00:05<00:16, 9.11 it/sec, obj=138]
INFO - 16:34:21: ... 27%|██▋ | 54/200 [00:05<00:15, 9.13 it/sec, obj=137]
INFO - 16:34:21: ... 28%|██▊ | 55/200 [00:06<00:15, 9.13 it/sec, obj=137]
INFO - 16:34:21: ... 28%|██▊ | 56/200 [00:06<00:15, 9.15 it/sec, obj=137]
INFO - 16:34:21: ... 28%|██▊ | 57/200 [00:06<00:15, 9.15 it/sec, obj=137]
INFO - 16:34:21: ... 29%|██▉ | 58/200 [00:06<00:15, 9.17 it/sec, obj=137]
INFO - 16:34:21: ... 30%|██▉ | 59/200 [00:06<00:15, 9.16 it/sec, obj=137]
INFO - 16:34:21: ... 30%|███ | 60/200 [00:06<00:15, 9.18 it/sec, obj=137]
INFO - 16:34:21: ... 30%|███ | 61/200 [00:06<00:15, 9.18 it/sec, obj=137]
INFO - 16:34:22: ... 31%|███ | 62/200 [00:06<00:15, 9.19 it/sec, obj=137]
INFO - 16:34:22: ... 32%|███▏ | 63/200 [00:06<00:14, 9.18 it/sec, obj=137]
INFO - 16:34:22: ... 32%|███▏ | 64/200 [00:06<00:14, 9.20 it/sec, obj=137]
INFO - 16:34:22: ... 32%|███▎ | 65/200 [00:07<00:14, 9.19 it/sec, obj=137]
INFO - 16:34:22: ... 33%|███▎ | 66/200 [00:07<00:14, 9.20 it/sec, obj=137]
INFO - 16:34:22: ... 34%|███▎ | 67/200 [00:07<00:14, 9.20 it/sec, obj=137]
INFO - 16:34:22: ... 34%|███▍ | 68/200 [00:07<00:14, 9.22 it/sec, obj=137]
INFO - 16:34:22: ... 34%|███▍ | 69/200 [00:07<00:14, 9.21 it/sec, obj=137]
INFO - 16:34:22: ... 35%|███▌ | 70/200 [00:07<00:14, 9.23 it/sec, obj=137]
INFO - 16:34:22: ... 36%|███▌ | 71/200 [00:07<00:13, 9.23 it/sec, obj=137]
INFO - 16:34:23: ... 36%|███▌ | 72/200 [00:07<00:13, 9.24 it/sec, obj=137]
INFO - 16:34:23: ... 36%|███▋ | 73/200 [00:07<00:13, 9.24 it/sec, obj=137]
INFO - 16:34:23: ... 37%|███▋ | 74/200 [00:08<00:13, 9.25 it/sec, obj=137]
INFO - 16:34:23: ... 38%|███▊ | 75/200 [00:08<00:13, 9.25 it/sec, obj=137]
INFO - 16:34:23: ... 38%|███▊ | 76/200 [00:08<00:13, 9.26 it/sec, obj=137]
INFO - 16:34:23: ... 38%|███▊ | 77/200 [00:08<00:13, 9.26 it/sec, obj=137]
INFO - 16:34:23: ... 39%|███▉ | 78/200 [00:08<00:13, 9.27 it/sec, obj=137]
INFO - 16:34:23: ... 40%|███▉ | 79/200 [00:08<00:13, 9.27 it/sec, obj=137]
INFO - 16:34:23: ... 40%|████ | 80/200 [00:08<00:12, 9.28 it/sec, obj=137]
INFO - 16:34:23: ... 40%|████ | 81/200 [00:08<00:12, 9.28 it/sec, obj=137]
INFO - 16:34:24: ... 41%|████ | 82/200 [00:08<00:12, 9.28 it/sec, obj=137]
INFO - 16:34:24: ... 42%|████▏ | 83/200 [00:08<00:12, 9.28 it/sec, obj=137]
INFO - 16:34:24: ... 42%|████▏ | 84/200 [00:09<00:12, 9.29 it/sec, obj=137]
INFO - 16:34:24: ... 42%|████▎ | 85/200 [00:09<00:12, 9.28 it/sec, obj=137]
INFO - 16:34:24: ... 43%|████▎ | 86/200 [00:09<00:12, 9.29 it/sec, obj=137]
INFO - 16:34:24: ... 44%|████▎ | 87/200 [00:09<00:12, 9.28 it/sec, obj=137]
INFO - 16:34:24: ... 44%|████▍ | 88/200 [00:09<00:12, 9.29 it/sec, obj=137]
INFO - 16:34:24: ... 44%|████▍ | 89/200 [00:09<00:11, 9.29 it/sec, obj=137]
INFO - 16:34:24: ... 45%|████▌ | 90/200 [00:09<00:11, 9.30 it/sec, obj=137]
INFO - 16:34:25: ... 46%|████▌ | 91/200 [00:09<00:11, 9.30 it/sec, obj=137]
INFO - 16:34:25: ... 46%|████▌ | 92/200 [00:09<00:11, 9.31 it/sec, obj=137]
INFO - 16:34:25: ... 46%|████▋ | 93/200 [00:09<00:11, 9.31 it/sec, obj=137]
INFO - 16:34:25: ... 47%|████▋ | 94/200 [00:10<00:11, 9.32 it/sec, obj=137]
INFO - 16:34:25: ... 48%|████▊ | 95/200 [00:10<00:11, 9.32 it/sec, obj=137]
INFO - 16:34:25: ... 48%|████▊ | 96/200 [00:10<00:11, 9.32 it/sec, obj=137]
INFO - 16:34:25: ... 48%|████▊ | 97/200 [00:10<00:11, 9.32 it/sec, obj=137]
INFO - 16:34:25: ... 49%|████▉ | 98/200 [00:10<00:10, 9.33 it/sec, obj=137]
INFO - 16:34:25: ... 50%|████▉ | 99/200 [00:10<00:10, 9.33 it/sec, obj=137]
INFO - 16:34:25: ... 50%|█████ | 100/200 [00:10<00:10, 9.33 it/sec, obj=137]
INFO - 16:34:26: ... 50%|█████ | 101/200 [00:10<00:10, 9.33 it/sec, obj=137]
INFO - 16:34:26: ... 51%|█████ | 102/200 [00:10<00:10, 9.34 it/sec, obj=137]
INFO - 16:34:26: ... 52%|█████▏ | 103/200 [00:11<00:10, 9.33 it/sec, obj=137]
INFO - 16:34:26: ... 52%|█████▏ | 104/200 [00:11<00:10, 9.34 it/sec, obj=137]
INFO - 16:34:26: ... 52%|█████▎ | 105/200 [00:11<00:10, 9.33 it/sec, obj=137]
INFO - 16:34:26: ... 53%|█████▎ | 106/200 [00:11<00:10, 9.33 it/sec, obj=137]
INFO - 16:34:26: ... 54%|█████▎ | 107/200 [00:11<00:09, 9.33 it/sec, obj=137]
INFO - 16:34:26: ... 54%|█████▍ | 108/200 [00:11<00:09, 9.34 it/sec, obj=137]
INFO - 16:34:26: ... 55%|█████▍ | 109/200 [00:11<00:09, 9.34 it/sec, obj=137]
INFO - 16:34:27: ... 55%|█████▌ | 110/200 [00:11<00:09, 9.35 it/sec, obj=137]
INFO - 16:34:27: ... 56%|█████▌ | 111/200 [00:11<00:09, 9.35 it/sec, obj=137]
INFO - 16:34:27: ... 56%|█████▌ | 112/200 [00:11<00:09, 9.36 it/sec, obj=137]
INFO - 16:34:27: ... 56%|█████▋ | 113/200 [00:12<00:09, 9.35 it/sec, obj=137]
INFO - 16:34:27: ... 57%|█████▋ | 114/200 [00:12<00:09, 9.36 it/sec, obj=137]
INFO - 16:34:27: ... 57%|█████▊ | 115/200 [00:12<00:09, 9.36 it/sec, obj=137]
INFO - 16:34:27: ... 58%|█████▊ | 116/200 [00:12<00:08, 9.37 it/sec, obj=137]
INFO - 16:34:27: ... 58%|█████▊ | 117/200 [00:12<00:08, 9.37 it/sec, obj=137]
INFO - 16:34:27: ... 59%|█████▉ | 118/200 [00:12<00:08, 9.37 it/sec, obj=137]
INFO - 16:34:27: ... 60%|█████▉ | 119/200 [00:12<00:08, 9.37 it/sec, obj=137]
INFO - 16:34:28: ... 60%|██████ | 120/200 [00:12<00:08, 9.38 it/sec, obj=137]
INFO - 16:34:28: ... 60%|██████ | 121/200 [00:12<00:08, 9.37 it/sec, obj=137]
INFO - 16:34:28: ... 61%|██████ | 122/200 [00:13<00:08, 9.38 it/sec, obj=137]
INFO - 16:34:28: ... 62%|██████▏ | 123/200 [00:13<00:08, 9.37 it/sec, obj=137]
INFO - 16:34:28: ... 62%|██████▏ | 124/200 [00:13<00:08, 9.38 it/sec, obj=137]
INFO - 16:34:28: ... 62%|██████▎ | 125/200 [00:13<00:08, 9.37 it/sec, obj=137]
INFO - 16:34:28: ... 63%|██████▎ | 126/200 [00:13<00:07, 9.37 it/sec, obj=137]
INFO - 16:34:28: ... 64%|██████▎ | 127/200 [00:13<00:07, 9.37 it/sec, obj=137]
INFO - 16:34:28: ... 64%|██████▍ | 128/200 [00:13<00:07, 9.38 it/sec, obj=137]
INFO - 16:34:29: ... 64%|██████▍ | 129/200 [00:13<00:07, 9.38 it/sec, obj=137]
INFO - 16:34:29: ... 65%|██████▌ | 130/200 [00:13<00:07, 9.39 it/sec, obj=137]
INFO - 16:34:29: ... 66%|██████▌ | 131/200 [00:13<00:07, 9.38 it/sec, obj=137]
INFO - 16:34:29: ... 66%|██████▌ | 132/200 [00:14<00:07, 9.39 it/sec, obj=137]
INFO - 16:34:29: ... 66%|██████▋ | 133/200 [00:14<00:07, 9.39 it/sec, obj=137]
INFO - 16:34:29: ... 67%|██████▋ | 134/200 [00:14<00:07, 9.40 it/sec, obj=137]
INFO - 16:34:29: ... 68%|██████▊ | 135/200 [00:14<00:06, 9.39 it/sec, obj=137]
INFO - 16:34:29: ... 68%|██████▊ | 136/200 [00:14<00:06, 9.40 it/sec, obj=137]
INFO - 16:34:29: ... 68%|██████▊ | 137/200 [00:14<00:06, 9.40 it/sec, obj=137]
INFO - 16:34:29: ... 69%|██████▉ | 138/200 [00:14<00:06, 9.40 it/sec, obj=137]
INFO - 16:34:30: ... 70%|██████▉ | 139/200 [00:14<00:06, 9.40 it/sec, obj=137]
INFO - 16:34:30: ... 70%|███████ | 140/200 [00:14<00:06, 9.40 it/sec, obj=137]
INFO - 16:34:30: ... 70%|███████ | 141/200 [00:15<00:06, 9.40 it/sec, obj=137]
INFO - 16:34:30: ... 71%|███████ | 142/200 [00:15<00:06, 9.40 it/sec, obj=137]
INFO - 16:34:30: ... 72%|███████▏ | 143/200 [00:15<00:06, 9.40 it/sec, obj=137]
INFO - 16:34:30: ... 72%|███████▏ | 144/200 [00:15<00:05, 9.40 it/sec, obj=137]
INFO - 16:34:30: ... 72%|███████▎ | 145/200 [00:15<00:05, 9.40 it/sec, obj=137]
INFO - 16:34:30: ... 73%|███████▎ | 146/200 [00:15<00:05, 9.41 it/sec, obj=137]
INFO - 16:34:30: ... 74%|███████▎ | 147/200 [00:15<00:05, 9.41 it/sec, obj=137]
INFO - 16:34:30: ... 74%|███████▍ | 148/200 [00:15<00:05, 9.41 it/sec, obj=137]
INFO - 16:34:31: ... 74%|███████▍ | 149/200 [00:15<00:05, 9.41 it/sec, obj=137]
INFO - 16:34:31: ... 75%|███████▌ | 150/200 [00:15<00:05, 9.42 it/sec, obj=137]
INFO - 16:34:31: ... 76%|███████▌ | 151/200 [00:16<00:05, 9.41 it/sec, obj=137]
INFO - 16:34:31: ... 76%|███████▌ | 152/200 [00:16<00:05, 9.42 it/sec, obj=137]
INFO - 16:34:31: ... 76%|███████▋ | 153/200 [00:16<00:04, 9.42 it/sec, obj=137]
INFO - 16:34:31: ... 77%|███████▋ | 154/200 [00:16<00:04, 9.42 it/sec, obj=137]
INFO - 16:34:31: ... 78%|███████▊ | 155/200 [00:16<00:04, 9.42 it/sec, obj=137]
INFO - 16:34:31: ... 78%|███████▊ | 156/200 [00:16<00:04, 9.42 it/sec, obj=137]
INFO - 16:34:31: ... 78%|███████▊ | 157/200 [00:16<00:04, 9.42 it/sec, obj=137]
INFO - 16:34:32: ... 79%|███████▉ | 158/200 [00:16<00:04, 9.42 it/sec, obj=137]
INFO - 16:34:32: ... 80%|███████▉ | 159/200 [00:16<00:04, 9.42 it/sec, obj=137]
INFO - 16:34:32: ... 80%|████████ | 160/200 [00:16<00:04, 9.43 it/sec, obj=137]
INFO - 16:34:32: ... 80%|████████ | 161/200 [00:17<00:04, 9.42 it/sec, obj=137]
INFO - 16:34:32: ... 81%|████████ | 162/200 [00:17<00:04, 9.42 it/sec, obj=137]
INFO - 16:34:32: ... 82%|████████▏ | 163/200 [00:17<00:03, 9.42 it/sec, obj=137]
INFO - 16:34:32: ... 82%|████████▏ | 164/200 [00:17<00:03, 9.42 it/sec, obj=137]
INFO - 16:34:32: ... 82%|████████▎ | 165/200 [00:17<00:03, 9.42 it/sec, obj=137]
INFO - 16:34:32: ... 83%|████████▎ | 166/200 [00:17<00:03, 9.43 it/sec, obj=137]
INFO - 16:34:32: ... 84%|████████▎ | 167/200 [00:17<00:03, 9.41 it/sec, obj=137]
INFO - 16:34:33: ... 84%|████████▍ | 168/200 [00:17<00:03, 9.40 it/sec, obj=137]
INFO - 16:34:33: ... 84%|████████▍ | 169/200 [00:17<00:03, 9.40 it/sec, obj=137]
INFO - 16:34:33: ... 85%|████████▌ | 170/200 [00:18<00:03, 9.41 it/sec, obj=137]
INFO - 16:34:33: ... 86%|████████▌ | 171/200 [00:18<00:03, 9.41 it/sec, obj=137]
INFO - 16:34:33: ... 86%|████████▌ | 172/200 [00:18<00:02, 9.41 it/sec, obj=137]
INFO - 16:34:33: ... 86%|████████▋ | 173/200 [00:18<00:02, 9.41 it/sec, obj=137]
INFO - 16:34:33: ... 87%|████████▋ | 174/200 [00:18<00:02, 9.42 it/sec, obj=137]
INFO - 16:34:33: ... 88%|████████▊ | 175/200 [00:18<00:02, 9.41 it/sec, obj=137]
INFO - 16:34:33: ... 88%|████████▊ | 176/200 [00:18<00:02, 9.42 it/sec, obj=137]
INFO - 16:34:34: ... 88%|████████▊ | 177/200 [00:18<00:02, 9.41 it/sec, obj=137]
INFO - 16:34:34: ... 89%|████████▉ | 178/200 [00:18<00:02, 9.42 it/sec, obj=137]
INFO - 16:34:34: ... 90%|████████▉ | 179/200 [00:19<00:02, 9.41 it/sec, obj=137]
INFO - 16:34:34: ... 90%|█████████ | 180/200 [00:19<00:02, 9.42 it/sec, obj=137]
INFO - 16:34:34: ... 90%|█████████ | 181/200 [00:19<00:02, 9.42 it/sec, obj=137]
INFO - 16:34:34: ... 91%|█████████ | 182/200 [00:19<00:01, 9.42 it/sec, obj=137]
INFO - 16:34:34: ... 92%|█████████▏| 183/200 [00:19<00:01, 9.42 it/sec, obj=137]
INFO - 16:34:34: ... 92%|█████████▏| 184/200 [00:19<00:01, 9.42 it/sec, obj=137]
INFO - 16:34:34: ... 92%|█████████▎| 185/200 [00:19<00:01, 9.42 it/sec, obj=137]
INFO - 16:34:34: ... 93%|█████████▎| 186/200 [00:19<00:01, 9.47 it/sec, obj=Not evaluated]
INFO - 16:34:34: Optimization result:
INFO - 16:34:34: Optimizer info:
INFO - 16:34:34: Status: None
INFO - 16:34:34: Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
INFO - 16:34:34: Number of calls to the objective function by the optimizer: 186
INFO - 16:34:34: Solution:
INFO - 16:34:34: The solution is feasible.
INFO - 16:34:34: Objective: 136.56131771172448
INFO - 16:34:34: Standardized constraints:
INFO - 16:34:34: volume fraction - 0.3 = -1.0460364907594055e-08
INFO - 16:34:34: *** End MDOScenario execution (time: 0:00:19.662760) ***
{'max_iter': 200, 'algo': 'NLOPT_MMA'}
Results¶
Post-process the optimization history:
scenario.post_process(
"BasicHistory",
variable_names=["compliance"],
save=True,
show=False,
file_name=problem_name + "_history.png",
)
<gemseo.post.basic_history.BasicHistory object at 0x7fc22caaf670>

Plot the solution:
plt.ion() # Ensure that redrawing is possible
fig, ax = plt.subplots()
im = ax.imshow(
-scenario.optimization_result.x_opt.reshape((n_x, n_y)).T,
cmap="gray",
interpolation="none",
norm=colors.Normalize(vmin=-1, vmax=0),
)
fig.show()
im.set_array(-scenario.optimization_result.x_opt.reshape((n_x, n_y)).T)
fig.canvas.draw()
plt.savefig(problem_name + "_solution.png")


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