Abstract

The power loss in electrical power systems is an important issue. Many techniques are used to reduce active power losses in a power system where the controlling of reactive power is one of the methods for decreasing the losses in any power system. In this paper, an improved particle swarm optimization algorithm using eagle strategy (ESPSO) is proposed for solving reactive power optimization problem to minimize the power losses. All simulations and numerical analysis have been performed on IEEE 30-bus power system, IEEE 118-bus power system, and a real power distribution subsystem. Moreover, the proposed method is tested on some benchmark functions. Results obtained in this study are compared with commonly used algorithms: particle swarm optimization (PSO) algorithm, genetic algorithm (GA), artificial bee colony (ABC) algorithm, firefly algorithm (FA), differential evolution (DE), and hybrid genetic algorithm with particle swarm optimization (hGAPSO). Results obtained in all simulations and analysis show that the proposed method is superior and more effective compared to the other methods.

1. Introduction

The reactive power optimization approach is important for power quality, system stability, and optimal operation of electrical power systems. Reactive power control can be set with adjusting the voltage levels, tap positions of transformers, shunt capacitors, and other control variables. The reactive power optimization approach can minimize the power losses and improve the voltage profiles. Many conventional methods such as dynamic programming, linear and nonlinear programing, interior point method, genetic algorithm, and quadratic programming have been employed for solving reactive power optimization problem [15].

Moreover, in the last years, various intelligence computation methods have proposed for the reactive power optimization such as particle swarm optimization, differential evolution, ant colony, and BC [69]. The optimization methods along with fuzzy logic [10] have been used to adjust the optimal setting of power system variables, containing flexible AC transmission systems (FACTs) devices, where the power system losses have been reduced by the optimal placement of thyristor-controlled series compensation (TCSC) and static VAR compensator (SVC). A dynamic weights based particle swarm optimization (PSO) algorithm has been used for reducing power loss [11]. This approach has been implemented to IEEE 6-bus system. The PSO based reactive power optimization method has been presented in [12] for minimizing the total support cost from generators and reactive compensators. In [13], modified artificial fish swarm algorithm (MAFSA) has been proposed to optimize the reactive power optimization and this method has been applied to IEEE 57-bus system. A seeker optimization algorithm has been presented for reactive power dispatch method in [14]; the authors applied the algorithm to several benchmark functions, IEEE 57 and IEEE 118 test systems and then compared with different conventional nonlinear programming methods (such as different versions of GA, DE, and PSO). The optimum conditions for operating the electric power systems have been determined by GA [15]. Authors selected the main objective of the study as the definition of the load buses voltage amplitude values. By this way, they get the minimum power losses in the transmission lines. In [16], reactive power optimization has been solved by adjusting generator voltages, transformer taps, and capacitors/reactors and three GA/SA/TS hybrid algorithms have been used. In the other study [17], the reactive power optimization problem has been solved by using evolutionary computation techniques such as genetic and particle swarm optimization algorithms, and voltage bus magnitude, transformer tap setting, and the reactive power injected by capacitor banks were selected as control variables. Authors applied the proposed algorithms to IEEE 30-bus and IEEE 118-bus systems. In [18], distributed generation has been taken into distribution system and a multiobjective model for reactive power optimization has been investigated to reduce the system loss and voltage deviation and minimize the total reactive compensation devices capacity. Simulation and analysis have been carried out on IEEE 33-bus system with a dynamically adaptive multiobjective particle swarm optimization (DAMOPSO) algorithm. In [19], an improved mind evolutionary algorithm (IMEA) has been presented for optimal reactive power dispatch and voltage control. The proposed method has been carried out on IEEE 30-bus system and simulation results have been compared with GA to prove its efficiency and superiority. On the other study, GA has been proposed for optimization of reactive power flow in a power system [20]. The authors used two different objective functions: active power losses and the voltage-stability-oriented index.

