Next Article in Journal
Application of an Image Tracking Algorithm in Fire Ant Motion Experiment
Next Article in Special Issue
Probabilistic Upscaling of Material Failure Using Random Field Models – A Preliminary Investigation
Previous Article in Journal
Fast Structural Alignment of Biomolecules Using a Hash Table, N-Grams and String Descriptors
Previous Article in Special Issue
Mixed Variational Formulations for Micro-cracked Continua in the Multifield Framework
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

ALE-PSO: An Adaptive Swarm Algorithm to Solve Design Problems of Laminates

Institut Jean Le Rond d'Alembert – UMR CNRS 7190, Tour 55-65, Case 161 – 4, Place Jussieu, 75252 Paris Cedex 05, France
Algorithms 2009, 2(2), 710-734; https://doi.org/10.3390/a2020710
Submission received: 23 March 2009 / Revised: 13 April 2009 / Accepted: 16 April 2009 / Published: 21 April 2009
(This article belongs to the Special Issue Numerical Simulation of Discontinuities in Mechanics)

Abstract

:
This paper presents an adaptive PSO algorithm whose numerical parameters can be updated following a scheduled protocol respecting some known criteria of convergence in order to enhance the chances to reach the global optimum of a hard combinatorial optimization problem, such those encountered in global optimization problems of composite laminates. Some examples concerning hard design problems are provided, showing the effectiveness of the approach.

1. Introduction

The Particle Swarm Optimization method (PSO) is a metaheuristic introduced by Eberhart and Kennedy [1] to solve complex optimization problems. It inspired by and it mimics in an algebraic way the social behaviour and dynamics of groups of individuals (particles), such as the flocks of birds, whose groups displacements are not imposed by a leader: the same overall behaviour of the flock guides itself. Working on a population of individuals (the swarm) rather than on a single particle (each one representing in a real world problem a vector of numbers in Rn who is a candidate to the solution of a given minimization problem), the PSO paradigm is in principle well suited to solve hard non-linear non-convex optimization problems. Its main advantage is its true simplicity: a PSO is a zero-th order algorithm, i.e. it is based upon the only knowledge of the objective function: no calculation of derivatives is needed, so that it is able to tackle problems ruled by discrete variables too. In addition, the standard algorithm is very simple and short, so that calculations are usually very quick with respect to other metaheuristics, like for instance genetic algorithms, for the same objective.
Nevertheless, as the most part of numerical optimization algorithms, it depends upon a certain number of parameters, proper to the algorithm itself, which must be chosen to guarantee the convergence, rapidity and robustness of the algorithm itself: this is the so-called problem of PSO parameters tuning. Unfortunately, tuning parameters depends mostly upon the objective function; so, a set of well suited parameters for a given problem can be a bad choice in another case. Tuning of parameters is mostly based upon experience, and in some cases several tests can be necessary to find a good tuning. For this reason, some attempts has been made to establish, on one side, the dynamics of the swarm, though often on very simplified models, to obtain some conditions for the convergence of the swarm towards a final point of the design space (but, a priori, there is no guarantee that this final point will be a global, or even, in some cases, a local minimum), see for instance the works of Shi and Eberhart [2], Oczan and Mohan [3], Clerc and Kennedy [4], Trelea [5], Liu et al [6], Jiang et al [7], and on the other side to propose adaptive PSO algorithms, i.e. algorithms which tune the parameters during the calculation, see for instance the papers of Hu and Eberhart [8], Yasuda et al [9,10], Yamaguchi et al [11], DeBao and ChunXia [12].
This paper proposes a new PSO algorithm, called ALE-PSO (Adaptive Local Evolution –PSO) which has the possibility to tune all the parameters of a standard PSO algorithm and to let evolve the main numerical coefficients along the computation steps through a power law specified by the user. Each coefficient can be updated independently by the others, so as to optimize the trade-off between the exploration and exploitation capabilities of the numerical procedure with respect to a given objective function. The algorithm can also handle constrained problems, by a technique which is essentially a barrier method.
The code ALE-PSO has been conceived mainly for dealing with some hard problems concerning the optimal design of laminates made by composite materials. In this field, the basic problem of the designer is to dispose of a numerical tool able to handle effectively the problems caused by the discontinuities and anisotropy of the laminates. The most part of design problems of laminates can be reduced to a general one: find an equivalent homogenised plate responding to some optimal criteria and having some specified necessary elastic symmetries (normally, orthotropy, at least for the membrane behaviour, and uncoupling between bending and extension). Roughly speaking, the discontinuities at the interfaces of the layers are forgotten in a homogenised model of the laminate; nevertheless, the changes of mechanical behaviour from one layer to another result in a final objective function which is, usually, highly non-linear and non-convex. In such cases, a suitable numerical algorithm, able to handle hard combinatorial problems, is needed. The author and co-workers proposed in the past a general way to formulate the design problems of laminates with respect to their elastic symmetries, [13], based upon the polar method for the representation of anisotropic tensors, Verchery [14], and an enhanced genetic algorithm to handle this kind of problems [15]. The purpose of this paper is to show that PSO algorithms can be effectively used for this kind of problems, but that, for the hardest of them, an adaptive strategy of parameters tuning must be adopted in order to find good values of the solutions.
The paper is composed as follows: a general recall of a PSO standard algorithm is given in section 2, while section 3 exposes the characteristics of ALE-PSO. The concept of trajectory of the numerical parameters is introduced in section 4, and possible choices of the trajectories are proposed according to conditions for the convergence published in the literature. In section 5 the general way to formalise an optimization problem for a laminate by the polar method is briefly recalled and section 6 contains numerical tests of ALE-PSO on some laminate design problems. Final remarks and conclusions are contained in section 7.

2. Standard PSO algorithm

