Abstract

This paper deals with the distribution network reconfiguration problem. A hybrid algorithm of particle swarm optimization (PSO) and tabu search (TS) is proposed as the searching algorithm. The new algorithm shares the advantages of PSO and TS, which has a fast computation speed and a strong ability to avoid local optimal solution. After a thorough comparison, network random key (NRK) is introduced as the corresponding coding strategy among various tree representation strategies. NRK could completely avoid the generation of infeasible solutions during the searching process and has a good locality property, which allows the new hybrid algorithm to perform to its fullest potential. The proposed algorithm has been validated through an IEEE 33 bus test case. Compared with other algorithms, the proposed method is both accurate and computationally efficient. Furthermore, a test to solve another problem also proves the robustness of the proposed algorithm for a different problem.

1. Introduction

Distribution system is usually designed with loops while running in a radial structure. Distribution network reconfiguration (DNR) is a process of altering the topological structure of distribution feeders by changing the open/closed status of the sectionalizing and tie switches [1]. DNR is not limited to fault isolation; from time to time network reconfiguration is performed to achieve various goals, such as system loss reduction, overloads relieving [2], load aggregation [3, 4], and system reliability improvement [5].

The performance and efficiency of any DNR algorithm largely rely on a wise combination of a smart topological coding strategy and an efficient searching algorithm. As a nondeterministic polynomial hard (NP-hard) problem, DNR has been heavily studied with various searching algorithms, from step-by-step heuristics, such as branch-exchange method [6], to metaheuristics based algorithms, such as tabu search (TS) [4], simulated annealing [7], genetic algorithm (GA) [810], and particle swarm optimization (PSO) [11]. Apart from the choice of searching algorithms, the distribution network representation or coding strategy is equally important due to the topological nature of DNR. Various coding strategies have been studied in DNR problem, including binary string representation [5] and Prüfer number representation [3, 12].

After a brief comparison of different coding strategies and existing searching algorithms, this paper proposes a new DNR algorithm. The new method adopts a hybrid optimization of PSO and TS as the searching algorithm and network random keys (NRK) as the corresponding coding strategy. To boost up the overall searching efficiency, a direct method for distribution system power flow analysis [13] is introduced, which has been proved to be both robust and time-efficient.

In recent years, PSO has been successfully applied to solving different kinds of problems, ranging from multimodal and topological mathematical problems [14, 15] to aerospace [11, 1620] and chemical engineering [21, 22]. It is famous for its easy realization and fast convergence, while suffering from the possibility of early convergence to local optimums. In the proposed hybrid algorithm, whenever early convergence occurs, the original particle swarm would be separated into three groups of swarms. Swarm 1 continues performing the basic PSO algorithm; swarm 2 is replaced with newly generated random particles; and swarm 3 begins to perform TS on each particle. With the integration of TS, the hybrid PSO algorithm could effectively avoid local optimum by accepting worse solution under certain condition during the searching process.

NRK, which is originally used for GAs, in this paper, has been applied to PSO algorithm. As a topological coding strategy, NRK could completely avoid the possibility of generating unfeasible solutions when using heuristic algorithms in graph optimization problems. It also transforms the original discrete DNR problem into a continuous optimization problem. When applied in GAs, NRK is no more than a coding strategy, which possesses little physical meaning during the solution searching process. However, when used in PSO, the coding strategy has a physical meaning. The value of the “key” in the NRK can be interpreted as an importance index for each branch in the graph. The whole searching process could be interpreted as a process of adjusting the importance index of each branch and choosing the most important branches to form the optimal tree structure.

The remainder of this paper is structured as follows.

In Section 2, the DNR problem is formulated as an optimization problem. In Section 3, different network topology representation schemes are discussed, and NRK is introduced. In Section 4, the hybrid algorithm of PSO and TS is proposed and explained in detail. In Section 5, the new algorithm is tested on an IEEE 33 bus system with numerical results. The conclusion is drawn in Section 6.

2. Problem Representation

DNR is originally used in planned outages for maintenance purpose or fault isolation to restore service. A. Merlin and H. Back [14] were the first to come to the idea that reconfiguration may lead to a system total loss reduction and they tried to search for such an optimal configuration using the branch-and-bound method. Since then, loss reduction has been considered as a common objective for the study of new DNR optimization algorithms.

