Problem Definition

The three-dimensional free-form steel truss structure shown below is composed of 336 members and 98 nodes (including 10 supported nodes). Sizing optimization of this truss is considered. The topology of the truss (i.e., the way that the nodes are connected to each other) is assumed to be fixed and unchangeable. The structure is designed under three independent load cases, where the loads are applied at all unsupported nodes of the truss in the following cases: (i) horizontal loads of 10 kN applied in the positive x-direction, (ii) horizontal loads of 10 kN applied in the positive y-direction, (iii) vertical loads of 12 kN applied in the negative z-direction. The displacements of all nodes in x, y, and z directions are limited to a maximum value of ±5 mm. The material density, elastic modulus, and yield stress of the truss material are 7.85 ton/m3, 200 GPa and 248.2 MPa, respectively. The structure is designed in accordance with the regulations of AISC-LRFD 1994. To this end, each member is checked considering the limit states of tensile yielding and compressive buckling. A simple MATLAB function for the structural analysis and design of this particular truss is provided below.

3D view of the 336-member free-form truss structure

Top view of the 336-member free-form truss structure

This problem includes 336 sizing variables which represent the cross-sections of the truss members. The following should be satisfied:

  • Find the sizing variables (S1 to S336) which minimize the weight of the structure according to the given constraints. However, the maximum number of objective function evaluations that you are allowed to perform, using the given MATLAB function, is 200,000 times. In other words, you are only allowed to call the given MATLAB function 200,000 times (maximum) during your optimization process. Note that, structural analysis and design shall be performed using the given MATLAB function only.
  • You can use any optimization technique. Further, you may propose a new optimization algorithm or a hybrid form of previously proposed algorithms. However, using commercial optimization software is not allowed and the participants must prepare their own original codes.
  • The optimization process shall always start from a random point in the design space. In other words, the initial 336 design variables of your optimization procedure must be selected randomly.
  • The sizing variables (S1 to S336) can only take integer values ranging from 1 through 37 (i.e. 1 ≤ Si ≤ 37). Each sizing variable represents a section ID  from the following database of 37 pipe sections.

  • The final optimum design shall be feasible (i.e. no constraint violation is allowed). The amount of constraint violation associated with your proposed design is also reported by the structural analysis and design MATLAB function, given below.
  • Grouping of the design variables is not allowed neither at the beginning of the optimization process nor in the course of optimization.
  • For the sake of conformity, please solve the problem in the given units.
  • Submit your code, the final optimum design with all the 336 design variables, and a brief description of your optimization approach in a single PDF through the submission system before the deadline.

Structural Analysis and Design Function

A simple MATLAB function is provided for the structural analysis and design of the given truss system. The file can be downloaded from here. Please extract the zip file to get the ISCSO_2022.p  MATLAB function. You can readily use this function anywhere in your optimization code using the following command:

[Weight,  Const_Vio_Stress,  Const_Vio_Disp] = ISCSO_2022(Sections,  Flag)

The terms inside the parentheses on the right-hand side of the function represent the input variables which you should provide to the function:

  • “Sections” is a row vector (size 1×336) which contains the sizing variables S1 to S336.
  • “Flag” is either 0 or 1. The value of zero indicates that no graphical output is requested from the function. On the other hand, if Flag is set to 1, the function will plot the undeformed geometry of the proposed truss structure. In addition, the nodes that violate the displacement constraints and the members that violate the stress constraints are colored in red. This is further discussed below.

The terms inside the brackets on the left-hand side of the function represent the output variables which are calculated by the function and reported to your MATLAB Workspace:

  • “Weight” is the net weight of the proposed structure.
  • “Const_Vio_Stress” is the relative amount of constraint violation based on the stress constraints. If a value of zero is reported by the function it means that all of the truss members have satisfied the stress requirements. Any value larger than zero indicates that one or more truss members have not satisfied the design regulations of AISC-LRFD 1994.
  • “Const_Vio_Disp” is the relative amount of constraint violation based on the displacement constraints. If a value of zero is reported by the function it means that the displacement of all nodes is in the allowable range of ±5 mm. Any value larger than zero indicates that the displacement of one or more nodes has violated this limit.

The utilization of the given MATLAB function is further discussed through an example. Assume that the section ID for all the members of a proposed truss structure is equal to 8. To evaluate this structure, a row vector is first defined:

Sections = [8, 8, 8,…, 8] 1×336

Afterwards, the ISCSO_2022  function should be executed. Here, the value of Flag is set equal to 1, assuming that the graphical output is requested by the user. If the graphical output is not required, the Flag (last term inside the parentheses) should be set equal to 0 in the following command:

[Weight,  Const_Vio_Stress,  Const_Vio_Disp] = ISCSO_2022(Sections,  1)

By executing the above command, three output variables (“Weight”, “Const_Vio_Stress”, and “Const_Vio_Disp”) will appear in your MATLAB Workspace and the following figure will be plotted on your screen which can be moved and resized if needed:

The nodes and members that are colored in red represent the nodes and members which violate the displacement and stress constraints, respectively. At the top of the figure, the weight of the proposed structure, as well as the total constraint violation (i.e. the sum of “Const_Vio_Stress” and “Const_Vio_Disp” values) are displayed.

 

Winner of ISCSO 2022

The winner of ISCSO 2022 is Team Pantheon from METU, Turkey and University of Rochester, USA. You may find further information about the winner and the reported optimum design here.