Solve a 2D L-shape 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 fractio:

volume_fraction = 0.3

Define the problem type:

problem_name = "L-Shape"

Define the number of elements in the x- and y- directions:

n_x = 25
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_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 - 17:19:35: Generating HTML XDSM file in : xdsm.html

Execute the scenario

scenario.execute({"max_iter": 200, "algo": "NLOPT_MMA"})
    INFO - 17:19:35:
    INFO - 17:19:35: *** Start MDOScenario execution ***
    INFO - 17:19:35: MDOScenario
    INFO - 17:19:35:    Disciplines: DensityFilter FininiteElementAnalysis MaterialModelInterpolation VolumeFraction
    INFO - 17:19:35:    MDO formulation: DisciplinaryOpt
    INFO - 17:19:35: Optimization problem:
    INFO - 17:19:35:    minimize compliance(x)
    INFO - 17:19:35:    with respect to x
    INFO - 17:19:35:    subject to constraints:
    INFO - 17:19:35:       volume fraction(x) <= 0.3
    INFO - 17:19:35: Solving optimization problem with algorithm NLOPT_MMA:
    INFO - 17:19:35: ...   0%|          | 0/200 [00:00<?, ?it]
    INFO - 17:19:35: ...   0%|          | 1/200 [00:00<00:08, 22.23 it/sec, obj=2.59e+3]
    INFO - 17:19:35: ...   1%|          | 2/200 [00:00<00:17, 11.16 it/sec, obj=2.23e+3]
    INFO - 17:19:35: ...   2%|▏         | 3/200 [00:00<00:16, 11.78 it/sec, obj=1.96e+3]
    INFO - 17:19:35: ...   2%|▏         | 4/200 [00:00<00:16, 12.16 it/sec, obj=1.75e+3]
    INFO - 17:19:35: ...   2%|▎         | 5/200 [00:00<00:15, 12.33 it/sec, obj=1.57e+3]
    INFO - 17:19:35: ...   3%|▎         | 6/200 [00:00<00:15, 12.44 it/sec, obj=1.2e+3]
    INFO - 17:19:35: ...   4%|▎         | 7/200 [00:00<00:15, 12.48 it/sec, obj=963]
    INFO - 17:19:35: ...   4%|▍         | 8/200 [00:00<00:15, 12.53 it/sec, obj=624]
    INFO - 17:19:35: ...   4%|▍         | 9/200 [00:00<00:15, 12.58 it/sec, obj=497]
    INFO - 17:19:35: ...   5%|▌         | 10/200 [00:00<00:15, 12.65 it/sec, obj=395]
    INFO - 17:19:36: ...   6%|▌         | 11/200 [00:00<00:14, 12.69 it/sec, obj=306]
    INFO - 17:19:36: ...   6%|▌         | 12/200 [00:00<00:14, 12.75 it/sec, obj=251]
    INFO - 17:19:36: ...   6%|▋         | 13/200 [00:01<00:14, 12.78 it/sec, obj=225]
    INFO - 17:19:36: ...   7%|▋         | 14/200 [00:01<00:14, 12.83 it/sec, obj=209]
    INFO - 17:19:36: ...   8%|▊         | 15/200 [00:01<00:14, 13.07 it/sec, obj=201]
    INFO - 17:19:36: ...   8%|▊         | 16/200 [00:01<00:14, 13.09 it/sec, obj=195]
    INFO - 17:19:36: ...   8%|▊         | 17/200 [00:01<00:13, 13.11 it/sec, obj=190]
    INFO - 17:19:36: ...   9%|▉         | 18/200 [00:01<00:13, 13.13 it/sec, obj=186]
    INFO - 17:19:36: ...  10%|▉         | 19/200 [00:01<00:13, 13.15 it/sec, obj=182]
    INFO - 17:19:36: ...  10%|█         | 20/200 [00:01<00:13, 13.18 it/sec, obj=178]
    INFO - 17:19:36: ...  10%|█         | 21/200 [00:01<00:13, 13.19 it/sec, obj=174]
    INFO - 17:19:36: ...  11%|█         | 22/200 [00:01<00:13, 13.21 it/sec, obj=169]
    INFO - 17:19:36: ...  12%|█▏        | 23/200 [00:01<00:13, 13.23 it/sec, obj=164]
    INFO - 17:19:36: ...  12%|█▏        | 24/200 [00:01<00:13, 13.25 it/sec, obj=161]
    INFO - 17:19:37: ...  12%|█▎        | 25/200 [00:01<00:13, 13.26 it/sec, obj=159]
    INFO - 17:19:37: ...  13%|█▎        | 26/200 [00:01<00:13, 13.28 it/sec, obj=157]
    INFO - 17:19:37: ...  14%|█▎        | 27/200 [00:02<00:13, 13.30 it/sec, obj=156]
    INFO - 17:19:37: ...  14%|█▍        | 28/200 [00:02<00:12, 13.32 it/sec, obj=155]
    INFO - 17:19:37: ...  14%|█▍        | 29/200 [00:02<00:12, 13.34 it/sec, obj=154]
    INFO - 17:19:37: ...  15%|█▌        | 30/200 [00:02<00:12, 13.35 it/sec, obj=154]
    INFO - 17:19:37: ...  16%|█▌        | 31/200 [00:02<00:12, 13.37 it/sec, obj=153]
    INFO - 17:19:37: ...  16%|█▌        | 32/200 [00:02<00:12, 13.38 it/sec, obj=153]
    INFO - 17:19:37: ...  16%|█▋        | 33/200 [00:02<00:12, 13.40 it/sec, obj=152]
    INFO - 17:19:37: ...  17%|█▋        | 34/200 [00:02<00:12, 13.42 it/sec, obj=152]
    INFO - 17:19:37: ...  18%|█▊        | 35/200 [00:02<00:12, 13.43 it/sec, obj=152]
    INFO - 17:19:37: ...  18%|█▊        | 36/200 [00:02<00:12, 13.45 it/sec, obj=152]
    INFO - 17:19:37: ...  18%|█▊        | 37/200 [00:02<00:12, 13.46 it/sec, obj=152]
    INFO - 17:19:37: ...  19%|█▉        | 38/200 [00:02<00:12, 13.48 it/sec, obj=152]
    INFO - 17:19:38: ...  20%|█▉        | 39/200 [00:02<00:11, 13.49 it/sec, obj=152]
    INFO - 17:19:38: ...  20%|██        | 40/200 [00:02<00:11, 13.50 it/sec, obj=152]
    INFO - 17:19:38: ...  20%|██        | 41/200 [00:03<00:11, 13.52 it/sec, obj=152]
    INFO - 17:19:38: ...  21%|██        | 42/200 [00:03<00:11, 13.53 it/sec, obj=152]
    INFO - 17:19:38: ...  22%|██▏       | 43/200 [00:03<00:11, 13.35 it/sec, obj=152]
    INFO - 17:19:38: ...  22%|██▏       | 44/200 [00:03<00:11, 13.24 it/sec, obj=152]
    INFO - 17:19:38: ...  22%|██▎       | 45/200 [00:03<00:11, 13.26 it/sec, obj=152]
    INFO - 17:19:38: ...  23%|██▎       | 46/200 [00:03<00:11, 13.27 it/sec, obj=152]
    INFO - 17:19:38: ...  24%|██▎       | 47/200 [00:03<00:11, 13.29 it/sec, obj=152]
    INFO - 17:19:38: ...  24%|██▍       | 48/200 [00:03<00:11, 13.40 it/sec, obj=152]
    INFO - 17:19:38: ...  24%|██▍       | 49/200 [00:03<00:11, 13.42 it/sec, obj=152]
    INFO - 17:19:38: ...  25%|██▌       | 50/200 [00:03<00:11, 13.43 it/sec, obj=152]
    INFO - 17:19:38: ...  26%|██▌       | 51/200 [00:03<00:11, 13.44 it/sec, obj=152]
    INFO - 17:19:39: ...  26%|██▌       | 52/200 [00:03<00:11, 13.45 it/sec, obj=152]
    INFO - 17:19:39: ...  26%|██▋       | 53/200 [00:03<00:10, 13.46 it/sec, obj=152]
    INFO - 17:19:39: ...  27%|██▋       | 54/200 [00:04<00:10, 13.47 it/sec, obj=152]
    INFO - 17:19:39: ...  28%|██▊       | 55/200 [00:04<00:10, 13.48 it/sec, obj=152]
    INFO - 17:19:39: ...  28%|██▊       | 56/200 [00:04<00:10, 13.49 it/sec, obj=152]
    INFO - 17:19:39: ...  28%|██▊       | 57/200 [00:04<00:10, 13.50 it/sec, obj=152]
    INFO - 17:19:39: ...  29%|██▉       | 58/200 [00:04<00:10, 13.51 it/sec, obj=152]
    INFO - 17:19:39: ...  30%|██▉       | 59/200 [00:04<00:10, 13.51 it/sec, obj=152]
    INFO - 17:19:39: ...  30%|███       | 60/200 [00:04<00:10, 13.52 it/sec, obj=152]
    INFO - 17:19:39: ...  30%|███       | 61/200 [00:04<00:10, 13.53 it/sec, obj=152]
    INFO - 17:19:39: ...  31%|███       | 62/200 [00:04<00:10, 13.53 it/sec, obj=152]
    INFO - 17:19:39: ...  32%|███▏      | 63/200 [00:04<00:10, 13.54 it/sec, obj=152]
    INFO - 17:19:39: ...  32%|███▏      | 64/200 [00:04<00:10, 13.55 it/sec, obj=152]
    INFO - 17:19:39: ...  32%|███▎      | 65/200 [00:04<00:09, 13.56 it/sec, obj=152]
    INFO - 17:19:40: ...  33%|███▎      | 66/200 [00:04<00:09, 13.56 it/sec, obj=152]
    INFO - 17:19:40: ...  34%|███▎      | 67/200 [00:04<00:09, 13.57 it/sec, obj=152]
    INFO - 17:19:40: ...  34%|███▍      | 68/200 [00:05<00:09, 13.57 it/sec, obj=152]
    INFO - 17:19:40: ...  34%|███▍      | 69/200 [00:05<00:09, 13.58 it/sec, obj=152]
    INFO - 17:19:40: ...  35%|███▌      | 70/200 [00:05<00:09, 13.60 it/sec, obj=152]
    INFO - 17:19:40: ...  36%|███▌      | 71/200 [00:05<00:09, 13.63 it/sec, obj=152]
    INFO - 17:19:40: ...  36%|███▌      | 72/200 [00:05<00:09, 13.63 it/sec, obj=152]
    INFO - 17:19:40: ...  36%|███▋      | 73/200 [00:05<00:09, 13.64 it/sec, obj=152]
    INFO - 17:19:40: ...  37%|███▋      | 74/200 [00:05<00:09, 13.64 it/sec, obj=152]
    INFO - 17:19:40: ...  38%|███▊      | 75/200 [00:05<00:09, 13.65 it/sec, obj=152]
    INFO - 17:19:40: ...  38%|███▊      | 76/200 [00:05<00:09, 13.66 it/sec, obj=152]
    INFO - 17:19:40: ...  38%|███▊      | 77/200 [00:05<00:09, 13.67 it/sec, obj=152]
    INFO - 17:19:40: ...  39%|███▉      | 78/200 [00:05<00:08, 13.67 it/sec, obj=152]
    INFO - 17:19:40: ...  40%|███▉      | 79/200 [00:05<00:08, 13.66 it/sec, obj=152]
    INFO - 17:19:41: ...  40%|████      | 80/200 [00:05<00:08, 13.66 it/sec, obj=152]
    INFO - 17:19:41: ...  40%|████      | 81/200 [00:05<00:08, 13.67 it/sec, obj=152]
    INFO - 17:19:41: ...  41%|████      | 82/200 [00:05<00:08, 13.68 it/sec, obj=152]
    INFO - 17:19:41: ...  42%|████▏     | 83/200 [00:06<00:08, 13.63 it/sec, obj=152]
    INFO - 17:19:41: ...  42%|████▏     | 84/200 [00:06<00:08, 13.61 it/sec, obj=152]
    INFO - 17:19:41: ...  42%|████▎     | 85/200 [00:06<00:08, 13.62 it/sec, obj=152]
    INFO - 17:19:41: ...  43%|████▎     | 86/200 [00:06<00:08, 13.62 it/sec, obj=152]
    INFO - 17:19:41: ...  44%|████▎     | 87/200 [00:06<00:08, 13.63 it/sec, obj=152]
    INFO - 17:19:41: ...  44%|████▍     | 88/200 [00:06<00:08, 13.63 it/sec, obj=152]
    INFO - 17:19:41: ...  44%|████▍     | 89/200 [00:06<00:08, 13.64 it/sec, obj=152]
    INFO - 17:19:41: ...  45%|████▌     | 90/200 [00:06<00:08, 13.65 it/sec, obj=152]
    INFO - 17:19:41: ...  46%|████▌     | 91/200 [00:06<00:07, 13.66 it/sec, obj=152]
    INFO - 17:19:41: ...  46%|████▌     | 92/200 [00:06<00:07, 13.66 it/sec, obj=152]
    INFO - 17:19:41: ...  46%|████▋     | 93/200 [00:06<00:07, 13.67 it/sec, obj=152]
    INFO - 17:19:42: ...  47%|████▋     | 94/200 [00:06<00:07, 13.68 it/sec, obj=152]
    INFO - 17:19:42: ...  48%|████▊     | 95/200 [00:06<00:07, 13.68 it/sec, obj=152]
    INFO - 17:19:42: ...  48%|████▊     | 96/200 [00:07<00:07, 13.68 it/sec, obj=152]
    INFO - 17:19:42: ...  48%|████▊     | 97/200 [00:07<00:07, 13.69 it/sec, obj=152]
    INFO - 17:19:42: ...  49%|████▉     | 98/200 [00:07<00:07, 13.72 it/sec, obj=152]
    INFO - 17:19:42: ...  50%|████▉     | 99/200 [00:07<00:07, 13.79 it/sec, obj=152]
    INFO - 17:19:42: ...  50%|█████     | 100/200 [00:07<00:07, 13.80 it/sec, obj=152]
    INFO - 17:19:42: ...  50%|█████     | 101/200 [00:07<00:07, 13.80 it/sec, obj=152]
    INFO - 17:19:42: ...  51%|█████     | 102/200 [00:07<00:07, 13.81 it/sec, obj=152]
    INFO - 17:19:42: ...  52%|█████▏    | 103/200 [00:07<00:07, 13.81 it/sec, obj=152]
    INFO - 17:19:42: ...  52%|█████▏    | 104/200 [00:07<00:06, 13.82 it/sec, obj=152]
    INFO - 17:19:42: ...  52%|█████▎    | 105/200 [00:07<00:06, 13.82 it/sec, obj=152]
    INFO - 17:19:42: ...  53%|█████▎    | 106/200 [00:07<00:06, 13.82 it/sec, obj=152]
    INFO - 17:19:42: ...  54%|█████▎    | 107/200 [00:07<00:06, 13.83 it/sec, obj=152]
    INFO - 17:19:42: ...  54%|█████▍    | 108/200 [00:07<00:06, 13.83 it/sec, obj=152]
    INFO - 17:19:43: ...  55%|█████▍    | 109/200 [00:07<00:06, 13.83 it/sec, obj=152]
    INFO - 17:19:43: ...  55%|█████▌    | 110/200 [00:07<00:06, 13.84 it/sec, obj=152]
    INFO - 17:19:43: ...  56%|█████▌    | 111/200 [00:08<00:06, 13.84 it/sec, obj=152]
    INFO - 17:19:43: ...  56%|█████▌    | 112/200 [00:08<00:06, 13.85 it/sec, obj=152]
    INFO - 17:19:43: ...  56%|█████▋    | 113/200 [00:08<00:06, 13.85 it/sec, obj=152]
    INFO - 17:19:43: ...  57%|█████▋    | 114/200 [00:08<00:06, 13.86 it/sec, obj=152]
    INFO - 17:19:43: ...  57%|█████▊    | 115/200 [00:08<00:06, 13.86 it/sec, obj=152]
    INFO - 17:19:43: ...  58%|█████▊    | 116/200 [00:08<00:06, 13.86 it/sec, obj=152]
    INFO - 17:19:43: ...  58%|█████▊    | 117/200 [00:08<00:05, 13.87 it/sec, obj=152]
    INFO - 17:19:43: ...  59%|█████▉    | 118/200 [00:08<00:05, 13.87 it/sec, obj=152]
    INFO - 17:19:43: ...  60%|█████▉    | 119/200 [00:08<00:05, 13.88 it/sec, obj=152]
    INFO - 17:19:43: ...  60%|██████    | 120/200 [00:08<00:05, 13.88 it/sec, obj=152]
    INFO - 17:19:43: ...  60%|██████    | 121/200 [00:08<00:05, 13.89 it/sec, obj=152]
    INFO - 17:19:43: ...  61%|██████    | 122/200 [00:08<00:05, 13.89 it/sec, obj=152]
    INFO - 17:19:44: ...  62%|██████▏   | 123/200 [00:08<00:05, 13.89 it/sec, obj=152]
    INFO - 17:19:44: ...  62%|██████▏   | 124/200 [00:08<00:05, 13.90 it/sec, obj=152]
    INFO - 17:19:44: ...  62%|██████▎   | 125/200 [00:08<00:05, 13.90 it/sec, obj=152]
    INFO - 17:19:44: ...  63%|██████▎   | 126/200 [00:09<00:05, 13.90 it/sec, obj=152]
    INFO - 17:19:44: ...  64%|██████▎   | 127/200 [00:09<00:05, 13.91 it/sec, obj=152]
    INFO - 17:19:44: ...  64%|██████▍   | 128/200 [00:09<00:05, 13.95 it/sec, obj=152]
    INFO - 17:19:44: ...  64%|██████▍   | 129/200 [00:09<00:05, 14.05 it/sec, obj=Not evaluated]
    INFO - 17:19:44: Optimization result:
    INFO - 17:19:44:    Optimizer info:
    INFO - 17:19:44:       Status: None
    INFO - 17:19:44:       Message: Successive iterates of the objective function are closer than ftol_rel or ftol_abs. GEMSEO Stopped the driver
    INFO - 17:19:44:       Number of calls to the objective function by the optimizer: 129
    INFO - 17:19:44:    Solution:
    INFO - 17:19:44:       The solution is feasible.
    INFO - 17:19:44:       Objective: 151.62873248988768
    INFO - 17:19:44:       Standardized constraints:
    INFO - 17:19:44:          volume fraction - 0.3 = 1.0969287427831098e-06
    INFO - 17:19:44: *** End MDOScenario execution (time: 0:00:09.206733) ***

{'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 0x7fcd1b5949d0>
../../_images/L-Shape_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 L shape../../_images/L-Shape_solution.png

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

Gallery generated by Sphinx-Gallery