A noticeable characteristic of DNR is the repeated analysis of power flow during the solution searching process. In order to improve searching efficiency, several refined or approximate algorithms for power flow analysis have been studied, such as decoupled method [15], hashing table method [16], and perturbation method [2]. A direct method [13] is adopted in this paper, which has been proved to be highly efficient in distribution network power flow analysis.

Another characteristic of DNR is the topological constraints, which means any feasible solution of a DNR problem should represent a tree structure with every node being connected. Configuration space is the set of allowed system configurations over which the optimal system configuration is to be searched for [7]. In DNR, only solutions that belong to the configuration space are considered feasible.

Assume that a distribution network has branches. A DNR problem for system losses reduction can be formulated aswhere is an -dimensional vector. If branch is closed, ; otherwise . and represent the active and reactive power flow on branch . and are penalty factors, while and are penalty functions for node voltage constraint and branch current constraint.

3. Network Topology Representation

The process of searching the optimal DNR solution involves the graph theory of optimal spanning tree. Let graph represent the topology of a distribution network, where stands for vertices and stands for edges. Each potential solution is a spanning tree of . All spanning trees of the graph make up the configuration space. A good network topology representation strategy should have four characteristics:(1)Being Easy to Encode and Decode. A less complicated coding strategy would cost less time to encode and decode, thus leading to a boost in computational efficiency.(2)Being Compatible with Other Optimization Algorithms. Many metaheuristic algorithms have their own limitations in dealing with different types of optimization problems. For example, GAs require a binary string representation, and PSO requires continuous variables. A good coding strategy should be compatible with corresponding searching algorithms.(3)Avoiding Infeasible Solutions. Topological constraint is one of the thorniest issues in DNR, especially when it comes to the utilization of metaheuristic algorithms. Whenever an infeasible solution is generated, the original searching process will be interrupted. A good coding strategy should effectively rule out the possibility of generating infeasible solutions, which would greatly improve the computational efficiency and avoid the tedious topological checking process.(4)Having a Good Locality Property. A good locality property means that the objective function value is relatively continuous and smooth, rather than irregular jumps within a local area in the searching space. Most metaheuristic algorithms determine the best searching direction based on current objective function values. Then the algorithms will lead the searching process towards the most promising direction. In other words, a coding strategy with bad locality properties will greatly restrict the effectiveness of the searching algorithm. The configuration space generated by a good coding strategy should always keep a high locality.

There are many different ways to represent the distribution network topology, and each of them has its merits and flaws.

Binary string representation is the most intuitive and straightforward way to represent the network topology by assigning a binary string . The dimension of is the total number of switches. The elements in are set to be 0 or 1, representing the open and closed status of each switch. However, binary string representation is usually blamed for the high probability of generating infeasible solutions when applied by many searching algorithms such as SA or PSO. Genetic operators such as crossover or mutation almost always generate infeasible solution, which forces the algorithm to stop.

In order to reduce the probability of generating infeasible solutions, homeomorphism [12] and fundamental loop [17] representation method are widely adopted. The graph theory of homeomorphism simplifies the original graph by smoothing out unnecessary vertices from the original graph. After the simplification, each branch in the new graph represents a group of branches in the original graph. According to the graph theory, one and only one branch could be opened in each branch group in order to form a tree structure. Similarly, fundamental loop representation avoids infeasible solutions by introducing fundamental loop tables. Only one branch should be opened in each fundamental loop. These two methods help to reduce the probability of generating infeasible solutions and keep the searching process from interruption. However, none of the methods above could completely avoid infeasible solutions, and additional checking rules are still necessary.

Random key (RK) is an efficient method for encoding and scheduling problems. Rothlauf et al. [9] proposes a tree representation for GAs using RK, by the name of network random keys. Queiroz and Lyra [3] are the first to introduce the combination of NRK and GAs in the DNR problem.

Taking a 5-node system as an example, see Figure 1. The NRK coding and decoding process goes as follows.