The standard PSO algorithm can be condensed in the following updating rule:
u t + 1 k = r 0 c 0 u t k + r 1 c 1 ( p t k x t k ) + r 2 c 2 ( p t g x t k ) , x t + 1 k = x t k + u t + 1 k , for    k = 1 , , m , t = 1 , , s .
where:
  • x t + 1 k : vector representing the position, in the n-dimensional problem space, of the k-th particle in a swarm of m particles, at the time-step t+1 of s total steps;
  • u t + 1 k : displacement (often called velocity) of the particle x k from its position x t k at the time step t to its updated position x t + 1 k at the time-step t+1;
  • p t k : vector recording the best position occupied so far by the k-th particle (personal best position); in a minimization problem for the objective function f(x), p t k is updated as follows:
    p t + 1 k = { p t k , if f ( x t + 1 k ) f ( p t k ) , x t + 1 k , if f ( x t + 1 k ) < f ( p t k ) ;
  • p t g : vector recording the best position occupied so far by any particle in the swarm (global best position); in a minimization problem for the objective function f(x), p t g is updated as follows:
    p t + 1 g { p t + 1 k , k = 1 , , m }     such that f ( p t + 1 g ) = min k = 1 , , m f ( p t + 1 k ) ;
  • r0, r1, r2: independent random coefficients, uniformly distributed in the range [0,1];
  • c0, c1, c2: real coefficients called respectively inertial, cognition and social parameter.
Normally, the computation is stopped once t=s and the solution is the best individual found so far, i.e. p s g , while the minimum so obtained is f ( p s g ) .
Basically, the PSO standard algorithm updates the position of each particle using a linear combination of the previous velocity, the distance of the particle from its historical best position and its distance from the global best position found so far. The use of the random coefficients r0, r1, r2, together with the fact that usually the original swarm is randomly generated, gives a stochastic nature to the algorithm. Anyway, this stochastic nature is weighted, in some way, by the presence of the coefficients c0, c1, c2: their value has a paramount importance in the convergence, stability and search domain exploration of the algorithm. It has been proved in several cases that for hard minimization problems only a good choice of these parameters can determine the success of the algorithm, so their choice is of the greatest importance. Unfortunately, the best choice of these parameters is function-dependent, and sometimes it is difficult to found a suitable set of parameters. For this reason, one can think to update also the coefficients c0, c1 and c2, so as to improve the convergence of the algorithm towards a global minimum by a variable compromise between the exploration and exploitation of the search space: in a first stage, exploration can be preferred, in order to improve the probability of exploring interesting parts of the search space, while in a later stage, a better exploitation of the results found so far can improve the rapidity and stability of the convergence towards good points. Generally speaking, high values of the coefficients c0 and c1 improve exploration capability, while increasing values of c2 improves stability and rapidity of convergence. So, the basic idea is the following one: in the first steps of the computation, a wide exploration of the search domain is recommended, in order to find interesting regions (i.e. regions where f takes low values); at a later moment, when the search domain has been well explored, it is worth to concentrate the research in the interesting regions found so far, and for this purpose the exploration capability must diminish while the exploitation force must be augmented. Finally, a good strategy can be the following one: to begin the computation with high values of c0 and c1 and a low value of c2; then, along iterations, to decrease the values of c0 and c1 and to increase the value of c2. Nevertheless, some relations among these parameters must be respected in order to ensure stability and convergence; in the next sections, the way ALE-PSO updates these coefficients and how their variation can be controlled are presented.

3. Characteristics of the code ALE-PSO

ALE-PSO is a standard PSO algorithm, having in addition the possibility of specifying a variation law for each one of the coefficients c0, c1 and c2 with the iterations. Some other "switches" can be activated, changing actually the response of the algorithm to a given problem. All these points are briefly described below.

3.1 Updating rule for the coefficients c0, c1 and c2

Coefficients cj, j=0, 1, 2 are updated according to a power law ruled by three parameters, cj,0, cj,s and ej:
c j , t = c j , s + ( c j , 0 c j , s ) ( s t s 1 ) e j , j { 0 ,   1 ,   2 } ,
where cj,t is the value of the coefficient cj at iteration t, cj,s at the end of the iterations (t =s) and cj,0 at the beginning (t=0). The coefficients cj,0 and cj,s must be chosen by the user, as well as the power ej. This last number modulates the variation of the coefficient cj along the iterations, giving the possibility to the user to increase the rapidity of the variation at the beginning or at the end of the iterations. Some basic examples are shown in Fig. 1: cj,t increases or decreases quickly at the beginning of the iterations whenever ej>1, at the end if ej<1, while the rate of change is constant during iterations if ej=1.
Figure 1. Types of changes of coefficients cj according to the value of ej.
Figure 1. Types of changes of coefficients cj according to the value of ej.
Algorithms 02 00710 g001
It is important to notice that the numbers cj,0, cj,s and ej can be chosen independently for j= 0, 1 and 2, letting in this way the user the possibility to increase or decrease, and in different ways, each coefficient cj independently from the others during iterations. In addition, no restriction are given a priori to the choice of cj,0 and cj,s, and they can be negative too.

3.2 Updating the random coefficients r0, r1 and r2

The frequency of updating the random coefficients r0, r1 and r2 can be chosen by the user; in particular, there are three options:
  • opt1: r0, r1 and r2 are updated at each iteration (all the particles receive the same value of r0, r1 and r2);
  • opt2: r0, r1 and r2 are updated at each particle (all the components of u t + 1 k receive the same value of r0, r1 and r2);
  • opt3: r0, r1 and r2 are updated at each component of each particle (no repeated values, in principle).
Normally, the third option guarantees a better exploration of the search space, but it is more computing consuming; option 1 is quickest but recommended only for simple problems, as it lowers too much the search capacity of the algorithm, while option 2 is a good compromise for the most part of times.

3.3 Fixing the random coefficient r0

The random coefficient r0 can be set equal to 1 for all the iterations; this gives a constant influence of the inertial parameter c0 for an iteration (and for all the computation if c0,0=c0,s). The importance of the inertial parameter has been widely discussed in the literature, see for instance Shi and Eberhart [2]. In the tests performed with ALE-PSO on problems concerning laminates, this choice is not recommended, as it normally diminishes the exploration capability of the algorithm.

3.4 Conservation of the position

Whenever the updated position of a particle gives a higher value of the cost function compared to that of the previous position, ALE-PSO can refuse to update the position, according to a general choice of the user. Actually, this option allows the user to focus the search only on good points and numerical tests revealed that in this way the diagram of convergence of the best individual of each iteration, and mostly that of the population in the average, is regularized and the convergence accelerated. Nevertheless, this option should be activated only for simple problems, as the numerical tests revealed also that this choice increases the probability of convergence towards non global minima.

3.5 Inequality constraints

ALE-PSO can deal also with constrained problems. The strategy for constraint handling in ALE-PSO is essentially a barrier method: the swarm must be feasible at each iteration, i.e. it must be composed by particles respecting all the constraints imposed to the computation. For this reason, the initial swarm is composed by feasible particles and then its updates are guaranteed to be feasible by the following procedure (without lack of generality, we consider here constraints of the form g(xk)<0):
x t + 1 k = x t k + u t + 1 k 2 α , α = 0 , 1 , 2 , ..... stop when   g ( x t + 1 k ) < 0.
As x t k is feasible, this bisection method ensures that, for a sufficiently large α, x t + 1 k will be feasible; this procedure is simple, robust and numerical tests have shown that also minima on the boundary of the feasible domain can be reached; it is used also for the control of box constraints. It must be said that ALE-PSO works on a n-dimensional box where all the particles are located at the beginning:
a x 0 k b ,
Inequalities (6) being intended to act on each component of the particle xk. The vectors a and b represent the lower and upper bounds of the particles position in the n-dimensional search space. The above strategy allows respecting conditions (6) at each iteration.
The use of a barrier method is rather important for a PSO, because the evolution of the swarm depends upon two points, pk and pg, which must be feasible, but also for the analysis of the convergence of the swarm. In fact, an index of the effectiveness of the algorithm is the control of the average of the objective function over the whole swarm, at each iteration: a good PSO makes all the swarm, and not only the best particle, evolve towards a feasible good point. If the swarm is composed also by unfeasible particles, these can alter significantly the average of the objective, in one sense (decrease) or in the other (increase), which renders difficult to judge about the effectiveness of the algorithm.

3.6 Limitation of the maximum velocity

A classical method to control the stability of the algorithm is the limitation of the maximum velocity to a given value. This is possible also in ALE-PSO; the user defines the maximum allowed velocity component umax as
u m a x = ν min i = 1 , , n ( b i a i ) ,
where ν [ 0 , 1 ] is a reduction coefficient chosen by the user. Nevertheless, this option has proven to be not important in the treatment of laminate design problems with ALE-PSO, because the strategy of control of the box constraints already controls the swarm and at the same time for such problems it is important, at least in the first stage of the calculation, to let the swarm explore as freely as possible the search domain; as limiting the speed contributes to slightly diminish the exploration capability, this option is not recommended for laminates design problems, as it results also in several numerical tests.

4. Trajectory of the numerical parameters

The main problem in the use of a PSO is the tuning of the parameters c0, c1, c2. The stability and convergence of a PSO depends strongly on the choice of these parameters, along with the algorithm's trade off between exploration and exploitation.
As said above, ALE-PSO allows a dynamic tuning of these parameters, i.e. they can vary, according to a power law imposed by the user. So, now the question is: how to establish suitable power laws for the coefficients above? As said in section 2, at the beginning of iterations, c0 and c1 should have large values and decrease with iterations, the contrary for c2. Nevertheless, at each iteration they all should respect some conditions of convergence. Two different set of conditions established by previous researches for the convergence of a standard PSO are considered in this paper, those given by Trelea [5] and those given by Jiang et al [7].

4.1 Trajectory of the parameters in the Trelea's convergence domain

Trelea has considered a simplified case: a deterministic system (i.e. with r0=1, r1= r2=1/2) composed by a single particle. In such a case, he used the theory of dynamical systems to analyse the conditions of convergence of a particle towards an equilibrium point. He has found the following convergence necessary and sufficient conditions:
a < 1 , b > 0 , 2 a b + 2 > 0 ,
where
a = c 0 , b = c 1 + c 2 2 .
These conditions, that determine a triangular domain in the plane (a, b), ensure that the magnitude of the roots of the characteristic equation
λ 2 ( a b + 1 ) λ + a = 0
of the single particle dynamical system is less than one, which is the necessary and sufficient condition for being the equilibrium point an attractor. In addition, the study of the roots of eqn. (10) gives also the quality of the convergence:
  • harmonic oscillations around the equilibrium point happen if the roots λ1 and λ2 are complex; this happens whenever
    a 2 + b 2 2 a b 2 a 2 b + 1 < 0 ;
  • zigzagging around the equilibrium point happens if at least one of the roots (real or complex) has negative real part; this happens whenever
    a < 0 or a b + 1 < 0.
More precisely, we can subdivide the above mentioned triangular domain into five regions (see Fig. 2):
  • R1: region where only condition (11) is satisfied (complex roots with positive real parts): oscillatory convergence, with a decay which depends upon the point (a, b);
  • R2: region where conditions (11) and (12) are satisfied (complex roots with negative real parts): zigzag superposed to an oscillatory convergence;
  • R3: region where only conditions (12) are satisfied and the real roots are both negative: symmetric zigzagging convergence;
  • R4: region where only conditions (12) are satisfied and the two real roots have opposite signs: asymmetric zigzagging convergence;
  • R5: region where conditions (11) and (12) are not satisfied (two real positive roots): non-oscillatory convergence.
Oscillations and/or zigzagging allows the particle well explore the domain around its equilibrium point, so a choice of the parameters determining a point (a, b) that allows this kind of dynamical behaviour (regions R2 and R3) are well suited for an early stage of the computation; at a final stage, it is better to tend towards conditions allowing quick convergence (i.e., to tend towards regions R4 or R5). So, the update of the parameters should be determined in such a way that their evolution along iterations satisfies this criterion.
Figure 2. Trelea's deterministic convergence domain.
Figure 2. Trelea's deterministic convergence domain.
Algorithms 02 00710 g002
Actually, each choice of the coefficients c0, c1 and c2 determines a point (a, b) in the convergence region above (or outside it); if the values of c0, c1 and c2 change during iterations, the position of the point (a, b) changes too, describing, with iterations, a trajectory in the plane (a, b). The basic idea is to change the coefficients in order to respect a criterion like the one suggested above (start from region R2 or R3 and evolve towards region R4 or R5) and following a trajectory that belongs to the convergence domain. In this way, convergence conditions are respected at each iteration but the changes of the parameters carries the computation from an initial phase when exploration is preferred to a final phase when exploitation, and the rapidity of the convergence, is preferred. This constitutes a criterion for determining the power laws defining the parameters c0, c1 and c2 update in ALE-PSO.
The analysis of Trelea is simplified and it is based upon a deterministic model; the introduction of the random coefficients r0, r1 and r2 alters the results, and it is questionable if the results found for the deterministic case are still valid. Nevertheless, one could expect that qualitatively things do not change so much, as the same Trelea affirms. The main effect of randomness introduced by coefficients r0, r1 and r2 is an increase of the zigzagging tendency, and hence of exploration, but globally the criterion proposed with the deterministic model can still be considered, if not as a necessary and sufficient condition of convergence, at least as guidelines for the choice of the numerical parameters.

4.2 Trajectory of the parameters in the time domain

Each iteration can be considered as a time step, i.e. t can be identified with time (for this reason vector u is called velocity in the language of PSO's researchers). So, one can consider the changes of the parameters c0, c1 and c2 when they are updated during iterations t; briefly their evolution in the time domain, in the sense specified above, can be considered.
Jiang et al, [7], proposed a different convergence analysis of a PSO standard algorithm: they introduced a stochastic definition of the convergence of the algorithm, in order to take into account the randomness introduced by coefficients r0, r1 and r2. They found the following conditions that can guide the choice of the parameters:
0 a < 1 , 2 b > 0 , 0 < φ < φ 1 ,
where
φ = ( c 1 + c 2 ) ( 1 c 0 2 ) + 1 6 ( c 1 2 + c 2 2 + c 1 c 2 ) c 0 2 1 6 ( 2 c 1 2 + 2 c 2 2 + 3 c 1 c 2 ) , φ 1 = 1 6 ( 1 + c 0 ) c 2 2 .
Conditions (13) should be respected at each iteration, so they constitute a constraint to the trajectory of the numerical parameters in the time domain. Hence they are conditions that should guide the choice of the power laws determining the update of the numerical parameters in ALE-PSO.
It must be noticed that conditions (13) do not necessarily agree with the Trelea's conditions, as actually they are derived in a different way. For instance, in the Trelea's convergence domain, a negative value of c0 (=a) is allowed, while it is not admitted by conditions (13). In addition, as the same authors say, conditions (13) are rather difficult to be respected, i.e. they give a small admissible domain for parameters c0, c1 and c2. Nevertheless, conditions (13) constitute some interesting guidelines for the updating of the parameters, and they will be considered in the following.

5. Formulation of optimal design problems for laminates

As said in section 1, the design of laminates must take into account, besides the objective itself (for instance, a sufficient stiffness in one or more directions), also the general elastic properties of the final laminate. The general constitutive law of an elastic laminate is
{ N M } = [ A B B D ] { ε o χ } ,
where N and M are the tensors of in-plane tractions and of bending moments, ε0 is the tensor of in-plane strains for the middle plane, χ is the tensor of curvatures. The fourth order tensors A and D describe respectively the in- and out of-plane behaviour of the plate, while B take into account coupling between them. Usually, designers look for laminates having an orthotropic behaviour, at least in extension, and uncoupled, i.e. B=O, but other elastic properties can also be of interest. All these properties can be taken into account by the following minimization procedure, [13]: consider the quadratic form I(P) of the symmetric matrix H, defined on the 18-dimensional space of the variables Pi:
I ( P ) = P H P = H i j P i P j , i , j = 1 , , 18
with the components of vector P given by
P 1 = T ¯ 0 h M , P 2 = T ¯ 1 h M , P 3 = R ¯ 0 h M , P 4 = R ¯ 1 h M , P 5 = Φ ¯ 0 , P 6 = Φ ¯ 1 , P 7 = 2 T ^ 0 h 2 M , P 8 = 2 T ^ 1 h 2 M , P 9 = 2 R ^ 0 h 2 M , P 10 = 2 R ^ 1 h 2 M , P 11 = Φ ^ 0 , P 12 = Φ ^ 1 , P 13 = 12 T ˜ 0 h 3 M , P 14 = 12 T ˜ 1 h 3 M , P 15 = 12 R ˜ 0 h 3 M , P 16 = 12 R ˜ 1 h 3 M , P 17 = Φ ˜ 0 , P 18 = Φ ˜ 1 .
Here, h is the total laminate thickness while M is a factor, whose dimensions are those of an elastic modulus, used to obtain non-dimensional variables, that can be chosen in various ways. In addition,
T ¯ 0 ,   T ^ 0 ,   T ˜ 0 = 1 μ   k = 1 n p T 0 k ( z k μ z k 1 μ )  , T ¯ 1 ,   T ^ 1 ,   T ˜ 1 = 1 μ   k = 1 n p T 1 k ( z k μ z k 1 μ )   , R ¯ 0 e 4 i Φ ¯ 0 , R ^ 0 e 4 i Φ ^ 0 , R ˜ 0 e 4 i Φ ˜ 0 = 1 μ   k = 1 n p R 0 k e 4 i ( Φ 0 k + δ k ) ( z k μ z k 1 μ )   , R ¯ 1 e 4 i Φ ¯ 1 , R ^ 1 e 4 i Φ ^ 1 , R ˜ 1 e 4 i Φ ˜ 1 = 1 μ   k = 1 n p R 1 k e 4 i ( Φ 1 k + δ k ) ( z k μ z k 1 μ )   ,
are, in complex form, the 18 polar components of, respectively, tensor A, B and D, with μ=1 for A, μ=2 for B and μ=3 for D; np is the number of plies in the stack and δk is the orientation angle of the k-th ply; T0k, T1k, R0k, R1k, Φ0k and Φ1k are the polar parameters of the k-th layer. The polar parameters of an elastic plane tensor L are given, in complex form, by the following functions of the Cartesian components of L:
8 T 0             = L 1111 2 L 1122 + 4 L 1212 + L 2222 , 8 T 1                 = L 1111 + 2 L 1122 + L 2222 , 8 R 0  e 4 i Φ 0 = L 1111 2 L 1122 4 L 1212 + L 2222   + 4 i ( L 1112 L 2212 ) , 8 R 1  e 2 i Φ 1   = L 1111 L 2222   + 2 i ( L 1112 + L 2212 ) .
The advantage of using polar parameters is their capability to express as simply as possible the symmetries of the elastic behaviour; actually,
  • L is orthotropic if and only if
    Φ 0 Φ 1 = K π 4 , K = 0 , 1 ;
  • L is R0-orthotropic, (Vannucci, [16]), if and only if
    R 0 = 0 .
  • L is square-symmetric (that is, its components are invariant under rotations of π/4) if and only if
    R 1 = 0 ;
  • L is isotropic if and only if
    R 0 = R 1 = 0 .
For more details on the results of the polar method, the reader is addressed to the original paper of Verchery, [14], or to [17].
H is a symmetric matrix of real coefficients: the choice of its components Hij determines the kind of problem to be treated. Several choices are possible, so several different problems can be stated in the same way, simply changing the Hij. H is positive semi-definite and each problem of determining a laminate having some specified general elastic properties can be stated as follows: find an absolute minimum of (16) for a given H. As H is positive semi-definite, these minimums are zero-valued (except in the case of k=1 orthotropy). Clearly, to solve such a problem means to find a vector P satisfying the above statement. As P=P(δk), cfr. eqns. (17) and (18), the true design variables of the problem are the orientations δk. Eqns. (18) are highly non-linear and non convex with respect to the δk, so also function (16) is non-linear and non-convex.
Finally, a unique mathematical form has been given to several different problems of laminate design: the search for the minimum of a positive semi-definite form, which is a classical problem of structural non-convex optimisation. It is worth noting that parameters Pi generalise the concept of lamination parameters introduced by Miki, [18,19], and successively widely used by several authors, but unlike these they have some advantages: they are based upon tensor invariants linked to elastic symmetries, so their use allows a very simple statement of problems concerning these symmetries and in addition they make directly appear the orientation of the reference or material frame.
Of course, the optimal design of laminates cannot be reduced to the unique design of elastic properties; normally, designers want to minimize or maximize a given quantity (volume, stiffness etc.) or to obtain minimum requirements. For the sake of shortness, we consider in the following only this last kind of problems, which can be formalised, in a general way, as:
min δ k , k = 1 , , n p I [ P ( δ k ) ] , with g j [ P ( δ k ) ] 0 , j = 1 , .. , n c ,
with g j [ P ( δ k ) ] a generic constraint imposed to the problem and nc the total number of constraints. In the next section, some numerical examples of this type solved with ALE-PSO are presented.

6. Numerical examples

Several examples concerning different problems of laminates design have been treated with ALE-PSO, the results concerning some of them are presented below. The objective of this paper is the adaptive tuning of numerical parameters, so some characteristics of the computations have been conserved through all the runs of the code, in order to assess the importance of adaptive tuning only. In particular:
  • the population size is constant, m=100;
  • the number of generations has been fixed to s=300;
  • the original population has been sorted randomly once and for all for all the tests, i.e. the tests have been performed on the same starting population for all the cases;
  • the option opt3 has been chosen for the updating of the random coefficients, cfr. § 3.2, also for r0 (it is not fixed to 1);
  • there is no limit on the highest velocity, but the position of a particle is controlled to remain in the domain [−90°, 90°]n (the design variables are the orientation angles of the layers).
Five different types of calculations have been made, the first two with constant parameters c0, c1, c2, whose values have been suggested by Clerc and Kennedy [4], test T1, and by Trelea [5], test T2. The three others tests have been done with a trajectory of adaptive parameters; the data for the parameters are summarized in Tab. 1. In addition, the variations and trajectories of the tests T3, T4 and T5 are presented in Fig. 3 and Fig. 4. Tests T1 and T2 reduces to points in the Trelea's domain, and in horizontal lines (not traced in Fig. 3) in the time domain. It can be noticed that only the test T5 respects both the conditions by Trelea and by Jiang et al. (for test T1, φ = −0.384, while for test T2 φ = −0.328). Actually, it is very difficult to respect all the conditions proposed by Jiang et al, especially the condition φ>0; in fact, to respect this condition it is important to use low values for c0, but this limits, especially in the first part of the calculation, the exploration of the domain, as it results from a long series of numerical tests.
Figure 3. Time-domain trajectories of parameters c0(=a), c1, c2, b, φ and φ1 for the tests T3, T4 and T5.
Figure 3. Time-domain trajectories of parameters c0(=a), c1, c2, b, φ and φ1 for the tests T3, T4 and T5.
Algorithms 02 00710 g003
Figure 4. Trajectories in the Trelea's convergence domain of tests T1 to T5.
Figure 4. Trajectories in the Trelea's convergence domain of tests T1 to T5.
Algorithms 02 00710 g004
Table 1. Numerical data for the tuning of parameters c0, c1, c2 in the tests.
Table 1. Numerical data for the tuning of parameters c0, c1, c2 in the tests.
Testc0,0c0,se0c1,0c1,se1c2,0c2,se2
T10.7290.72901.4901.49001.4901.4900
T20.6000.60001.7001.70001.7001.7000
T31.0000.5000.55.0001.5000.51.0001.8002
T40.8000.0000.52.0001.4000.21.4002.0000.2
T50.4000.0000.52.0001.4000.21.4002.0000.2
In addition, all the examples refer to laminates composed by identical T300-5208 carbon-epoxy plies, with a thickness of 0.125 mm and whose characteristics are given in Tab. 2, [20]. In the following, the numerical results of three examples are shown; each test has been run 100 times, and the statistics of the runs are given (mean and standard deviation). In Appendix, the results obtained with the above trajectories of the parameters and concerning a well known benchmark are also shown.
Table 2. Technical, Cartesian and polar constants of carbon-epoxy T300-5208 plies (GPa).
Table 2. Technical, Cartesian and polar constants of carbon-epoxy T300-5208 plies (GPa).
E1E2G12ν12Q11Q22Q66Q12T0T1R0R1Φ0Φ1
181.0010.307.170.2818 1.8110.357.172.8926.8824.7419.7121.43

6.1 Example 1

This is the case of the search of fully isotropic laminates with twelve plies. It is a very difficult problem in laminate designs, already treated in the past by the author and co-workers, [21], and by other researchers, [22]; actually, it seems, up to now, that it is impossible to obtain a fully isotropic laminate composed by less than 12 identical plies; this example is a sort of benchmark in the laminates design field.
The case of fully isotropy, that comprehends also bending-extension uncoupling, is determined by the choice H i i = 1 , i = 3 , 4 , 9 , 10 , 15 , 16 , the other components being null, so that function I(P) reduces to
I ( P ) = P 3 2 + P 4 2 + P 9 2 + P 10 2 + P 15 2 + P 16 2 = 0.
Quantities Pi must be computed through eq. (18), the problem is hence strongly non-convex, the design variables being the angles δk.
The results of the numerical tests are summarised in Tab. 3. For each tests, composed, as already said, by 100 runs of ALE-PSO with the same initial swarm, two quantities, obtained in a run for the objective function, are considered: the best value of the average on the swarm and the value of the best particle in the swarm (i.e. the particle having the lowest value of the objective function). For both these quantities, the statistics data relative to all the 100 runs, are: the mean value, the standard deviation, the best value, the worst value and the number of evaluations neval of the objective function to obtain the quantity's mean value.
Of course, the exact solution being valued 0, the data reported in columns 3, 5 and 6 of Tab. 3 are to be considered as numerical residual of the computation. Under a mechanical point of view, a residual of the magnitude 10−2 for this problem can be considered as technically acceptable, i.e. the final laminate with a value of I(P)~10−2 can be considered very close to be fully isotropic, under a practical point of view. In Fig. 5, for instance, the case of a laminate with I(P)= 0.023 is shown; it corresponds to the best particle in test T3, whose stacking sequence is [−16.43°, −70.38°, 66.70°, 31.97°, 31.76°, −59.02°, 78.65°, −12.13°, −12.34°, −47.06°, −90.00°, 36.06°]. The directional diagrams of the normalised Cartesian components Axx*= Axx/h, Bxx*=2 Bxx/h2 and Dxx*=12 Dxx/h3 are shown; actually, Bxx*~0 (almost a dot in the centre of the plot), which confirms that the laminate is uncoupled, while Axx*~Dxx* and they describe a curve very close to a circle of radius T0+2T1=76.36 GPa, as it must be for isotropy.
Table 3. Results of the tests T1 to T5 for example 1.
Table 3. Results of the tests T1 to T5 for example 1.
TestRun’s bestMean valueStandard deviationBest valueWorst valueneval
T1average0.2030.1940.0910.68623830
particle0.1040.0770.0230.31029860
T2average0.2090.1850.0240.56927110
particle0.1140.0810.0230.31029980
T3average0.2110.0280.0230.86027030
particle0.0610.0220.0230.09030000
T4average0.1020.0720.0340.24329900
particle0.0750.0230.0340.09729940
T5average0.1860.2250.0240.80029140
particle0.1260.0970.0240.38329980
Figure 5. Directional diagrams of Axx*, Dxx*, almost superposed, and Bxx*, reduced to a dot in the centre (GPa).
Figure 5. Directional diagrams of Axx*, Dxx*, almost superposed, and Bxx*, reduced to a dot in the centre (GPa).
Algorithms 02 00710 g005

6.2 Example 2

This is the case of a rectangular laminated plate with 12 plies, designed to be uncoupled and orthotropic in bending, with axes of orthotropy at 0° and 90°; the plate is simply supported, with side lengths along the axes x and y respectively equal to a and b. The additional requirement is that the frequency of the first mode of the bending vibrations must be greater than a minimum specified value ω0. So, the objective function is still I(P), but now H i i = 1 , i = 9 , 10 , 17 , 18 , so that
I ( P ) = P 9 2 + P 10 2 + P 17 2 + P 18 2 = 0 ,
and the problem is constrained by the condition
g ( P ) = ω 0 ω p q ( P ) 0
where the frequency ωpq(P) of the mode having p and q half waves respectively along x and y, is given by, see [23],
ω p q 2 = π 4 p 4 h 3 12 σ a 4 R 0 2 + R 1 2 ( 1 + χ 2 ) 2 φ ( ξ 0 , ξ 1 ) ,
with
φ ( ξ 0 , ξ 1 ) = τ + 1 1 + ρ 2 [ ( 1 ) K ρ ξ 0 χ 4 6 χ 2 + 1 ( 1 + χ 2 ) 2 + 4 ξ 1 1 χ 2 1 + χ 2 ] .
h is the total thickness of the plate, σ its mass per unit area and the three dimensionless quantities χ, ρ and τ, represent respectively the geometric/modal, anisotropic and isotropic parts of the problem:
χ = q a p b , ρ = R 0 R 1 , τ = T 0 + 2 T 1 R 0 2 + R 1 2 .
Moreover,
ξ 0 = 1 n p 3 j = 1 n p d j cos 4 δ j , ξ 1 = 1 n p 3 j = 1 n p d j cos 2 δ j ,
are the classical bending lamination parameters, the coefficients dj being
d j = 12 j ( j n p 1 ) + 4 + 3 n p ( n p + 2 ) .
The results of the numerical tests for this example are shown in Table 4; they refer to the case of a plate with sides a=1 m, b=0.5 m, designed to have ω11ω0= 150 s−1; the mass of the plate per unit of area is σ =2.4 kg/m2 (12 plies of carbon-epoxy T300-5208). The best result is obtained with the trajectory T3: [−66.15°, 66.53°, 44.83°, −36.44°, 48.52°, −5.68°, 77.57°, −89.94°, −84.48°, 38.45°, 57.48°, −46.03°]. For this sequence, the objective function is very close to zero (7.20×10−35) and the frequency ω11=162.72 s−1. The elastic properties of this laminate are shown in Table 5 and in Fig. 6; they show that the laminate is really uncoupled (all the polar components of B are practically null) and K=1 orthotropic in bending, with orthotropy axes at 0° and 90° (Φ0=45°, Φ1=90°); in addition, the extension behaviour is completely anisotropic, as a result of the fact that no requirement on A has been formulated.
It is worth to recall that bending orthotropy together with uncoupling is a hard requirement to be obtained, cfr. [24]; this example shows that ALE-PSO can easily find uncoupled laminates that are orthotropic in bending.
Table 4. Results of the tests T1 to T5 for example 2.
Table 4. Results of the tests T1 to T5 for example 2.
TestRun’s bestMean valueStandard deviationBest valueWorst valueneval
T1average9.78×10−34.69×10−34.50×10−31.80×10−225510
particle1.04×10−181.25×10−188.00×10−213.30×10−1829800
T2average1.37×10−28.14×10−34.50×10−33.20×10−226540
particle1.47×10−183.32×10−188.80×10−299.90×10−1829760
T3average1.14×10−24.58×10−24.50×10−22.10×10−226040
particle1.83×10−314.74×10−317.20×10−351.50×10−3029670
T4average1.18×10−25.24×10−36.60×10−32.20×10−225840
particle3.00×10−99.49×10−91.30×10−343.00×10−827800
T5average9.33×10−33.97×10−31.20×10−31.30×10−224640
particle2.24×10−186.60×10−185.70×10−342.10×10−1727990
Figure 6. Directional diagrams of Axx* and Dxx* (Bxx*~ 0) for example 2 (GPa).
Figure 6. Directional diagrams of Axx* and Dxx* (Bxx*~ 0) for example 2 (GPa).
Algorithms 02 00710 g006
Table 5. Example 2: technical, Cartesian and polar constants of the best solution laminate; Cij is a generic Cartesian component (GPa).
ExEyGxyνxyCxxCyyCssCxyCxsCys
A*42.3981.1529.110.2649.3896.7930.1725.893.949.91
B*----−7.3×10−4−8.5×10−44.6×10−34.6×10−33.8×10−3−1.2×10−2
D*27.3868.3836.420.3438.2195.4336.4332.1500
T0T1R0R1Φ0Φ1
A*26.8824.744.446.86−34.43°74.85°
B*009.3×10−62.3×10−6--
D*26.8824.749.557.1545°90°

6.3 Example 3

This is the case of a 8-ply laminate designed to be orthotropic in bending, uncoupled and with the Young’s modulus in the directions x and y constrained to satisfy respectively the conditions ExE1=90 GPa and EyE2=90 GPa. In addition, it is required that the orientation angles take values each 5°, i.e. 0°, 5°, 10° and so on. The objective function is the same of example 2, but now the constraints to be satisfied are, see [25],
E x = 8 [ T 0 T 1 + ( 1 ) K T 1 R 0 ξ 0 2 R 1 2 ξ 1 2 ] T 0 + 2 T 1 + ( 1 ) K R 0 ξ 0 4 R 1 ξ 1 E 1 , E y = 8 [ T 0 T 1 + ( 1 ) K T 1 R 0 ξ 0 2 R 1 2 ξ 1 2 ] T 0 + 2 T 1 + ( 1 ) K R 0 ξ 0 + 4 R 1 ξ 1 E 2 .
Table 6. Results of the tests T1 to T5 for example 3.
Table 6. Results of the tests T1 to T5 for example 3.
TestRun’s bestMean valueStandard deviationBest valueWorst valueneval
T1average8.30×10−32.38×10−34.80×10−31.30×10−225140
particle6.25×10−49.45×10−55.70×10−62.40×10−49510
T2average1.66×10−21.25×10−21.70×10−33.70×10−225010
particle8.91×10−41.35×10−32.20×10−63.70×10−33320
T3average8.88×10−33.63×10−34.30×10−31.50×10−225480
particle7.11×10−41.19×10−41.00×10−63.40×10−44910
T4average3.59×10−35.31×10−32.50×10−61.80×10−222150
particle8.32×10−48.34×10−42.50×10−62.50×10−35710
T5average1.23×10−31.88×10−31.10×10−46.40×10−321400
particle4.55×10−45.65×10−48.50×10−52.00×10−32980
The results of the tests made for this example are shown in Tab. 6. The best result is once again found by trajectory T3, to which corresponds the anti-symmetric sequence [−5°, −85°, 45°, −55°, 55°, −45°, 85°, 5°]; for this laminate, the value of the objective function is 10−6, Ex= 112.31 GPa and Ey=66.21 GPa. The elastic properties of this laminate are shown in Table 6 and in Fig. 7; the same remarks made on example 2 can be done again, but now the value of the components of B* are larger, as a consequence of the fact that orientations are not continuous variables and that the layers number is smaller. Nevertheless, when compared with the corresponding components of A* and D*, they are still negligible, i.e. the solution is technically acceptable. In addition, now A* and D* are both K=0 orthotropic, consequence of the anti-symmetry of the stack.
Figure 7. Directional diagrams of Axx* and Dxx* (Bxx*~ 0) for example 3 (GPa).
Figure 7. Directional diagrams of Axx* and Dxx* (Bxx*~ 0) for example 3 (GPa).
Algorithms 02 00710 g007
Table 6. Example 3: technical, Cartesian and polar constants of the best solution laminate; Cij is a generic Cartesian component (GPa).
ExEyGxyνxyCxxCyyCssCxyCxsCys
A*63.8277.2726.320.2669.6084.2626.3222.0500
B*----00000.0560.006
D*112.3166.2113.060.13113.4766.8913.068.7900
T0T1R0R1Φ0Φ1
A*26.8824.740.561.8390°
B*000.0250.01622.5°45°
D*26.8824.7413.815.82

7. Comments and conclusions

Some considerations can be done about the results shown above. First of all, they all are some rather exigent problems in laminate design, and ALE-PSO has been able to find numerical solutions that are very close to an exact one. A second remark concerns the difference in the order of magnitude of the residuals: it is very small in example 2, while it increases in example 3 and even more in example 1. This is intrinsic to the problem: whilst the case treated in example 2 uses continuous variables and has 12 plies, so that solutions with a residual extremely close to zero can be found, in example 3 there are discrete variables and only 8 layers. These two circumstances contribute to render much more intricate the problem; in fact, it is well known that the difficulty in satisfying the condition of B null increases when the number of plies decreases, and in addition the requirement that the plies can take only discrete values diminishes the number of solutions. For example 1, as already said, the objective is so difficult that it is taken as a sort of benchmark in problems of laminate design. Nevertheless, several solutions have been found, in a very short computing time: all the examples run for no more than 3.5 seconds on a common laptop (the author and co-workers had used in the past a genetic algorithm to treat analogous problems, and example 1 was solved using a population of 2000 individuals and 3000 iterations, for a time of about 30 minutes to be solved with the same order of magnitude of the residual; the best solution found by ALE-PSO has used a population of 100 particles and 300 iterations, i.e. 200 times less evaluations of the objective function; for more details on the use of genetic algorithms in the global design of laminates, see [15], [21].
More interesting is to compare the trajectories of the parameters to determine the most performing one. To this purpose it is worth to consider the cases of the expected and best value of the residual, for the swarm average and best particle; this is done in Tab. 7, where the trajectory giving the best result for each quantity is indicated, using the results of Tab. 3, Tab. 4 and Tab. 6.
Table 7. Summary of the best trajectories for each case.
Table 7. Summary of the best trajectories for each case.
ExampleExpected valueBest value
averageparticleaverageparticle
1T4T3T3T3
2T5T3T5T3
3T5T5T4T3
It can be remarked that T3 is the most suitable trajectory to find the best value of the solution, in all the cases. For the average of the best value, the three trajectories T3, T4 and T5 are equally performing. For the expected value, T5 seems to be the best choice. In any case, trajectories T3, T4 or T5 give better results than the cases of T1 and T2, i.e. when parameters are fixed. But, more important, is another fact: the parameters in T1 and T2 have been accurately chosen after a long series of numerical tests and, especially for the case of T1, the values of the parameters are so precise (0.729 for c0, 1.49 for c1 and c2) that it is doubtful their effectiveness for the whole objective functions.
Figure 8. Convergence diagrams of I(P) for the three examples (in small, the diagrams in log-scale).
Figure 8. Convergence diagrams of I(P) for the three examples (in small, the diagrams in log-scale).
Algorithms 02 00710 g008
In other words, if the value of the parameters must be determined to within a precision of the order 10−2÷10−3, it can be a problem to determine the best choice of the parameters for a given problem, or, which is the same, how much changes of these parameters condition the result? So, the choice to use evolving parameters can be a better strategy, as the fact that their value changes along the iterations do not force the user to a precise choice and ensures him to have a good compromise between exploration and exploitation.
A last consideration concerns the convergence of the computations; in Fig. 8 the diagrams of convergence of the swarm average and best particle are shown for the three examples above; the diagrams are those of the run containing the best solution found in each case.
In the case of example 2, the log-scale diagrams are almost linear, especially the diagram of the best particle; this is the case of the lowest value of the residual. A linear decrease in log-scale means that the order of magnitude of the residual is linearly decreased along iterations. This seems to be an optimal situation for computations, but unfortunately it is strongly problem-dependent, as diagrams of examples 1 and 3 show. Nevertheless, suitable trajectories of the parameters c0, c1 and c2 can be found for each problem to push the convergence log-diagrams towards linearity. This should be a guideline for users in the search of a good trajectory for a given problem.
The main advantage of the algorithm ALE-PSO remains the fact that the possibility to let evolve each parameter independently from the others give to the user a wide choice of possible trajectories that can be, with a few essays, tuned for the problem at hand, in such a way to find a good trade-off between exploration and exploitation, and this without the need to determine them with a high precision. In other words, the tricky problem of fine tuning the parameters for a given problem is bypassed by the choice, less difficult and needing less precision, of a suitable trajectory.

APPENDIX: NUMERICAL TESTS ON THE ROSENBROCK’S FUNCTION

To compare the effectiveness of trajectories T1 to T5, the well known Rosenbrock’s function has been tested:
f ( x ) = i = 1 n 1 [ 100 ( x i + 1 x i 2 ) 2 + ( x i 1 ) 2 ] ;
the minimum point is searched in the n-dimensional box domain [−2, 2]n, it is located at [1]n and its value is 0. In the tests performed, n=5 the size of the swarm is m=50 and the number of iterations is s=1000. The results of the numerical tests are shown in Tab. 8.
Table 8. Results of the numerical tests on the Rosenbrock’s function.
Table 8. Results of the numerical tests on the Rosenbrock’s function.
TestRun’s bestMean valueStandard deviationBest valueWorst valueneval
T1average8.0533.0774.68013.9397580
particle0.0090.0010.0070.01199950
T2average6.4472.9052.83512.3375990
particle0.0070.0030.0030.01399970
T3average1.6502.2680.0037.88734130
particle0.0020.0056×10−70.016100000
T4average2.2281.5050.0194.56641790
particle2.2281.5050.0194.56640110
T5average1.6121.1050.1843.93239020
particle1.6121.1050.1843.93237600
Trajectory T3 gives much better results than the other trajectories, especially for the best particle. It is interesting to remark the number neval of evaluations of the objective function for which the mean value of the best average or of the best particle is obtained. For trajectory T3, the mean for the best average is obtained for neval=34130 while for the best particle neval=100000, i.e., the algorithm still improves the best particle after 1000 iterations. Hence, for this trajectory the gap between neval of, respectively, the best particle and the best average is Δneval=65870: the trajectory allows for a wide exploration of the search domain, because the best average is obtained after a great number of iterations (341.3 in the mean), which allows to the algorithm a good selection of the swarm and this, in turn, allows for a good improvement of the best particle.
Trajectories T4 and T5 show a completely different situation: all the data for the swarm and the particle are identical: the swarm is completely conditioned by the best particle, which drives the convergence of the whole swarm towards its position. The swarm follows the best particle rather quickly, as the values of neval show: there is a close negative gap between the values of neval of the best particle and of the best average: Δneval=−1680 for trajectory T4 and Δneval=−1420 for trajectory T5. This means that, for these trajectories, the best particle is obtained always before the best average, and that it closely forces the dynamics of the whole swarm. In addition, neval in the two cases are not sufficiently large, which means that the algorithm stops too quickly to improve both the best particle and the swarm. The final result is that there is not a sufficient exploration of the search domain and the final values, especially of the best particle, are not as good as for trajectory T3.
Trajectories T1 and T2 show another different behaviour: in these cases, neval is low for the mean of the best average and high for that of the best particle, and Δneval is positive and takes large values, respectively Δneval=92370 and Δneval=93980. In practice, in these cases the best particle does not drive sufficiently the swarm, which in turn does not give to the best particle sufficient information to improve decisively its position, though the results for the best particle are better than for trajectories T4 and T5.
Finally, trajectory T3 seems to optimize the trade-off between exploration and exploitation of the data, allowing a good improvement of both the swarm on the average and of the best particle; in addition, it allows to continuously improve the value of the objective function, especially for the best particle. Nevertheless, this is true for the Rosenbrock’s function: the behaviour of the algorithm remains problem dependent, as the results for the three laminate problems treated in the paper show. In those cases, trajectories T4 and T5 give slightly better results than trajectories T1 and T2, contrarily to what happens for the Rosenbrock’s function, while trajectory T3 is still the best compromise.

References

  1. Eberhart, R. C.; Kennedy, J. Particles swarm optimization. In Proc. of IEEE International Conference on Neural Networks, Piscataway, NJ, 1995; pp. 1942–1948.
  2. Shi, Y.; Eberhart, R. C. Parameter selection in particle swarm optimization. In Proc. of 7th Annual conference on Evolution Computation, New York, NY, 1998; pp. 591–601.
  3. Ozcan, E.; Mohan, C. K. Particle swarm optimization: surfing the waves. In Proc. of IEEE Congress on Evolutionary Computation, Washington DC, 1999; pp. 1939–1944.
  4. Clerc, M.; Kennedy, J. The particle swarm: explosion, stability and convergence in a multi-dimensional complex space. IEEE Transactions on Evolutionary Computation 2002, 6, 58–73. [Google Scholar] [CrossRef]
  5. Trelea, I. C. The particle swarm optimization algorithm: convergence analysis and parameter selection. Inform Proc Lett. 2003, 85, 317–325. [Google Scholar] [CrossRef]
  6. Liu, H.; Abraham, A.; Clerc, M. Chaotic dynamic characteristics in swarm intelligence. Appl Soft Comp. 2007, 7, 1019–1026. [Google Scholar] [CrossRef]
  7. Jiang, M.; Luo, Y. P.; Yang, S. Y. Stochastic convergence analysis and parameter selection of the standard particle swarm optimization algorithm. Inform Proc Lett. 2007, 102, 8–16. [Google Scholar] [CrossRef]
  8. Hu, X.; Eberhart, R. C. Adaptive particle swarm optimization: detection and response to dynamic systems. In Proc. of IEEE Congress on Evolutionary Computation, Hawaii, 2002; pp. 1666–1670.
  9. Yasuda, K.; Ide, A.; Iwasaki, N. Adaptive particle swarm optimization using velocity information of swarm. In Proc. of IEEE International Conference on Systems, Man & Cybernetics, The Hague, Netherlands, 2004; pp. 3475–3481.
  10. Yamaguchi, T.; Iwasaki, N.; Yasuda, K. Adaptive particle swarm optimization using information about global best. Elect Engin in Japan 2007, 159, 270–276. [Google Scholar] [CrossRef]
  11. DeBao, C.; ChunXia, Z. Particle swarm optimization with adaptive population size and its application. Appl Soft Comp. 2009, 9, 39–48. [Google Scholar]
  12. Vannucci, P. Designing the elastic properties of laminates as an optimisation problem: a unified approach based on polar tensor invariants. Int J of Struct and Multid Optim. 2006, 31, 378–387. [Google Scholar] [CrossRef]
  13. Verchery, G. Les invariants des tenseurs d'ordre 4 du type de l'élasticité. In Proc. of Euromech 115; 1979. Published by Editions du CNRS: Paris, 1982; pp. 93–104. [Google Scholar]
  14. Vannucci, P.; Vincenti, A. The design of laminates with given thermal/hygral expansion coefficients: a general approach based upon the polar-genetic method. Compos Struct. 2007, 79, 454–466. [Google Scholar] [CrossRef]
  15. Vannucci, P. A special planar orthotropic material. Jnl of Elast. 2002, 67, 81–96. [Google Scholar] [CrossRef]
  16. Vannucci, P. Plane anisotropy by the polar method. Meccanica 2005, 40, 437–454. [Google Scholar] [CrossRef]
  17. Miki, M. Material design of composite laminates with required in-plane elastic properties. In Proc. of ICCM 4, Tokio, 1982; pp. 1725–1731.
  18. Miki M. Design of laminated fibrous composite plates with required flexural stiffness. In Recent advances in composites in the USA and Japan; Vinson, J. R.; Taya, M. (Eds.) ASTM STP 864; ASTM: Philadelphia, 1985; pp. 387–400.
  19. Tsai, S. W.; Hahn, H. T. Introduction to Composite Materials; Technomic: Basel, 1980. [Google Scholar]
  20. Vincenti, A.; Vannucci, P.; Verchery, G. Design of composite laminates as an optimization problem: a new genetic algorithm approach based upon tensor polar invariants. In Proc. of WCSMO 5 (Fifth World Congress on Structural and Multidisciplinary Optimization), Lido di Jesolo, Italy, 2003.
  21. Grédiac, M. A procedure for designing laminated plates with required stiffness properties. Application to thin quasi-isotropic quasi-homogeneous uncoupled laminates. J. Composite Mat. 1999, 33, 1939–1956. [Google Scholar] [CrossRef]
  22. Vannucci, P. Influence of invariant material parameters on the flexural optimal design of thin anisotropic laminates. Int Jnl of Mech Sci. 2009, 51, 192–203. [Google Scholar] [CrossRef]
  23. Valot, E.; Vannucci, P. Some exact solutions for fully orthotropic laminates. Compos Struct. 2005, 69, 157–166. [Google Scholar] [CrossRef]
  24. Vannucci, P. Exact optimal flexural design of laminates. To appear in Compos Struct.; 2009. [Google Scholar] [CrossRef]

Share and Cite

MDPI and ACS Style

Vannucci, P. ALE-PSO: An Adaptive Swarm Algorithm to Solve Design Problems of Laminates. Algorithms 2009, 2, 710-734. https://doi.org/10.3390/a2020710

AMA Style

Vannucci P. ALE-PSO: An Adaptive Swarm Algorithm to Solve Design Problems of Laminates. Algorithms. 2009; 2(2):710-734. https://doi.org/10.3390/a2020710

Chicago/Turabian Style

Vannucci, Paolo. 2009. "ALE-PSO: An Adaptive Swarm Algorithm to Solve Design Problems of Laminates" Algorithms 2, no. 2: 710-734. https://doi.org/10.3390/a2020710

Article Metrics

Back to TopTop