Power Magnetic Devices. Scott D. Sudhoff

Чтение книги онлайн.

Читать онлайн книгу Power Magnetic Devices - Scott D. Sudhoff страница 26

Power Magnetic Devices - Scott D. Sudhoff

Скачать книгу

Thus, the most fit individual is kmax more likely as an average fit individual to go into the mating pool, and the least fit individual is kmin times more likely as the average fit individual to be put in the mating pool (which is less likely than average since kmin < 1).

      Diversity Control

      The point of a population‐based optimization is to search for the minimizer or maximizer using a large number of candidate solutions. Having large numbers of identical members of the population defeats the purpose of having a population in the first place. Diversity control algorithms examine the closeness of the solutions and compute a penalty for identical or nearly identical individuals; the penalized fitness is then used in the selection process.

      Elitism

      In biological systems, there is no guarantee that the most fit individual in a population will survive long enough to procreate because of environmental influences. For example, the most fit grizzly bear in Alaska could be killed by a hunter. While examples of this occur every day in the natural world, as engineers we may not want to lose the best induction motor design in our population. This has led to the elitism operator. This operator compares the most fit individual in a new population to the most fit individual in the previous population. If the best fitness in the new population is lower than the previous population, the most fit member of the previous population replaces a member of the new population. In this way, the best fitness in the population cannot go down. While this operator is distinctly nonbiological, it normally results in improved algorithm performance.

      Migration

      In biological populations, it sometimes occurs that a population becomes geographically dispersed, and then members of these geographically isolated regions continue to evolve on separate evolutionary tracks. Sometimes, because of storms or random events, a few members of one region migrate into another region. These individuals then have children with members of the region which they have migrated into, often yielding very fit offspring.

      It is possible to create GAs where such migration occurs. In such a GA, each individual is associated with a region, and for the most part, only individuals within a given region interact. Each region acts as a separate population. Occasionally, however, a few individuals are transferred between regions.

      Death

      In the canonical GA, the entire population is replaced by children. Those individuals who are selected in the mating pool but do not undergo any crossover, segregation, or mutation “survive” to the next generation unchanged. However, in some GAs, rather than forming a mating pool of the same size as the population, a mating pool that is a fraction of the size of the population is formed, thereby generating a population of children a fraction of the size of the population. The children replace members of the existing population, so that a new population is formed which has the children, plus some members of the previous population. In order to make room for the children (to hold the population size constant), it becomes necessary to decide which members of the current population will “die” to make room for the introduction of children. The selection of those individuals to be replaced can be made on criteria other than those used for selection—for example, based on diversity (or more particularly lack thereof) or some other attribute. In some sense, these approaches are reminiscent of biological populations, where the boundaries between generations are gradual.

      Local Search

      After the initial generations of a GA, it is often the case that the most fit individuals are near a solution. In this case, some GAs will initiate local searches around the most fit individual. One way to accomplish this is to create a set of slight mutations of the most fit individual. Let us refer to the most fit individual as individual A, and refer to the population of mutations of this individual as PA. If the most fit individual in PA is more fit than individual A, then the most fit individual of PA replaces individual Α in the population.

      Deterministic Search

      Many classical optimization methods are very effective if they initialized to be close to the solution. This is because many functions are “locally” convex. At the same time, while GAs are often very effective at getting close to a global optimum, they may not always converge rapidly from a good approximation of a solution to the exact solution. This suggests a combination of the two approaches, wherein the best individual of the final population is used to initialize a classical optimization method. To this end, the Nelder–Mead simplex method [1] is particularly attractive because it does not require gradients or Hessians. In performing such an optimization, it is normally the case that in problems with a mixed search space, those genes that represent discrete choices are held fixed.

      Enhanced Real‐Coded Genetic Algorithm

Schematic illustration of enhanced real-coded genetic algorithm.

      The death algorithm selects a member of the current population to be replaced by the children, yielding the beginnings of the next generation, P[k + 1]. The primes are used because this population will be modified before becoming the next generation. First the migration operator will be applied, which may occasionally move individuals from one region to another. This yields P[k + 1]. Next, the gene values are decoded and the fitness evaluated. The result is again denoted P[k + 1] since the population itself does not change. The elitism operator is then applied, which compares the most fit individual of the previous population P[k] to the most fit individual in P[k + 1] and replaces that individual if appropriate. This yields population P[k + 1]. The local search operator is employed to generate P[k + 1].

      Once

Скачать книгу