In this study, a particle swarm optimization algorithm using eagle strategy (ESPSO) has been developed to implement reactive power optimization for reducing power losses. Eagle strategy (ES) has been originated by the foraging behavior of eagles such as golden eagles. This strategy has two important parameters: random search and intensive chase. At first it explores the search space globally, and then in the second case the strategy makes an intensive local search with using an effective local optimizer method [2123]. So, SPO has been improved using ES and implemented to reactive power optimization problem.

Moreover, simulations and analysis of reactive power optimization problem have been performed on IEEE 30-bus test system, IEEE 118-bus test system, and a real power subsystem, and the proposed approach has been compared with various algorithms to show performance. It can be seen that, in case studies, the proposed approach has been outperformed compared to other methods mentioned.

2. Problem Formulation

This paper defines the objective function as reducing power losses of power system. The objective function given in [14, 15, 17, 24] for reactive power optimization problem is given in (1). The equality and inequality constraints are denoted in (3). Note that the real distribution subsystem considered in this paper has no generators; therefore, we did not handle the generator constraints for this power system. Moreover, control variables are self-constrained but dependent variables are implemented to the objective function by using penalty terms. So, the objective function can be given as in (2) as follows:where , , and are the penalty factors which are equal to 1000, is the number of load buses, and is the number of generator buses which injected reactive power. If then is equal to and if then is equal to . On the other hand, if then is equal to and if then is equal to . If then is equal to .

Note that superscripts “min” and “max” in (3) express lower and upper limits, respectively. Here, is the vector of control variable where and is the vector of dependent variable where .

3. Method

3.1. Eagle Strategy (ES)

Eagle strategy (ES) is a two-stage process, developed by Yang et al. [22]. ES is inspired by the foraging behavior of eagles that they fly random in analogy to the Lévy flights. It uses different algorithms which make global search and local search for fitting different proposes. ES has some similarities with random restart hill climbing method, but there are two important differences: ES is a two-stage method, and so a global search randomization method and an intensive local search are combined and ES uses Lévy walks so it can explore the global search space more effectively. Essentially, ES makes the global search in the -dimensional space with Lévy flights; if any probable solution is found, an intensive local optimizer is put to use for local search such as differential evolution, particle swarm optimization algorithm, and artificial bee colony that these have local search capability. Then the procedure starts again with new global search in the new area [2123, 25, 26].

Note that ES is not an algorithm; it is a method. In fact, various algorithms can be used at the different stages. This provides that it combines the advantages of these different algorithms so as to obtain better results.

Lévy distribution [22] is given as follows:where is standard gamma function and s is the step length. When , it becomes Brownian motion as a special case. We used ; thus Lévy walks become the Cauchy distribution.

Pseudocode of ES can be given as in Pseudocode 1.

Load objective function
Initial population
While ≤ tolerance or
  Random global search (Levy walks)
  Local search by using PSO
  If a better solution is found
    Update the current best
  End if
  
end
3.2. Particle Swarm Optimization (PSO)

This technique processing is so easy that PSO utilizes some parameters and definitions of the optimization process and then it starts the process with an initial random population, named particles. Each of these particles has a possible solution for the main problem and is processed as a part in -dimensional space. In the variable space, each particle has a position identified by and a velocity identified by Velocity and position of each particle is updated using (5) and (6), respectively. If a particle has a best position, it is carried to the next. Additionally, best positions are represented as and the best position of all particles is represented as [2729]. The weight function iswhere and are selected randomly in the range and and are acceleration coefficients that inspect the motion of a particle.

Pseudocode of PSO see Pseudocode 2.

Load objective function
Generate the initial population and velocity of particles
Find global best (at )
While ≤ tolerance or
  Calculate new velocity and position of each particle via (5) and (6)
  Evaluate the new fitness
  If
  
  Update global best
  Update weight
  
end
3.3. Eagle Strategy with Particle Swarm Optimization (ESPSO)

We know that for local search we can use an algorithm such as PSO, DE, and ABC; therefore, PSO is applied to the local search stage of ES method. On the other side, randomization with Lévy walks can be used in the global search. The proposed method is a population-based algorithm.