Step 1. Generate a “key” vector with the dimension of 6, denoted as . And each element in stands for a branch in the network. The value of each key is a random number .

Step 2. Rank the elements in “key” vector according to their value in descending order, denoted as .

Step 3. Let stand for a branch set which contains the branches chosen to form the tree. Starting from the first element in , add one branch into at a time. Whenever a loop is formed, abandon the latest added branch and continue adding branches with the next element, until all 4 branches have been chosen.

The ordering of the branches in would change according to the variation of values in the “key” vector. Consequently, the final tree structure would also change. Branch with a higher “key” value will rank in the front and is more likely to be chosen to form the final tree structure. Similarly, branches with lower “key” values are more unlikely to be chosen. In other words, a higher “key” value means a higher importance of that branch.

To begin with, as a tree representation strategy, NRK could guarantee that any “key” vector could generate one and only one feasible solution, making the topological checking process completely unnecessary. Moreover, by using RKs, which are continuous variables, NRK transforms the original discrete DNR problem into a continuous problem. As a result, algorithms such as basic PSO could be applied to NRK directly. Finally, since the construction of the tree is based on the relative order of the branches, the locality of NRK is very high, which is a good prerequisite for other optimization algorithms to perform to their fullest potential.

4. Hybrid Algorithm

Various algorithms have been implemented in DNR problem, including GAs, TS, and SA. In this paper, a hybrid algorithm of PSO and TS has been introduced. The new algorithm shares the advantages of both PSO and TS.

Tabu search is a local search algorithm that can be used for solving combinatorial optimization problems. It uses some memory structures such as tabu list or frequency list to force the searching process to cover new searching area and prevent early convergence to the local optimal solution. The advantage of TS lies in a strong local searching ability and the ability to jump out of local optimum. In [4], tabu search is successfully applied to DNR with some necessary modifications. Meanwhile, the disadvantage of TS is its strong dependence on a proper initial solution and relatively low searching efficiency compared with other metaheuristics.

PSO is a stochastic optimization technique developed by Kennedy and Eberhart [23]. The algorithm introduces a number of particles to form a swarm. Each particle travels in the searching space to search for the global optimum using the experiences of other particles [16]. It has the features of parallel computing and high computational efficiency. However, PSO also suffers from the probability of early convergence. With improper parameters, PSO may easily fall into local optimum. Since the original PSO is designed for continuous variable optimization, binary particle swarm optimization (BPSO), a modified PSO algorithm, is introduced to deal with DNR problem [11].

In the basic PSO algorithm, particle updates its velocity and position with the following equations:where and stand for the position and velocity of the th dimension of particle ; and stand for the particle best and global best position; and are nonnegative constants; and and are two random numbers .

In order to overcome the various shortcomings of PSO and TS, a hybrid algorithm is proposed. On the one hand, PSO could greatly increase the searching efficiency; on the other hand, TS would help to avoid local optimal solution. Moreover, TS’s strong local searching ability may even increase PSO’s accuracy when the true global optimum is not far away. The flow chart of the new algorithm is shown in Figure 2. In the hybrid algorithm, the original particle swarms are partitioned into three swarms: swarm 1, swarm 2, and swarm 3. At the beginning, the new algorithm performs just as the basic PSO algorithm. When the algorithm stopped updating and within certain period of time, which might be a sign of early convergence, the new algorithm would begin to perform differently. Swarm 1 would continue performing basic PSO algorithm using the equation above. Swarm 2 would be reset with new random positions and velocities. Swarm 3 would perform TS based on the current optimal solution.

5. Case Studies

The proposed hybrid algorithm was realized using MATLAB and tested on the IEEE 33-node system [2]; see Figure 3. The system consists of 37 branches and 33 nodes. The number of fundamental loops is . The original system losses are 202.67 kW, with branches 33, 34, 35, 36, and 37 opened. Under the optimal network configuration, the system losses should be 128.72 kW, with branches 7, 9, 14, 31, and 37 opened.

In order to compare the performances between the proposed hybrid algorithm and other basic algorithms, three difference cases are studied.

