Abstract

Economic load dispatch (ELD) problem is an important issue in the operation and control of modern control system. The ELD problem is complex and nonlinear with equality and inequality constraints which makes it hard to be efficiently solved. This paper presents a new modification of harmony search (HS) algorithm named as dynamic harmony search with polynomial mutation (DHSPM) algorithm to solve ORPD problem. In DHSPM algorithm the key parameters of HS algorithm like harmony memory considering rate (HMCR) and pitch adjusting rate (PAR) are changed dynamically and there is no need to predefine these parameters. Additionally polynomial mutation is inserted in the updating step of HS algorithm to favor exploration and exploitation of the search space. The DHSPM algorithm is tested with three power system cases consisting of 3, 13, and 40 thermal units. The computational results show that the DHSPM algorithm is more effective in finding better solutions than other computational intelligence based methods.

1. Introduction

Economic load dispatch (ELD) is an important issue in the operation and control of modern control system. The objective of ELD problem can be defined as determining the real power outputs of generators so as to meet the required load demand at minimum operating cost while satisfying system equality and inequality constraints [1]. The objective of ELD is to minimize the total operating cost, but the various types of physical and operational constraints make ELD a highly nonlinear constrained optimization problem. Traditionally different approaches have been suggested to solve ELD, including linear programming [2], dynamic programming [3], and nonlinear programming [4]. The main drawback of these techniques is that they may not be able to give an optimal solution and may get stuck at local optima.

Recently, different heuristic approaches have been used to solve ELD problem with promising performance, such as genetic algorithm (GA) [5], evolutionary programming (EP) [6], differential evolution (DE) [7], and particle swarm optimization (PSO) [8]. In spite of the fact that these heuristic methods do not always guarantee finding global optimal solutions in specified time, they often provide fast and reasonable solution. Although several heuristic methodologies have been developed for the ELD problem, the difficulty of the problem reveals the need for development of efficient algorithms to exactly locate the optimum solution.

Harmony search (HS) is a new metaheuristic algorithm proposed by Geem et al. [9], which is inspired by the natural musical performance process that happens when a musician searches for a better state of harmony. HS algorithm has been successfully applied to a wide range of applications such as structural optimization [10], design optimization of water distribution networks [11], and vehicle routing [12].

Although HS algorithm is good at identifying the solution in the search space within a reasonable time, it is not efficient in performing local search in numerical optimization applications [13]. To overcome this drawback, Mahdavi et al. [13] proposed an improved HS algorithm denoted as improved harmony search (IHS) by dynamically updating pitch adjustment rate (PAR) and bandwidth (bw). Omran and Mahdavi [14] proposed a global best HS algorithm denoted as global harmony search (GHS) by borrowing the idea from swarm intelligence. Khalili et al. [15] proposed global dynamic harmony search (GDHS) algorithm for solving continuous optimization problem.

In this paper, we present a novel variant of HS algorithm, named dynamic harmony search with polynomial mutation (DHSPM) algorithm in which harmony memory considering rate (HMCR) and pitch adjusting rate (PAR) are dynamically updated. Additionally, polynomial mutation is inserted in the updating step of HS algorithm to favor exploration and exploitation of the search space.

The paper is organized as follows. Section 2 presents the formulation of ELD problem with valve-point. Section 3 contains a brief overview of HS and DHSPM algorithms. Section 4 reports the application of DHSPM to ELD problem with valve-point effect. Section 5 contains the description of the simulations and a discussion of the results. Conclusions are summarized in Section 6.

2. Problem Formulation

2.1. Economic Dispatch

The primary objective of the ELD problem is to determine the most economic loading of the generators such that the total demand is met while satisfying equality and inequality constraints. The objective function of ELD is defined as is the objective function describing the total generation cost. is the cost function of generator to generate real power . is the total number of generators in the power system.

The fuel cost function of unit is defined bywhere , , and are the cost coefficients of unit .

2.2. Economic Load Dispatch with Valve-Point Loading Effects

