Problem Definition

The three-dimensional steel truss structure shown below is composed of 198 members and 52 nodes. Sizing and shape 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 10 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 ± 100 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.

This problem includes 198 sizing variables (which represent the cross-sections of the truss members) as well as 13 shape variables (which are the z-coordinates of the top blue nodes as well as the x-coordinates of the side orange nodes of the structure) resulting in a total of 211 design variables. It should be emphasized that each pair of blue nodes with the same x-coordinate will have the same height.  Similarly, each pair of orange nodes with the same height will have the same x-coordinate. The following should be satisfied:

  • Find the sizing variables (S1 to S198) as well as shape variables (z1, z2, z3, z4, z5, z6, x1, x2, x3, x4, x5, x6, x7) 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 150,000 times. In other words, you are only allowed to call the given MATLAB function 150,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 211 design variables of your optimization procedure must be selected randomly.
  • The sizing variables (S1 to S198) 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.
  • For the shape variables (z1, z2, z3, z4, z5, z6, x1, x2, x3, x4, x5, x6, x7) use integer values only. The lower and upper bounds on the shape variables are +25000 ≤ zi ≤ +35000 and -12000 ≤ xi ≤ +3000. Thus, for zi you can select the shape variables as integer values ranging from 25000 to 35000 mm whereas for xi you need to select the shape variables as integer values ranging from -12000 to 3000 mm.
  • The final optimum design must 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 211 design variables, and a brief description of your optimization approach in a single PDF 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_2017.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_2017(Sections,  Coordinates,  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×198) which contains the sizing variables S1 to S198.
  • “Coordinates” is a row vector (size 1×13) containing the shape variables (z1 to z6 and x1 to x7).
  • “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 ± 100 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 members of a proposed truss structure is equal to 25, the z-coordinate of all nodes of the upper chord is equal to 30000 mm, and the x-coordinate of all side nodes of the truss is 500 mm. To evaluate this structure, two row vectors are first defined:

Sections = [25, 25, …, 25] 1×198

Coordinates = [30000, 30000, 30000, 30000, 30000, 30000, 500, 500, 500, 500, 500, 500, 500] 1×13

Afterwards, the ISCSO_2017  function should be called. 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_2017(Sections,  Coordinates,  1)

By executing the above command 3 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:

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

Good Luck!

 

Winner of ISCSO 2017

The winner of ISCSO 2017 is Team COIN from Michigan State University, United States. You may find further information about the winner and the reported optimum design here.