In case 1, binary string representation is adopted as the tree representation method. BPSO is performed to deal with the discrete optimization problem. The logical transformation function of BPSO is established as the sigmoid function in [18]. Both the BPSO parameters and are set to be 4. As binary string representation allows the generation of infeasible solutions, whenever an infeasible solution is generated, a feasible particle is picked to replace the infeasible one.

In case 2, NRK is chosen as the tree representation method. As continuous variables, “keys” enable basic PSO algorithm to perform directly into DNR problem. The basic PSO parameters are set as follows: . Each “key” value in NRK vector is limited within .

In case 3, the new hybrid algorithm of PSO and TS is adopted, with NRK being the tree representation method. The PSO parameters are the same as case 2. The length of tabu list is 3; the length of frequency list is 10. The frequency penalty factor is set to be 1.2. The detailed aspiration criterion is explained in [19].

To get a population large enough to study the differences among the three cases, each case is performed 100 times. The particle numbers in all cases are set to 10, and the maximum iteration time is set as 50. The average computation time and losses achieved by three cases in 100 trails are shown in Table 1. The standard deviation (STDV) of losses enables evaluating the algorithms’ robustness.

By comparing case 1 with case 2, we can see that the bad locality property of binary string greatly limited the performance of PSO and the high probability of generating of infeasible particles significantly slowed the entire searching process. By comparing case 2 with case 3, we can see that the integration of tabu search could effectively increase the local search ability and help PSO jump out of local optimal solution.

Table 2 shows the percentage of solutions with a system loss less than certain criteria within 100 trials for each case. It further illustrates that both NRK and the hybrid algorithm significantly increase the probability of finding the global optimal solution. 69 out of 100 trails have found the global optimal solution in the new algorithm, which is much higher than other two cases.

Figure 4 shows the global best solution curve during 50 iterations for all cases. In the hybrid algorithm, when pBest and gBest stopped updating for a period of time, a local optimal solution is found, as seen in Figure 4: “Hybrid-PSO.’’ Then the original swarm process is forced to stop at the 41th iteration. Then the original particle swarm is separated into three swarms. “Hybrid-TS’’ shows how tabu search help a particle in swarm 3 jump out of the local optimum and increase the possibility of finding the global optimal network configuration.

To test the parametric robustness of the proposed algorithm, the percentages to get global best among 100 trials of PSO and hybrid algorithm under different parameter combinations are shown in Tables 3 and 4, respectively.

From the results of Tables 3 and 4, the hybrid algorithm has similar parameter selection region compared to the PSO. The best parameters ( and ) of two algorithms are both 4 or 5. That means the hybrid process has no evident impacts on the parameter selection. The main reason is that the PSO process and TS process are independent of each other. The TS process is activated when the solving process is caught into local best. Thus the parameter tuning problems do not exist in the proposed hybrid process.

To prove the robustness of the proposed hybrid algorithm to different problems, PSO and the proposed hybrid algorithm are both tested in a reactive power dispatch model [24]. The test system is the IEEE 118 bus system. The algorithmic parameters are the same with case 1 and case 2. The results are shown in Table 5.

From Table 5, the proposed hybrid algorithm also has superior characteristics compared to PSO, which shows that proposed method is able to enhance the global searching ability of PSO for different models.

6. Conclusion

PSO is a very promising algorithm to large scale optimization problems as DNR problem. The main contribution of this paper is presenting a hybrid PSO searching algorithm and introduces NRK as the tree representation strategy for the new algorithm.

The numerical results drawn from the test system validate the effectiveness and efficiency of both the hybrid algorithm and the introduction of the new coding strategy.

The main drawback of the algorithm lies in the situation that PSO algorithm converges to a local optimal solution which is located very far away from the true global optimal solution; tabu search may not have the ability to jump out of such a very deep local optimal solution. Another drawback is that a subtle change of “key” value does not necessarily lead to a change in the tree structure formulation, unless the change is big enough to change the importance sequence of the branches. In other words, NRK is not very sensitive to PSO algorithm, and that is also the very reason why algorithms with strong local search ability like tabu search are indispensable.

Further analysis shows that the hybrid process has no evident influences on the parameter selection, and the proposed method is also able to enhance the global searching ability of PSO in different problems.

Competing Interests

The authors declare that they have no competing interests.