Multivalve steam turbines based generating units are characterized by complex nonlinear fuel cost function. This is mostly due to the ripples made by the valve-point loading. To simulate these complex phenomena, a sinusoidal component is added on the quadratic heat rate curve. To take into account this effect, the cost function in (2) is modified as follows:where and denote the cost coefficients of th generator reflecting valve-point loading effect and is the minimum output power of th generator unit.

2.3. Constraints
2.3.1. Real Power Balance Constraint

The total power generated should be equal to the total load demand plus the total transmission losses. The real power balance can be expressed aswhere is the total demand and denotes the total transmission losses. In this paper, we disregarded the transmission loss, .

2.3.2. Generator Capacity Constraints

Real power output of each generator should be within its minimum and maximum limits. This can defined as follows:where and are the minimum and maximum output power of th generating unit, respectively.

2.4. Formulation of Fitness Function

In this paper, we use penalty term to transform a constrained optimization problem into an unconstrained one. As a result, the fitness function can be written aswhere is the penalty coefficient. The penalty coefficient should be given large enough to guarantee the system constraints. In this paper, we choose .

3. Harmony Search Algorithms

3.1. Basic Harmony Search Algorithm

In basic harmony search (HS) algorithm, each solution is called a “harmony” and represented by an -dimensional real vector. An initial population of harmony vectors is randomly created to form a harmony memory (HM). Then, a new harmony vector is generated by using a memory consideration rule, a pitch adjustment rule, and a random reinitialization. The generated new harmony vector is updated in the HM by comparing the new harmony vector and the worst harmony vector in the HM. The above process is repeated until a certain criterion is met. The steps of HS algorithm are described below in detail.

Step 1 (initialization of problem and algorithm parameters). Consider an optimization problem that is described by where is the objective function, is the set of design variables, and is the range set of the possible values for each design variable. The parameters of the HS algorithm are the harmony memory size (HMS), harmony memory considering rate (HMCR), pitch adjusting rate (PAR), number of decision variables (), and number of improvisations (NI).

Step 2 (harmony memory initialization). The harmony memory (HM) matrix is filled with randomly generated solution vectors for HMS and sorted by the values of objective function as shown below:

Step 3 (new harmony improvisations). A new harmony vector is created by applying three rules: a memory consideration, a pitch adjustment, and a random selection. A random number between 0 and 1 is generated. If is less than HMCR, then is generated by the memory consideration; otherwise, is obtained by randomly generating a vector between the upper and lower bounds. In the memory consideration, is selected from any harmony vector in HM. After memory consideration, will undergo a pitch adjustment with a probability of PAR. The pitch adjustment rule is given as follows: where is a random number generated between 0 and 1.

Step 4 (updating harmony memory). If the new harmony vector has better fitness function than the worst harmony in the HM, the new harmony is included in the HM and the existing worst harmony is excluded from the HM.

Step 5 (checking the stopping criterion). If the stopping criterion, which is based on the maximum number of improvisations, is satisfied, the computation is terminated. Otherwise, Steps 3 and 4 are repeated.

3.2. Variants of HS Algorithm

Mahdavi et al. proposed improved harmony search (IHS) algorithm to address the limitations of the basic HS algorithm. IHS algorithm applies the same memory consideration, pitch adjustment, and random selection as the basic HS algorithm, but the author suggests a new formula for PAR and bw which dynamically changes at every iteration [13].

Omran and Mahdavi proposed a global best harmony search (GHS) algorithm which is based on the inspiration by the particle swarm optimization. Unlike the basic HS algorithm, the GHS algorithm generates a new harmony vector by making use of the best harmony vector [14].

Khalili et al. proposed a global dynamic harmony search (GDHS) algorithm by modifying the basic HS algorithm to solve continuous optimization problems [15].

Pan et al. proposed a self-adaptive global best harmony (SGHS) algorithm for solving continuous optimization problem. In SGHS, new improvisation scheme was suggested so that good information obtained in the current global best solution is utilized to generate new harmonies [16].

3.3. Dynamic Harmony Search with Polynomial Mutation (DHSPM) Algorithm

