Thermoelastic3D#

../../_images/thermoelastic3d.png

Truss 3D integer optimization problem.

This is 3D topology optimization problem for minimizing weakly coupled thermo-elastic compliance subject to boundary conditions and a volume fraction constraint.

Version

0

Design space

Box(0.0, 1.0, (16, 16, 16), float32)

Objectives

structural_compliance: ↓

thermal_compliance: ↓

volume_fraction: ↓

Conditions

  • fixed_elements: Binary NxNxN array of the structurally fixed elements in the domain

  • force_elements_x: Binary NxNxN array specifying elements that have a structural load in the x-direction

  • force_elements_y: Binary NxNxN array specifying elements that have a structural load in the y-direction

  • force_elements_z: Binary NxNxN array specifying elements that have a structural load in the z-direction

  • heatsink_elements: Binary NxNxN array specifying elements that have a heat sink

  • volfrac: Target volume fraction for the volume fraction constraint

  • rmin: Filter size used in the optimization routine

  • penal

  • weight: Control which objective is optimized for. 1.0 is pure structural optimization, while 0.0 is pure thermal optimization

Dataset

IDEALLab/thermoelastic_3d_v0

Import

from engibench.problems.thermoelastic3d.v0 import ThermoElastic3D

Lead

Gabriel Apaza @gapaza

Motivation#

As articulated in their respective sections, both the Beams2D and HeatConduction2D problems found in the EngiBench library are fundamental engineering design problems that have historically served as benchmarks for the development and testing of optimization methods. While their relevance is supported by needs in real engineering design scenarios (aerospace, automotive, consumer electronics, etc…), their mono-domain nature ignores the reality that coupling between domains exists, and should be accounted for in scenarios where performance in one domain significantly impacts performance in another. To address this distinction, a multi-physics topology optimization problem is developed that captures the coupling between structural and thermal domains in three dimensions.

Design space#

This multi-physics topology optimization problem is governed by linear elasticity and steady-state heat conduction with a one-way coupling from the thermal domain to the elastic domain. The problem is defined over a cube 3D domain, where load elements and support elements are placed along the boundary to define a unique elastic condition. Similarly, heatsink elements are placed along the boundary to define a unique thermal condition. The design space is then defined by a 3D array representing density values (parameterized by DesignSpace = [0,1]^{nelx x nely x nelz}, where nelx, nely, and nelz denote the x, y, and z dimensions respectively).

Objectives#

The objective of this problem is to minimize total compliance C under a volume fraction constraint V by placing a thermally conductive material. Total compliance is defined as the sum of thermal compliance and structural compliance.

Conditions#

  • fixed_elements: Binary NxNxN array of the structurally fixed elements in the domain

  • force_elements_x: Binary NxNxN array specifying elements that have a structural load in the x-direction

  • force_elements_y: Binary NxNxN array specifying elements that have a structural load in the y-direction

  • force_elements_z: Binary NxNxN array specifying elements that have a structural load in the z-direction

  • heatsink_elements: Binary NxNxN array specifying elements that have a heat sink

  • volfrac: Target volume fraction for the volume fraction constraint

  • rmin: Filter size used in the optimization routine

  • penal

  • weight: Control which objective is optimized for. 1.0 is pure structural optimization, while 0.0 is pure thermal optimization

Simulator#

The simulation code is based on a Python adaptation of the popular 88-line topology optimization code, modified to handle the thermal domain in addition to thermal-elastic coupling. Optimization is conducted by reformulating the integer optimization problem as a continuous one (leveraging a SIMP approach), where a density filtering approach is used to prevent checkerboard-like artifacts. The optimization process itself operates by calculating the sensitivities of the design variables with respect to total compliance (done efficiently using the Adjoint method), calculating the sensitivities of the design variables with respect to the constraint value, and then updating the design variables by solving a convex-linear subproblem and taking a small step (using the method of moving asymptotes). The optimization loop terminates when either an upper bound of the number of iterations has been reached or if the magnitude of the gradient update is below some threshold.

Dataset#

The dataset linked to this problem is on huggingface Hugging Face Datasets Hub. This dataset contains a set of 100 optimized thermoelastic designs in a 16x16x16 domain, where each design is optimized for a unique set of conditions. Each datapoint’s conditions are randomly generated by arbitrarily placing: a single loaded element along the bottom boundary, two fixed elements (fixed in the x, y, and z direction) along the left and top boundary, and heatsink elements along the right boundary. Furthermore, values for the volume fraction constraint are randomly selected in the range \([0.2, 0.5]\).

Relevant datapoint fields include:

  • optimal_design: An optimized design for the set of boundary conditions

  • fixed_elements: Encodes a binary NxNxN matrix of the structurally fixed elements in the domain.

  • force_elements_x: Encodes a binary NxNxN matrix specifying elements that have a structural load in the x-direction.

  • force_elements_y: Encodes a binary NxNxN matrix specifying elements that have a structural load in the y-direction.

  • force_elements_z: Encodes a binary NxNxN matrix specifying elements that have a structural load in the z-direction.

  • heatsink_elements: Encodes a binary NxNxN matrix specifying elements that have a heat sink.

  • volume_fraction: The volume fraction value of the optimized design

  • structural_compliance: The structural compliance of the optimized design

  • thermal_compliance: The thermal compliance of the optimized design

  • nelx: The number of elements in the x-direction

  • nely: The number of elements in the y-direction

  • nelz: The number of elements in the z-direction

  • volfrac: The volume fraction target of the optimized design

  • rmin: The filter size used in the optimization routine

  • weight: The domain weighting used in the optimization routine