We used the parameters of PSO used in most applications [18, 19], where , , and ; then we set . We used 500 iterations for benchmark functions and 100 iterations for reactive power optimization problem. There are two important situations, and . If , the velocity of particles cannot be decreased and particles are far from one another. If , then the particles are short sighted, so particles will be trapped in a confined space and velocity of this particles can be very small.

There are several stopping criteria given in the literature: a fixed number of generations, the number of iterations since the last change of the best solution being greater than a specified number, the number of iterations reaching maximum number, a located string with a certain value, and no change in the average fitness after some generations. In this paper, the stopping criteria are chosen as the maximum number of iterations and the tolerance value for fitness where .

Steps of proposed method have been explained in Algorithm 1.

Step 1. Load function and its parameters
Step 2. Generate initial population randomly
Step 3. While
    > max number of iterations,
    performing random global search using Levy Flight ,
    (,  ,  and step length set as )
    Then, find a promising solution
Step 4. Determine a random number. Set switching parameter for controlling
    between global search and local search. (We set )
    If
    switch to local search stage (go to Step  5)
   else
    switch to global search stage (go to Step  6)
Step 5. In intensive local search stage, search around a promising solution,
    Calculate new velocity and position of each particle via (5) and (6),
    Then evaluate new fitness (Use the objective function based on Newton–Raphson
    power flow for reactive power optimization problem)
    If
    
Step 6. Update,
   
Step 7. Stopping criterion,
    Maximum number of iterations or a given tolerance (tolerance set as
    for reactive power optimization problem)
Step 8. If any criterion is provided, then stop the algorithm else go to Step

4. Performance of ESPSO on Benchmark Functions

For testing proposed method, seven well-known benchmark functions are handled with comparison of widely used six algorithms (GA, PSO, ABC, FA, and hGAPSO). These benchmark functions are listed in Table 1.

All the methods run in 500 iterations and over 50 times for each function. The results obtained by proposed ESPSO algorithm on some benchmark functions are statistically different from the other algorithms and ESPSO has a good performance on the test functions. Results point out that ESPSO algorithm is appropriate for optimizations of unimodal and multimodal functions. Table 2 shows the results obtained by all methods mentioned in this section. In Table 2, it can be seen that the proposed approach has obtained better results than the other methods.

Unlike other algorithms, ESPSO performs global search and local search by using parameter until converging to optimum as possible. In addition, it generates initial population randomly using uniform distribution function in MATLAB. Consequently, from the local search to global search, fitness value is changed from the worst to the best, so as a generation can not only find a good search but also switch to new search area in the search space.

5. Implementing Reactive Power Optimization

In reactive power optimization problem, transformer tap positions and shunt capacitor banks are discrete or integer variables. However, the proposed method only uses continuous variable. To use these variables, each particle of ESPSO explores in the space as searching for continuous variable, and objective function is evaluated by cutting the corresponding dimensions of particles into integers. This means that the real position values of particles consist of values of capacitor banks and transformers tap positions represented as a vector to be used for calculating objective function.

Here, inequality constraints are handled in iterations as follows: if variables violate their limit, they are clamped to their upper limit and the remaining mismatch is taken by another one not on limit based on their inertia, and during computation if any PV bus reactive power is violated then PV bus is assumed as PQ bus fixing at the brink value.

Furthermore, the procedure of solving reactive power problem can be explained as follows.

The proposed approach of ESPSO loads parameters of power system and initial condition and specifies upper and lower limits. Initial particles are determined randomly via uniform distribution to locate their initial positions, and initial velocities of particles are constituted. The algorithm evaluates the fitness using objective function and adjusts local bests and global best from locals.

While stopping criteria are provided, ESPSO performs that searching global best by Lévy flight and then determining a random number. If this determined random number is less then parameter, local search would be performed and locals would be updated via local search property of PSO (update velocities and positions of particles). Then, new fitness computed and if fitness found in local search stage is less then fitness found in first stage, global solution and positions of particles would be updated: (, , and then ).