In this paper, a novel HS algorithm, called DHSPM, for solving ORPD problem of power system, is presented. The proposed algorithm is different from the classical HS algorithm in the following two aspects. First, a dynamic parameter adjustment scheme is suggested, which can dynamically update the parameters HMCR and PAR in every improvisation. Second, a polynomial mutation is inserted in the updating step of HS algorithm to favor exploration and exploitation of the search space. The details of the algorithm are given below.

3.3.1. Dynamic Control Parameters

The conventional HS algorithm uses fixed value for both HMCR and PAR. In the HS algorithm, HMCR and PAR are fixed in the initialization step and cannot be changed during the improvisation. The main drawback of this method is that the number of iterations needed to find optimal solution is more [13]. Here, we suggest dynamic formula for HMCR and PAR which change during the improvisation of the optimization. The suggested formulas for HMCR and PAR for the current improvisation arewhere Figures 1 and 2 show the schematic of HMCR and PAR in dynamic mode for the number of improvisations equal to 1000. At initial improvisations, a linear increase of HMCR makes the algorithm generate more new harmony vectors rather than choosing from the harmony memory. At the middle of the improvisations, the HMCR is equal to 1, which consider the harmony vector from the HM itself. At final improvisations, HMCR is linearly decreased, which helps to escape the optimization process from settling in local optima. Similarly, the large value of PAR at the middle of the improvisation enforces the selected harmony vector to have adjustments.

3.3.2. Polynomial Mutation

Mutation is an important operator in genetic algorithms (GAs), as it ensures the maintenance of diversity in the evolving populations of GAs [17]. There are several mutation techniques that can be used in genetic algorithms like random mutation [18], boundary mutation [18], nonuniform random mutation [19], power mutation [17], polynomial mutation [18], and so forth. The experimental evaluation of the HS algorithm using different mutation methods using a well-known set of test functions shows that using the polynomial mutation improves the performance of the algorithm significantly for a considerable number of functions [20]. Deb and Agrawal [18] suggested a polynomial mutation operator with a user-defined index parameter (). They concluded that induces an effect of a perturbation of in a variable, where and are lower and upper bounds. They also found that a value is adequate in most problems that they tried of the variable. In this paper, we suggest inserting polynomial mutation in the updating step of HS algorithm as follows:Then, either of the two parameters ( or ) is calculated as follows:where is the new harmony vector selected at the updating step of HS algorithm, is the mutated new harmony vector, and is a random number created within .

The optimization procedure of DHSPM is as follows.

Step 1. Set the parameters HMS, bw, and NI.

Step 2. Initialize the HM and calculate the objective function of each harmony vector.

Step 3. Determine new harmony vector as follows:for (), doif thenif thenendifelseendifendfor

Step 4 (updating of HM). If the new harmony vector is better than the worst harmony in HM, the mutated new harmony vector is created as follows:The mutated new harmony vector is inserted into the HM, and the worst harmony is removed from the HM.

Step 5. If maximum number of improvisations (NI) is reached, the computation is terminated. Otherwise, Steps 3 and 4 are repeated.

3.3.3. Study on Benchmark Functions

To test the performance of the proposed DHSPM algorithm, an extensive experimental evaluation is provided based on a set of 7 global optimization problems as follows.

Sphere Function . Sphere function is defined aswhere global optimum and for .

Schwefel’s Problem 2.22 . Schwefel’s problem 2.22 is defined aswhere global optimum and for .

Rosenbrock Function . Rosenbrock function is defined aswhere global optimum and for .

Step Function . Step function is defined aswhere global optimum and for .

Rotated Hyperellipsoid Function . Rotated hyperellipsoid function is defined aswhere global optimum and for .

Schwefel’s Problem 2.26 . Schwefel’s problem 2.26 is defined aswhere global optimum and for .

Rastrigin Function . Rastrigin function is defined aswhere global optimum and for .

The parameters of DHSPM are HM = 5, , and . Thirty independent replications are carried out for each function and the number of improvisations (NI) for each run is set to 10000. The average and standard deviations (SD) generated by the three algorithms (HS, IHS, and DHSPM) with dimension 30 are reported in Table 1. It can be seen from Table 1 that DHSPM generates best results for 7 functions compared to HS and IHS algorithms.

