Problem Definition

The steel cantilever truss shown below is composed of 117 members and 30 nodes. Sizing and shape optimization of this three-dimensional truss structure is considered. The topology (i.e. the way that the nodes are connected to each other) for the truss is assumed to be fixed. 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 15 kN applied in positive x-direction, (ii) horizontal loads of 15 kN applied in positive y-direction, (iii) vertical loads of 15 kN applied in negative z-direction. The displacements of all nodes in x, y, and z directions are limited to a maximum value of ± 4.0 cm. The material density, elastic modulus, and yield stress 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.

iscso2016_truss

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

  • Find the sizing variables (S1 to S117) as well as shape variables (z1, z2, z3, z4, z5, z6, z7) 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 20000 times. In other words, you are only allowed to call the given MATLAB function 20000 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 124 design variables of your optimization procedure must be selected randomly.
  • The sizing variables (S1 to S117) can only take integer values ranging from 1 through 37 (including both 1 and 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, z7), use discrete integer values only. The lower and upper bounds on the shape variables are 1000 and 3500 mm, respectively. Thus, you can select the shape variables as integer values ranging from 1000 to 3500 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 124 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_2016.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_2016(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×117) which contains the sizing variables S1 to S117.
  • “Coordinates” is a row vector (size 1×7) containing the shape variables (z1, z2, z3, z4, z5, z6, z7).
  • “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 satisfy the stress requirements. Any value larger than zero indicates that one or more truss members has 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 ± 4.0 cm. 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 structure is equal to 20 and that the z-coordinate of all nodes of the upper chord of the truss is equal to 3000 mm. To evaluate this structure, two row vectors are first defined:

Sections = [20, 20, …, 20] 1×117

Coordinates = [3000, 3000, …, 3000] 1×7

Then, the ISCSO_2016  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 this statement:

[Weight,  Const_Vio_Stress,  Const_Vio_Disp] = ISCSO_2016(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:

example_truss2016 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 2016

The winner of ISCSO 2016 is Muhammad Firmansyah Kasim from the University of Oxford, United Kingdom. You may find further information about the winner and the reported optimum design here.