6. Results of Simulations

To verify the ability, capability, and performance of the proposed ESPSO on reactive power optimization problem, it is implemented to IEEE 30-bus test system, IEEE 118-bus test system, and a real distribution subsystem. For testing and proving the performance of proposed method, it is compared with various algorithms such as GA, PSO [17], ABC [24], FA [30], DE [31], and hGAPSO [32].

The population-based algorithms GA, PSO, DE, and their improved version have a great interest in engineering optimization problems and they all have been successfully implemented to reactive power optimization problems [4, 6, 7, 11, 12, 16, 17, 31, 32]. In some other studies, ABC and FA [24, 30] have also been used for reactive power optimization. So, ESPSO is compared with these algorithms.

In [17], authors proposed GA and PSO to solve reactive power optimization problem for some test systems where, on IEEE 30-bus system, they obtained power losses 4.78 MW and 4.39 MW with GA and PSO, respectively. In [24], authors obtained power losses with ABC in the study for 30-bus system as 3.09 MW. In a different study for IEEE 30-bus power system, power loss has been tabulated as 4.71 MW with FA [30]. Authors considered four different test systems with various algorithm and they obtained power losses for 30-bus system as 5.01 MW with DE [31]. In [32] minimum power losses have been tabulated as 3.69 MW for IEEE 30-bus test system. (Note that data and settings of all methods can be found in these studies.)

The results of studies in [17] with GA and PSO, [24] with ABC, [31] with DE, and [32] with hGAPSO are taken into consideration for IEEE 118-bus test system. In these studies, authors obtained power losses with GA, PSO, ABC, and DE as 139.16, 135.64, 119.6923, and 128.318, respectively.

The proposed method is coded in MATLAB software for 30-bus and 118-bus test systems. Maximum number of iterations is set as 100 and ESPSO is run over 50 times. The best solutions for both systems are tabulated after 50 times running.

6.1. IEEE 30-Bus Test System

Power system includes 41 branches, 6 generators, 21 load buses, and 9 shunt compensators. Branches of 4–12, 6–9, 6–10, and 28-27 are adjustable tab under load and symbolized as , , , and , respectively. All data and parameters of power system used can be found in [33]. The system loads are as follows:  pu and  pu. The transformers tap settings and bus voltages lower and upper limits are 0.9 pu and 1.1 pu and shunt compensators limits are 0.0 pu and 0.05 pu, respectively, that variables limits are denoted in Table 3.

For comparing the proposed approach with other algorithms mentioned previously, index related to performance consists of the minimization of power loss given in Table 4. Table 4 shows that ESPSO found system loss less than other techniques, so that it can be deduced that the proposed method is clearly more robust and better than others in this case study. Variables values obtained by solving reactive power optimization problem for IEEE 30-bus system are also illustrated in Table 4. The power loss is reduced to 3.0128 MW with ESPSO, which is less than that obtained by the other methods. On the other hand, the bus voltages are kept within their limits; it shows that the proposed method has a best performance for optimizing voltage quality. Outputs of generators are denoted in Table 5 and the variation of power loss obtained by proposed approach is also given in Figure 1. Furthermore, the variation graphs of control variables are illustrated in Figures 24.

6.2. IEEE 118-Bus Test System

The IEEE 118-bus system data are given in [34]. This power system contains 54 generators, 9 transformers, and 186 lines. The total load of system is 4242 MW. In this study, tap settings of the transformers and the voltage limits are taken into consideration within 0.9 pu–1.1 pu and 0.94 pu–1.06 pu, respectively.

The results obtained by proposed method are given in Table 6. To compare the performance of proposed method, the minimum power loss obtained by different methods is also tabulated. The power loss has been reduced to 119.5500 MW. Table 6 illustrates that in this section the proposed method is more robust and effective than the other methods. Moreover, the convergence of power loss for IEEE 118-bus power system is given in Figure 5. Table 7 and Figure 6 show the tap ratios, the values of shunt compensators, the voltage, and power of generators, respectively.