4. Application of DHSPM for ELD Problem

In this section, the DHSPM algorithm is applied for economic load dispatch problem with valve-point effect. The main steps symbolizing the search procedure are given below.

Step 1. Specify the generator cost coefficients and valve-point coefficients, choose the number of generator units (), and specify maximum and minimum real power generation capacity of all generators and load demand . Initialize the parameters of DHSPM.

Step 2. Initialize HM matrix with size , where represents the total number of generators in the system.

Step 3. Calculate the fitness value for each harmony vector in the HM using (6). The penalty factors are chosen high enough to make constraint violations prohibitive in the final solution. Use penalty coefficient .

Step 4. Calculate HMCR and PAR using (10).

Step 5. Generate new harmony vector using random selection, memory consideration, and pitch adjustment.

Step 6. If the new harmony vector is better than the worst harmony in the HM, then calculate the mutated new harmony using (12) and include it in HM.

Step 7. If the maximum number of improvisations is reached, go to Step 8; otherwise, repeat Steps 4–6.

Step 8. Print the optimal value of real power generation of generators and total cost of generation.

5. Simulation and Results

In this section, the DHSPM algorithm was tested with three standard load dispatch problems (3, 13, and 40 thermal units). The software was written in MATLAB 2009b and applied on a 2.40 GHz Intel Core i5 CPU personal computer with 4 GB RAM. The parameters of DHSPM for all the test systems are given in Table 2

5.1. 3 Thermal Units

A system of three thermal units with the valve-point loading was considered in this test. In this case, the load demand is taken as . The test system comprises three generating units with quadratic cost functions together with the effects of valve-point loadings as given in Table 3. Based on data attained through 100 trials, the comparisons of the three thermal units test by different algorithm are represented in Tables 4 and 5, which show that the DHSPM also succeeded in finding the satisfactory solution. The fuel cost convergence of harmony search algorithms for 3 thermal units is shown in Figure 3.

5.2. 13 Thermal Units

A system of 13 generating units with the valve-point loadings is given in Table 6. In this case, the load demand is considered as . The optimal real power generation outputs of 13 generators using DHSPM after conducting 100 trails is given in Table 7. The comparisons of the 13 thermal units test by different methods with DHSPM obtained through 100 trials are given in Table 8. From Table 8, it can be observed that the DHSPM algorithm succeeds in finding a satisfactory solution. Table 8 also summarizes the minimum and average cost obtained by all algorithms. From Table 8, the minimum cost obtained by DHSPM is 17960.54 $/h which is the best cost found so far. The fuel cost convergence of harmony search algorithms for 13 thermal units is shown in Figure 4.

5.3. 40 Thermal Units

In order to test DHSPM algorithm deeper, a system of 40 thermal units with the effects of valve-point loading was considered in this test. The data of 40 thermal units with valve-point loading effect is given in Table 9. In this case, the load demand is equal to . The optimal value of real power generation by DHSPM after conducting 100 trails is depicted in Table 10. The results obtained by applying the DHSPM algorithm and other algorithms are summarized in Table 11. From Table 11, it can be concluded that the DHSPM method succeeds in finding a satisfactory solution. Table 11 also summarizes the minimum and average cost obtained by other settled algorithms. From Table 11, the minimum cost obtained by DHSPM is 121412.66 $/h which is the best cost when compared with other existing algorithms. The fuel cost convergence of harmony search algorithms for 40 thermal units is shown in Figure 5.

6. Conclusion

In this paper, dynamic harmony search with polynomial mutation algorithm is applied to solve economic load dispatch problem with valve-point loading effect. The feasibility and the effectiveness of DHSPM algorithm have been investigated on three test systems having 3, 13, and 40 units. The DHSPM algorithm achieves the minimum fuel cost for the above unit cases when compared with other optimization methods reported in the literature. The successful optimizing performance on the validation data sets proves the efficiency of the DHSPM algorithm and shows that it can be used as a reliable tool for economic load dispatch problem.

Conflict of Interests

The authors declare that there is no conflict of interests regarding the publication of this paper.