Solve a 2D MBB 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 = "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 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 - 09:02:22: Generating HTML XDSM file in : xdsm.html

Execute the scenario

scenario.execute(input_data={"max_iter": 200, "algo": "NLOPT_MMA"})
    INFO - 09:02:22:
    INFO - 09:02:22: *** Start MDOScenario execution ***
    INFO - 09:02:22: MDOScenario
    INFO - 09:02:22:    Disciplines: DensityFilter FininiteElementAnalysis MaterialModelInterpolation VolumeFraction
    INFO - 09:02:22:    MDO formulation: DisciplinaryOpt
    INFO - 09:02:22: Optimization problem:
    INFO - 09:02:22:    minimize compliance(x)
    INFO - 09:02:22:    with respect to x
    INFO - 09:02:22:    subject to constraints:
    INFO - 09:02:22:       volume fraction(x) <= 0.3
    INFO - 09:02:22: Solving optimization problem with algorithm NLOPT_MMA:
    INFO - 09:02:22: ...   0%|          | 0/200 [00:00<?, ?it]
    INFO - 09:02:22: ...   0%|          | 1/200 [00:00<00:16, 11.72 it/sec, obj=1.79e+3]
    INFO - 09:02:22: ...   1%|          | 2/200 [00:00<00:32,  6.13 it/sec, obj=1.79e+3]
    INFO - 09:02:22: ...   2%|▏         | 3/200 [00:00<00:29,  6.76 it/sec, obj=1.78e+3]
    INFO - 09:02:22: ...   2%|▏         | 4/200 [00:00<00:26,  7.31 it/sec, obj=1.77e+3]
    INFO - 09:02:22: ...   2%|▎         | 5/200 [00:00<00:25,  7.51 it/sec, obj=1.75e+3]
    INFO - 09:02:23: ...   3%|▎         | 6/200 [00:00<00:24,  7.79 it/sec, obj=1.71e+3]
    INFO - 09:02:23: ...   4%|▎         | 7/200 [00:00<00:24,  7.89 it/sec, obj=1.65e+3]
    INFO - 09:02:23: ...   4%|▍         | 8/200 [00:00<00:23,  8.07 it/sec, obj=1.41e+3]
    INFO - 09:02:23: ...   4%|▍         | 9/200 [00:01<00:23,  8.15 it/sec, obj=1.19e+3]
    INFO - 09:02:23: ...   5%|▌         | 10/200 [00:01<00:22,  8.27 it/sec, obj=903]
    INFO - 09:02:23: ...   6%|▌         | 11/200 [00:01<00:22,  8.29 it/sec, obj=724]
    INFO - 09:02:23: ...   6%|▌         | 12/200 [00:01<00:22,  8.37 it/sec, obj=612]
    INFO - 09:02:23: ...   6%|▋         | 13/200 [00:01<00:22,  8.39 it/sec, obj=534]
    INFO - 09:02:23: ...   7%|▋         | 14/200 [00:01<00:21,  8.47 it/sec, obj=474]
    INFO - 09:02:23: ...   8%|▊         | 15/200 [00:01<00:21,  8.50 it/sec, obj=444]
    INFO - 09:02:24: ...   8%|▊         | 16/200 [00:01<00:21,  8.57 it/sec, obj=419]
    INFO - 09:02:24: ...   8%|▊         | 17/200 [00:01<00:21,  8.60 it/sec, obj=405]
    INFO - 09:02:24: ...   9%|▉         | 18/200 [00:02<00:20,  8.68 it/sec, obj=387]
    INFO - 09:02:24: ...  10%|▉         | 19/200 [00:02<00:20,  8.69 it/sec, obj=364]
    INFO - 09:02:24: ...  10%|█         | 20/200 [00:02<00:20,  8.74 it/sec, obj=338]
    INFO - 09:02:24: ...  10%|█         | 21/200 [00:02<00:20,  8.75 it/sec, obj=306]
    INFO - 09:02:24: ...  11%|█         | 22/200 [00:02<00:20,  8.80 it/sec, obj=272]
    INFO - 09:02:24: ...  12%|█▏        | 23/200 [00:02<00:20,  8.81 it/sec, obj=253]
    INFO - 09:02:24: ...  12%|█▏        | 24/200 [00:02<00:19,  8.85 it/sec, obj=244]
    INFO - 09:02:25: ...  12%|█▎        | 25/200 [00:02<00:19,  8.85 it/sec, obj=234]
    INFO - 09:02:25: ...  13%|█▎        | 26/200 [00:02<00:19,  8.88 it/sec, obj=224]
    INFO - 09:02:25: ...  14%|█▎        | 27/200 [00:03<00:19,  8.88 it/sec, obj=213]
    INFO - 09:02:25: ...  14%|█▍        | 28/200 [00:03<00:19,  8.92 it/sec, obj=207]
    INFO - 09:02:25: ...  14%|█▍        | 29/200 [00:03<00:19,  8.93 it/sec, obj=202]
    INFO - 09:02:25: ...  15%|█▌        | 30/200 [00:03<00:18,  8.96 it/sec, obj=197]
    INFO - 09:02:25: ...  16%|█▌        | 31/200 [00:03<00:18,  8.96 it/sec, obj=193]
    INFO - 09:02:25: ...  16%|█▌        | 32/200 [00:03<00:18,  8.99 it/sec, obj=190]
    INFO - 09:02:25: ...  16%|█▋        | 33/200 [00:03<00:18,  8.99 it/sec, obj=188]
    INFO - 09:02:25: ...  17%|█▋        | 34/200 [00:03<00:18,  9.02 it/sec, obj=186]
    INFO - 09:02:26: ...  18%|█▊        | 35/200 [00:03<00:18,  9.03 it/sec, obj=185]
    INFO - 09:02:26: ...  18%|█▊        | 36/200 [00:03<00:18,  9.06 it/sec, obj=184]
    INFO - 09:02:26: ...  18%|█▊        | 37/200 [00:04<00:17,  9.06 it/sec, obj=183]
    INFO - 09:02:26: ...  19%|█▉        | 38/200 [00:04<00:17,  9.09 it/sec, obj=182]
    INFO - 09:02:26: ...  20%|█▉        | 39/200 [00:04<00:17,  9.09 it/sec, obj=181]
    INFO - 09:02:26: ...  20%|██        | 40/200 [00:04<00:17,  9.12 it/sec, obj=179]
    INFO - 09:02:26: ...  20%|██        | 41/200 [00:04<00:17,  9.11 it/sec, obj=177]
    INFO - 09:02:26: ...  21%|██        | 42/200 [00:04<00:17,  9.14 it/sec, obj=175]
    INFO - 09:02:26: ...  22%|██▏       | 43/200 [00:04<00:17,  9.14 it/sec, obj=174]
    INFO - 09:02:27: ...  22%|██▏       | 44/200 [00:04<00:17,  9.16 it/sec, obj=173]
    INFO - 09:02:27: ...  22%|██▎       | 45/200 [00:04<00:16,  9.16 it/sec, obj=172]
    INFO - 09:02:27: ...  23%|██▎       | 46/200 [00:05<00:16,  9.18 it/sec, obj=172]
    INFO - 09:02:27: ...  24%|██▎       | 47/200 [00:05<00:16,  9.18 it/sec, obj=172]
    INFO - 09:02:27: ...  24%|██▍       | 48/200 [00:05<00:16,  9.20 it/sec, obj=172]
    INFO - 09:02:27: ...  24%|██▍       | 49/200 [00:05<00:16,  9.20 it/sec, obj=172]
    INFO - 09:02:27: ...  25%|██▌       | 50/200 [00:05<00:16,  9.22 it/sec, obj=172]
    INFO - 09:02:27: ...  26%|██▌       | 51/200 [00:05<00:16,  9.22 it/sec, obj=172]
    INFO - 09:02:27: ...  26%|██▌       | 52/200 [00:05<00:16,  9.23 it/sec, obj=172]
    INFO - 09:02:27: ...  26%|██▋       | 53/200 [00:05<00:15,  9.23 it/sec, obj=172]
    INFO - 09:02:28: ...  27%|██▋       | 54/200 [00:05<00:15,  9.24 it/sec, obj=172]
    INFO - 09:02:28: ...  28%|██▊       | 55/200 [00:05<00:15,  9.23 it/sec, obj=172]
    INFO - 09:02:28: ...  28%|██▊       | 56/200 [00:06<00:15,  9.25 it/sec, obj=172]
    INFO - 09:02:28: ...  28%|██▊       | 57/200 [00:06<00:15,  9.25 it/sec, obj=172]
    INFO - 09:02:28: ...  29%|██▉       | 58/200 [00:06<00:15,  9.26 it/sec, obj=171]
    INFO - 09:02:28: ...  30%|██▉       | 59/200 [00:06<00:15,  9.26 it/sec, obj=171]
    INFO - 09:02:28: ...  30%|███       | 60/200 [00:06<00:15,  9.28 it/sec, obj=171]
    INFO - 09:02:28: ...  30%|███       | 61/200 [00:06<00:14,  9.28 it/sec, obj=171]
    INFO - 09:02:28: ...  31%|███       | 62/200 [00:06<00:14,  9.29 it/sec, obj=171]
    INFO - 09:02:29: ...  32%|███▏      | 63/200 [00:06<00:14,  9.29 it/sec, obj=171]
    INFO - 09:02:29: ...  32%|███▏      | 64/200 [00:06<00:14,  9.30 it/sec, obj=171]
    INFO - 09:02:29: ...  32%|███▎      | 65/200 [00:06<00:14,  9.30 it/sec, obj=171]
    INFO - 09:02:29: ...  33%|███▎      | 66/200 [00:07<00:14,  9.31 it/sec, obj=171]
    INFO - 09:02:29: ...  34%|███▎      | 67/200 [00:07<00:14,  9.31 it/sec, obj=171]
    INFO - 09:02:29: ...  34%|███▍      | 68/200 [00:07<00:14,  9.33 it/sec, obj=171]
    INFO - 09:02:29: ...  34%|███▍      | 69/200 [00:07<00:14,  9.32 it/sec, obj=171]
    INFO - 09:02:29: ...  35%|███▌      | 70/200 [00:07<00:13,  9.34 it/sec, obj=171]
    INFO - 09:02:29: ...  36%|███▌      | 71/200 [00:07<00:13,  9.34 it/sec, obj=171]
    INFO - 09:02:29: ...  36%|███▌      | 72/200 [00:07<00:13,  9.35 it/sec, obj=171]
    INFO - 09:02:30: ...  36%|███▋      | 73/200 [00:07<00:13,  9.35 it/sec, obj=171]
    INFO - 09:02:30: ...  37%|███▋      | 74/200 [00:07<00:13,  9.36 it/sec, obj=171]
    INFO - 09:02:30: ...  38%|███▊      | 75/200 [00:08<00:13,  9.36 it/sec, obj=171]
    INFO - 09:02:30: ...  38%|███▊      | 76/200 [00:08<00:13,  9.36 it/sec, obj=171]
    INFO - 09:02:30: ...  38%|███▊      | 77/200 [00:08<00:13,  9.36 it/sec, obj=171]
    INFO - 09:02:30: ...  39%|███▉      | 78/200 [00:08<00:13,  9.37 it/sec, obj=171]
    INFO - 09:02:30: ...  40%|███▉      | 79/200 [00:08<00:12,  9.37 it/sec, obj=171]
    INFO - 09:02:30: ...  40%|████      | 80/200 [00:08<00:12,  9.38 it/sec, obj=171]
    INFO - 09:02:30: ...  40%|████      | 81/200 [00:08<00:12,  9.37 it/sec, obj=171]
    INFO - 09:02:30: ...  41%|████      | 82/200 [00:08<00:12,  9.38 it/sec, obj=171]
    INFO - 09:02:31: ...  42%|████▏     | 83/200 [00:08<00:12,  9.38 it/sec, obj=171]
    INFO - 09:02:31: ...  42%|████▏     | 84/200 [00:08<00:12,  9.39 it/sec, obj=171]
    INFO - 09:02:31: ...  42%|████▎     | 85/200 [00:09<00:12,  9.39 it/sec, obj=171]
    INFO - 09:02:31: ...  43%|████▎     | 86/200 [00:09<00:12,  9.39 it/sec, obj=171]
    INFO - 09:02:31: ...  44%|████▎     | 87/200 [00:09<00:12,  9.39 it/sec, obj=171]
    INFO - 09:02:31: ...  44%|████▍     | 88/200 [00:09<00:11,  9.40 it/sec, obj=171]
    INFO - 09:02:31: ...  44%|████▍     | 89/200 [00:09<00:11,  9.40 it/sec, obj=171]
    INFO - 09:02:31: ...  45%|████▌     | 90/200 [00:09<00:11,  9.41 it/sec, obj=171]
    INFO - 09:02:31: ...  46%|████▌     | 91/200 [00:09<00:11,  9.41 it/sec, obj=171]
    INFO - 09:02:32: ...  46%|████▌     | 92/200 [00:09<00:11,  9.42 it/sec, obj=171]
    INFO - 09:02:32: ...  46%|████▋     | 93/200 [00:09<00:11,  9.41 it/sec, obj=171]
    INFO - 09:02:32: ...  47%|████▋     | 94/200 [00:09<00:11,  9.42 it/sec, obj=171]
    INFO - 09:02:32: ...  48%|████▊     | 95/200 [00:10<00:11,  9.42 it/sec, obj=171]
    INFO - 09:02:32: ...  48%|████▊     | 96/200 [00:10<00:11,  9.43 it/sec, obj=171]
    INFO - 09:02:32: ...  48%|████▊     | 97/200 [00:10<00:10,  9.42 it/sec, obj=171]
    INFO - 09:02:32: ...  49%|████▉     | 98/200 [00:10<00:10,  9.43 it/sec, obj=171]
    INFO - 09:02:32: ...  50%|████▉     | 99/200 [00:10<00:10,  9.43 it/sec, obj=171]
    INFO - 09:02:32: ...  50%|█████     | 100/200 [00:10<00:10,  9.44 it/sec, obj=171]
    INFO - 09:02:32: ...  50%|█████     | 101/200 [00:10<00:10,  9.43 it/sec, obj=171]
    INFO - 09:02:33: ...  51%|█████     | 102/200 [00:10<00:10,  9.44 it/sec, obj=171]
    INFO - 09:02:33: ...  52%|█████▏    | 103/200 [00:10<00:10,  9.43 it/sec, obj=171]
    INFO - 09:02:33: ...  52%|█████▏    | 104/200 [00:11<00:10,  9.44 it/sec, obj=171]
    INFO - 09:02:33: ...  52%|█████▎    | 105/200 [00:11<00:10,  9.44 it/sec, obj=171]
    INFO - 09:02:33: ...  53%|█████▎    | 106/200 [00:11<00:09,  9.44 it/sec, obj=171]
    INFO - 09:02:33: ...  54%|█████▎    | 107/200 [00:11<00:09,  9.44 it/sec, obj=171]
    INFO - 09:02:33: ...  54%|█████▍    | 108/200 [00:11<00:09,  9.45 it/sec, obj=171]
    INFO - 09:02:33: ...  55%|█████▍    | 109/200 [00:11<00:09,  9.45 it/sec, obj=171]
    INFO - 09:02:33: ...  55%|█████▌    | 110/200 [00:11<00:09,  9.45 it/sec, obj=171]
    INFO - 09:02:33: ...  56%|█████▌    | 111/200 [00:11<00:09,  9.45 it/sec, obj=171]
    INFO - 09:02:34: ...  56%|█████▌    | 112/200 [00:11<00:09,  9.45 it/sec, obj=171]
    INFO - 09:02:34: ...  56%|█████▋    | 113/200 [00:11<00:09,  9.45 it/sec, obj=171]
    INFO - 09:02:34: ...  57%|█████▋    | 114/200 [00:12<00:09,  9.45 it/sec, obj=171]
    INFO - 09:02:34: ...  57%|█████▊    | 115/200 [00:12<00:08,  9.45 it/sec, obj=171]
    INFO - 09:02:34: ...  58%|█████▊    | 116/200 [00:12<00:08,  9.46 it/sec, obj=171]
    INFO - 09:02:34: ...  58%|█████▊    | 117/200 [00:12<00:08,  9.46 it/sec, obj=171]
    INFO - 09:02:34: ...  59%|█████▉    | 118/200 [00:12<00:08,  9.46 it/sec, obj=171]
    INFO - 09:02:34: ...  60%|█████▉    | 119/200 [00:12<00:08,  9.46 it/sec, obj=171]
    INFO - 09:02:34: ...  60%|██████    | 120/200 [00:12<00:08,  9.46 it/sec, obj=171]
    INFO - 09:02:35: ...  60%|██████    | 121/200 [00:12<00:08,  9.46 it/sec, obj=171]
    INFO - 09:02:35: ...  61%|██████    | 122/200 [00:12<00:08,  9.47 it/sec, obj=171]
    INFO - 09:02:35: ...  62%|██████▏   | 123/200 [00:12<00:08,  9.46 it/sec, obj=171]
    INFO - 09:02:35: ...  62%|██████▏   | 124/200 [00:13<00:08,  9.47 it/sec, obj=171]
    INFO - 09:02:35: ...  62%|██████▎   | 125/200 [00:13<00:07,  9.46 it/sec, obj=170]
    INFO - 09:02:35: ...  63%|██████▎   | 126/200 [00:13<00:07,  9.47 it/sec, obj=170]
    INFO - 09:02:35: ...  64%|██████▎   | 127/200 [00:13<00:07,  9.47 it/sec, obj=170]
    INFO - 09:02:35: ...  64%|██████▍   | 128/200 [00:13<00:07,  9.47 it/sec, obj=170]
    INFO - 09:02:35: ...  64%|██████▍   | 129/200 [00:13<00:07,  9.47 it/sec, obj=170]
    INFO - 09:02:35: ...  65%|██████▌   | 130/200 [00:13<00:07,  9.48 it/sec, obj=170]
    INFO - 09:02:36: ...  66%|██████▌   | 131/200 [00:13<00:07,  9.48 it/sec, obj=170]
    INFO - 09:02:36: ...  66%|██████▌   | 132/200 [00:13<00:07,  9.48 it/sec, obj=170]
    INFO - 09:02:36: ...  66%|██████▋   | 133/200 [00:14<00:07,  9.48 it/sec, obj=170]
    INFO - 09:02:36: ...  67%|██████▋   | 134/200 [00:14<00:06,  9.48 it/sec, obj=170]
    INFO - 09:02:36: ...  68%|██████▊   | 135/200 [00:14<00:06,  9.48 it/sec, obj=170]
    INFO - 09:02:36: ...  68%|██████▊   | 136/200 [00:14<00:06,  9.48 it/sec, obj=170]
    INFO - 09:02:36: ...  68%|██████▊   | 137/200 [00:14<00:06,  9.48 it/sec, obj=170]
    INFO - 09:02:36: ...  69%|██████▉   | 138/200 [00:14<00:06,  9.49 it/sec, obj=170]
    INFO - 09:02:36: ...  70%|██████▉   | 139/200 [00:14<00:06,  9.48 it/sec, obj=170]
    INFO - 09:02:36: ...  70%|███████   | 140/200 [00:14<00:06,  9.49 it/sec, obj=170]
    INFO - 09:02:37: ...  70%|███████   | 141/200 [00:14<00:06,  9.49 it/sec, obj=170]
    INFO - 09:02:37: ...  71%|███████   | 142/200 [00:14<00:06,  9.49 it/sec, obj=170]
    INFO - 09:02:37: ...  72%|███████▏  | 143/200 [00:15<00:06,  9.49 it/sec, obj=170]
    INFO - 09:02:37: ...  72%|███████▏  | 144/200 [00:15<00:05,  9.50 it/sec, obj=170]
    INFO - 09:02:37: ...  72%|███████▎  | 145/200 [00:15<00:05,  9.49 it/sec, obj=170]
    INFO - 09:02:37: ...  73%|███████▎  | 146/200 [00:15<00:05,  9.50 it/sec, obj=170]
    INFO - 09:02:37: ...  74%|███████▎  | 147/200 [00:15<00:05,  9.50 it/sec, obj=170]
    INFO - 09:02:37: ...  74%|███████▍  | 148/200 [00:15<00:05,  9.50 it/sec, obj=170]
    INFO - 09:02:37: ...  74%|███████▍  | 149/200 [00:15<00:05,  9.50 it/sec, obj=170]
    INFO - 09:02:38: ...  75%|███████▌  | 150/200 [00:15<00:05,  9.50 it/sec, obj=170]
    INFO - 09:02:38: ...  76%|███████▌  | 151/200 [00:15<00:05,  9.50 it/sec, obj=170]
    INFO - 09:02:38: ...  76%|███████▌  | 152/200 [00:15<00:05,  9.50 it/sec, obj=170]
    INFO - 09:02:38: ...  76%|███████▋  | 153/200 [00:16<00:04,  9.50 it/sec, obj=170]
    INFO - 09:02:38: ...  77%|███████▋  | 154/200 [00:16<00:04,  9.50 it/sec, obj=170]
    INFO - 09:02:38: ...  78%|███████▊  | 155/200 [00:16<00:04,  9.50 it/sec, obj=170]
    INFO - 09:02:38: ...  78%|███████▊  | 156/200 [00:16<00:04,  9.51 it/sec, obj=170]
    INFO - 09:02:38: ...  78%|███████▊  | 157/200 [00:16<00:04,  9.50 it/sec, obj=170]
    INFO - 09:02:38: ...  79%|███████▉  | 158/200 [00:16<00:04,  9.51 it/sec, obj=170]
    INFO - 09:02:38: ...  80%|███████▉  | 159/200 [00:16<00:04,  9.51 it/sec, obj=170]
    INFO - 09:02:39: ...  80%|████████  | 160/200 [00:16<00:04,  9.51 it/sec, obj=170]
    INFO - 09:02:39: ...  80%|████████  | 161/200 [00:16<00:04,  9.51 it/sec, obj=170]
    INFO - 09:02:39: ...  81%|████████  | 162/200 [00:17<00:03,  9.52 it/sec, obj=170]
    INFO - 09:02:39: ...  82%|████████▏ | 163/200 [00:17<00:03,  9.51 it/sec, obj=170]
    INFO - 09:02:39: ...  82%|████████▏ | 164/200 [00:17<00:03,  9.52 it/sec, obj=170]
    INFO - 09:02:39: ...  82%|████████▎ | 165/200 [00:17<00:03,  9.57 it/sec, obj=Not evaluated]
    INFO - 09:02:39: Optimization result:
    INFO - 09:02:39:    Optimizer info:
    INFO - 09:02:39:       Status: None
    INFO - 09:02:39:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 09:02:39:       Number of calls to the objective function by the optimizer: 165
    INFO - 09:02:39:    Solution:
    INFO - 09:02:39:       The solution is feasible.
    INFO - 09:02:39:       Objective: 169.90513692849225
    INFO - 09:02:39:       Standardized constraints:
    INFO - 09:02:39:          volume fraction - 0.3 = 2.1040097875069108e-07
    INFO - 09:02:39: *** End MDOScenario execution (time: 0:00:17.256317) ***

{'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 0x7fd3a0a3ae20>
../../_images/MBB_history.png

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")
topology optimization MBB../../_images/MBB_solution.png

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

Gallery generated by Sphinx-Gallery