6.3. Case Study on a Real Distribution Subsystem

The proposed method has been used to minimize the power loss by using reactive power optimization on Eregli Distribution Subsystem in Turkey. All data and parameter have been supplied from Eregli Branch Office of Meram Electricity Distribution Corporation.

The power subsystem considered in this paper includes 1311 buses at 0.4 kV, 9 buses at 31.5 kV, and 3 buses at 15.8 kV and 12 branches with adjustable tab under load. First bus is selected as the slack bus, 2–9 buses are PV buses, and others are selected as PQ buses (switching capacitor banks are located on all 0.4 kV buses). In this respect, vector dimensions become 1333 dimensions composed of nine voltage magnitude values, 12 tab settings, and 1311 switchable capacitor banks. The discrete control variables given in Table 8 are changed with step of 0.01 per unit (pu). The active power load and reactive power load are 0.9869 pu and 0.2242 pu, respectively, and total power losses are 1.0961 MW (note that pu values are computed on 100 MVA base).

For comparing the proposed method with GA, PSO, ABC, FA, and hGAPSO, the performance index including minimum active power losses is illustrated in Figure 7. All algorithms are run in 100 iterations and over 50 times. The results tabulated by all algorithms have been obtained after 50 times running. In addition, ESPSO has found the minimum power loss as 0.8973 MW, and all results are given in Table 9 (values of capacitor banks have not been given because of containing too many items). It can be seen that ESPSO is more effective and superior compared to other algorithms.

In order to clarify the ability of ESPSO that is statistically more robust and better than other methods, it can be shown that the minimum power loss obtained by ESPSO is smaller than all others listed and it conducts global searches accurately. After 50 times running it can be seen that the power losses are decreased from 1.0961 MW to 0.8973 MW by the proposed ESPSO which is the highest power loss reduction. The results obtained by all algorithms handled in this paper are given below, which indicates minimum power loss, voltage magnitude of buses, and tap ratios.

7. Conclusion

Eagle strategy is a method of combination of global search and intensive local search for optimization. In this paper, an approach, ES with PSO based reactive power optimization method, has been implemented to a reactive power optimization problem for minimizing the power losses of 30-bus test system, 118-bus test system, and a real distribution subsystem. It can be seen that two case studies in this paper which are performance test on benchmark functions and the minimization of power losses of various power systems may help to clarify the capability of proposed approach for optimization problem. Furthermore, ESPSO is effectively solving optimization problems and finding the optimum more successfully than the other algorithms. On the other hand, about benchmark functions performance, the proposed approach has a better performance than all other algorithms. So, it can be seen that the proposed ESPSO algorithm is influential and able to solve power loss minimization problem and may become a good candidate for other optimization problems such as reactive power dispatch, cost minimization, or multiobjective optimization.

Nomenclature

:Total power losses
:Conductance between nodes and
:Admittance between nodes and
:Angle difference between nodes and
:Number of power system buses
:Number of slack buses
:Number of PQ buses
:Number of transformer branches
:Number of capacitor installed buses
:Number of generator buses
:Tap position of transformers at branches
:Shunt capacitor value
:Voltage magnitude of bus
:Voltage magnitude of bus
:Voltage magnitude of each generator
:Voltage magnitude of each bus
:The injected reactive power
:The injected active power
:The reactive power demanded by load
:The active power demanded by load
:Transmission line current flow capacity at line between nodes and
:Lévy distribution function
:Standard gamma function
:Gamma function parameter
:The initial step length value
:Step length
:Number of iterations
:Velocity of a particle in PSO
:Position of a particle in PSO
:Local best position
:Global best
:The weight function
:Selected randomly in the range
:Acceleration coefficients
:Control parameter of switching
:Objective function.

Conflicts of Interest

The authors declare that they have no conflicts of interest.