|
|
Harmony search (HS) is a metaheuristic algorithm (also known as soft computing algorithm or evolutionary algorithm) mimicking the improvisation process of musicians. In the process, each musician plays a note for finding a best harmony all together. Likewise, each decision variable in optimization process has a value for finding a best vector all together. The algorithm
Harmony search tries to find a vector x that minimizes some cost function.The algorithm as given by is:Initialize the harmony memory: pick k random vectors .Make a new vector x'. For each component x'i: with probability phmcr pick the component from memory, with probability 1 − phmcr pick a new random value in the allowed range.Pitch adjustment: For each component x'i: with probability ppar change x'i by a small amount, .with probability 1 − ppar do nothing.If x' is better than the worst xi in the memory, then replace xi by x'.Repeat from step 2 until a maximum number of iterations has been performed.The parameters of the search are k, the size of the memory. A typical value is in the order of 4 to 10.phmcr, the rate of choosing from memory. A typical value is 0.95.ppar, the 'pitch adjustment rate'. Typical values range from 0.3 to 0.99.bw, the 'distance bandwidth', the amount of change for pitch adjustments.It is possible to vary the parameters as the search progresses, this gives an effect similar to simulated annealing.In improved harmony search, ppar is increased linearly, while bw is decreased exponentially. Harmony search applications
The HS algorithm had been successful in a wide variety of optimization problems in the following fields. Bench-mark problems
Traveling salesman problemVarious mathematical functionsRosenbrock's banana functionSix-hump camel back function Real-world problems
Combined heat and power economic dispatchWater distribution network designStructural designVehicle routingHydrologic parameter calibrationAquifer parameters and zone structuresPump switchingMultiple dam schedulingSatellite heat pipe designOffshore structure mooringQoS based multicast routingTour routingMusic compositionSudoku puzzle solving Harmony search features
HS has several advantages when compared with traditional gradient-based mathematical optimization techniques as follows: HS does not require complex calculus,thereforeit is free from divergence.HS does not require initial value settings for the decision variables,thereforeit may escape local optima.HS can handle discrete variables as well as continuous variables, while gradient-based techniques handle continuous variables only.Also, the HS algorithm could overcome the drawback of genetic algorithm's building block theory by considering the relationship among decision variables using its ensemble operation. Other Related Algorithms
Genetic algorithmsSimulated annealingTabu searchAnt colony optimization
Related Ads
|
|