Implementation of a Voltage Sweep Power Flow Method and Comparison with Other Power Flow Techniques

Size: px
Start display at page:

Download "Implementation of a Voltage Sweep Power Flow Method and Comparison with Other Power Flow Techniques"

Transcription

1 power systems eehlaboratory Feifei Teng Implementation of a Voltage Sweep Power Flow Method and Comparison with Other Power Flow Techniques Semester Thesis PSL 1432 EEH Power Systems Laboratory Swiss Federal Institute of Technology (ETH) Zurich Examiner: Prof. Dr. Göran Andersson Supervisor: Dr. Stephan Koch Zurich, November 20, 2014

2 Abstract Traditional power flow analysis techniques such as the Newton-Raphson and the Gauss-Seidel methods are widely used in analyzing power transmission systems. However, they are inefficient and may diverge due to the different network characteristics of power distribution systems such as radial and high R/X ratio. Therefore, other techniques such as the voltage sweep algorithms are developed for power distribution systems. In this thesis, the forward and backward sweep algorithm is studied and validated in Java. The sweep algorithm can deal with balanced networks which are radial or weakly meshed and contain distributed generators. Networks with different topologies are implemented to assess the convergence behavior of the sweeping algorithm and comparisons with established methods in the open-source Java power flow package JPower (the Newton-Raphson and Gauss-Seidel methods) are made. Results show that the sweeping algorithm is more efficient in analyzing power distribution systems: it has the least runtime among the three methods and the time-saving advantage is more obvious for networks with less loops and PV nodes. i

3 Acknowledgments This semester project was conducted at the ETH spin-off Adaptricity since 09/2014. The full time project made me concentrate on my work and time runs really fast for a 7-week project. First of all, I would like to express my gratitude to my supervisor Dr. Stephan Koch for his support and guidance during this work. Thanks for the opportunity he gave me to learn hands-on knowledge about Java programming and power flow analysis. I like especially the atmosphere in the Adaptricity office where everyone is so nice. Thanks my parents for their consistent encouragement. How lucky I am to have such good parents! I also would like to thank all the friends around me. Thanks for being someone in my life. ii

4 Contents List of Figures List of Tables v vi 1 Introduction Background of the project Power flow analysis Newton-Raphson method Gauss-Seidel Iteration Differences between power transmission and distribution systems Goal of the project Structure of the thesis Forward/Backward Sweep Approaches Element ordering Load flow equations Power summation method Kirchhoff s Law based method Weakly meshed networks Distributed generators modeling Transformers modeling Convergence criteria Algorithm Implementation Element ordering Loop impedance matrix Voltage sweep calculation Breakpoint power injection Convergence criteria Implementation results Assessment on the sweeping algorithm Voltage mismatches after each iteration iii

5 CONTENTS iv Influence of convergence criteria Influence of loops and PV nodes numbers Influence of PV node position Comparison with the Gauss-Seidel and the Newton-Raphson methods Runtime comparison Calculation results comparison Conclusions 25 A Benchmark networks 26 Bibliography 29

6 List of Figures 1.1 The Newton-Raphson method iteration scheme Ordered network example π circuit model of a branch Network illustrating adding breakpoints in loops and PV nodes Breakpoint current injection The breakpoint power injection method PV bus breakpoint Single-phase transformer model Flowchart of the proposed algorithm Successive voltage difference for all buses Voltage mismatches in breakpoints Runtime and iteration number under different convergence criteria Runtime and iteration number with increasing loops Runtime and iteration number with increasing PV nodes Iteration number for different PV node position Runtime comparison Voltage magnitude differences between the sweeping algorithm and the N-R method Voltage magnitude differences between the sweeping algorithm and the G-S method A.1 14-bus network A.2 29-bus network A bus network v

7 List of Tables 4.1 Characteristics of the benchmark networks Runtime comparison of different methods vi

8 Chapter 1 Introduction 1.1 Background of the project Traditional power flow analysis techniques [1] such as the Newton-Raphson (N-R) and the Gauss-Seidel (G-S) methods are frequently used in power transmission systems. However, for special cases which are usually called ill-conditioned power systems, these methods might be unstable and diverge [2]. Therefore, for power distribution systems which have high R/X ratio and are often regarded as ill-conditioned, other methods such as the forward and backward sweep algorithm are used and developed. 1.2 Power flow analysis There are basically four variables related to bus b, bus voltage magnitude U b, voltage angle θ b, active power P b and reactive power Q b. Three basic types of buses are defined depending on which of the four variables are given [3]: PQ bus: P b and Q b are given; U b and θ b are to be calculated, it represents load buses without voltage control. PV bus: P b and U b are given; Q b and θ b are to be calculated, it represents generation buses with voltage control. Uθ bus: U b and θ b are given; P b and Q b are to be calculated, it is also called slack bus and is used to balance load or generation and serves as voltage angle reference. After defining all the buses in the network, the unknown variables of every bus are calculated using equality and inequality constraints of the network. Therefore, power flow analysis is about solving a series of equations with system parameters and get the result of the system states. A general power flow equation can be written as Eq. (1.1). f(x, u, p) = 0, (1.1) 1

9 CHAPTER 1. INTRODUCTION 2 where x is a vector of unknown system states, which refers to the unknown variables of each bus. u is a vector with control output such as the active power and voltage magnitude of a PV bus. p is system parameters such as series impedance and shunt admittance of branches. Therefore, the key to analyze a power system is to find efficient ways to solve power flow Eq. (1.1). Many algorithms have been adapted and developed in the past few years. The Newton-Raphson method (N-R) and the Gauss-Seidel (G-S) method are among the most widely used methods which have an excellent convergence characteristic and calculation efficiency Newton-Raphson method The Newton-Raphson method is the most widely used iterative technique [4]. Its basic iteration scheme is illustrated in Figure 1.1. f(x) f(x 0 ) f(x 1 ) x 2 x 1 x 0 x Figure 1.1: The Newton-Raphson method iteration scheme Start with initial value of x (0), the state x is updated using Eq. (1.2) and (1.3): where J(x (v) ) is the Jacobian matrix with J(x (v) ) x (v) = f(x (v) ), (1.2) x (v+1) = x (v) + x (v), (1.3) J(x (v) ) = f(x) x. (1.4) The N-R algorithm converges to the true value of x after several iterations. For power system analysis, the state x which needs to be solved and the

10 CHAPTER 1. INTRODUCTION 3 function f are formulated as [3]: ( ) θ x =, (1.5) U ( ) P(x) f = = 0, (1.6) Q(x) where P(x) and Q(x) are the differences between active and reactive power with their specified value. The solution of x is updated using Eq. (1.7): where ( ) θ J(x (v) (v) ) U (v) + P J = θ Q θ ( P(x (v) ) ) Q(x (v) = 0, (1.7) ) P U Q. (1.8) U Reference [1] gives detailed explanation of the N-R method application in power system analysis Gauss-Seidel Iteration Given the same system equation as Eq. (1.1), the Gauss-Seidel iteration (G-S) is based on the iteration scheme of Eq. (1.9): x (v+1) = f(x (v) ). (1.9) Given an initial estimate of x (0), a series of state values could be obtained using Eq. (1.9): x (1), x (2), x (3) If the solution converges, i.e., x (v) f(x (v) < ɛ when x v x, it can be written as x = f(x ). (1.10) Differences between power transmission and distribution systems According to the respective functions of power transmission and distribution systems, they differ in multiple aspects. Voltage level: the transmission system is used to carry electricity over long distances. It is at a higher voltage level in order to reduce losses. However, the distribution system is the final step of the delivery to end consumers and is operated at a lower voltage level.

11 CHAPTER 1. INTRODUCTION 4 Topology: a transmission system is usually meshed whereas a distribution system typically has a radial or weakly meshed network. Branch type: the transmission system is mainly composed of overhead lines, which have a lower R/X ratio. For a distribution system, the structure of both overhead lines and cables makes the R/X ratio higher. The above mentioned algorithms N-R and G-S are particularly useful in power transmission systems. That is because they are especially efficient and have a good convergence characteristic in dealing with meshed networks with low R/X ratios. However, in the case of a power distribution system, convergence problems make it necessary to find new possibilities to solve the power flow equations. There are two main categories of distribution power systems analysis algorithms. One is based on modified traditional methods N-R and G-S as in [5], [6], [7], [8]. The other way is the forward and backward sweep algorithm using Kirchhoff s laws or bi-quadratic equations [9], [10]. The forward and backward sweep method makes use of the ladder structure of a radial network and solves the power flow equations step by step. It avoids complex calculation of matrices and thus gets rid of convergence problems caused by high R/X ratio but needs extra effort when dealing with meshed networks. A detailed explanation of the sweeping algorithm is presented in Chapter Goal of the project In this semester thesis, a power flow computation method based on the voltage sweeping algorithm shall be implemented in the distribution system simulator. It is realized in Java. The computations shall be validated by comparing the results to an established power flow computation tool JPower [11](Java port of MATPOWER [12]). The performance (solution time for a power flow on a large distribution grid) shall be assessed and compared with the Newton-Raphson and the Gauss-Seidel techniques available in JPower. 1.4 Structure of the thesis In Chapter 2, the principle of the sweeping algorithm is explained, including different power flow equations and the way to deal with meshed networks. The model of distributed generators is also given. In Chapter 3, the sweeping algorithm we implemented in the project is introduced. In Chapter 4, the implementation results in Java are presented including the individual assessment on the sweeping algorithm and comparisons with JPower.

12 Chapter 2 Forward/Backward Sweep Approaches During the last few decades, a variety of different approaches based on the forward/backward sweep algorithm are used by researchers to get good convergence and fast calculation speed of power distribution systems. By avoiding solving simultaneous equations and large dimension matrices, the sweeping algorithm has the advantages of less computation effort and calculation time compared to the N-R and G-S methods. During the last several years, multiple sweep based approaches are developed to adapt to different power system network structures and load types. This chapter explains the principle of the forward and backward sweep algorithms. 2.1 Element ordering An element ordering process must be carried out to determine the calculation sequence in the forward and backward sweep. Here the commonly used branch and node oriented method is introduced [13]. Figure 2.1 is an example of an ordered network. As it shows, the network is divided into different layers starting from the root bus. Each branch is ordered only after all the branches in its upper layers have been ordered. For the forward sweep, the calculation starts from the root bus to the last ordered branch. For the backward sweep, the calculation is from the last ordered bus back to the root bus. 2.2 Load flow equations According to the different power flow equations used in the sweeping process, there are power summation method, current summation method and 5

13 CHAPTER 2. FORWARD/BACKWARD SWEEP APPROACHES 6 1 root bus Figure 2.1: Ordered network example admittance summation method[10], [14]. Here the first two approaches are introduced Power summation method Step 1: Backward sweep Consider the π model of a branch i in a distribution network in Figure 2.2, the series impedance is R i + jx i and the shunt admittance is y i. The power in the sending and receiving end are P s + jq s and P r + jq r respectively. P i +jq i and P i +jq i are the power flow after the shunt element in sending end and before the shunt element in receiving end respectively. Therefore, the relation between the powers in both sides can be written as [15]: P I s + jq I s P i + jq i R i jx i P i + jq i P I r + jq I r P F r + jq F r P L s P i + jq i y i y i + jq L 2 2 s P L r + jq L r Figure 2.2: π circuit model of a branch P i = P L r + P F r P I r, (2.1) Q i = Q L r + Q F r Q I r V 2 my i /2, (2.2) where the superscripts L, F and I in P and Q stand for load, flow and injection respectively. Load power P L is given before calculation. The active

14 CHAPTER 2. FORWARD/BACKWARD SWEEP APPROACHES 7 and reactive power flow through branch i can be formulated as, P i = P i P i 2 + Q 2 i + R i V 2 r Q i = Q 2 P i 2 + Q i i + X 2 i V 2 m, (2.3) V 2 k y i/2. (2.4) If the network is radial, the power injections are assumed to be zero in every iteration. For meshed networks, the calculation of power injection P I will be explained in the meshed network part. Eq. (2.1) (2.4) are calculated backward to get active and reactive power flow for every branch. Step 2: Forward sweep With active and reactive power values available in the backward sweep, the complex voltage can then be calculated in a forward sequence using Eq. (2.5). V r = V s I i Z i = V k S i V (R i + jx i ) k = V k P i jq i (R i + jx i ) V k = (V k P i R i + Q i X i ) j( P i X i Q i R i ), (2.5) V k V k where S i = P i + jq i, P i = P i, Q i = Q i + Vk 2y i/2. Eq. (2.5) is an application of Kirchhoff s Voltage Law. Since the complex voltage of the slack bus is specified, voltage of other buses can be attained in a forward sweep calculation. The backward and forward sweep equations are calculated iteratively until it converges Kirchhoff s Law based method This approach [10] is a direct application of Kirchhoff s Current Law (KCL) and Kirchhoff s Voltage Law (KVL). Given the voltage of the root bus and an initial voltage guess of other buses, the algorithm takes three steps for each iteration: Step 1: Nodal current calculation: The current injection at each node i is calculated using Eq. (2.6): I (k) i = (S i /V (k) i ) y i V (k 1) i, i = 1, 2,..., n (2.6) where S i is the power injection at node i, V (k) i is the voltage of node i calculated from iteration k, y i is the shunt element of node i. Step 2: Backward sweep:

15 CHAPTER 2. FORWARD/BACKWARD SWEEP APPROACHES 8 Starting from the last ordered branch, current flow J l in branch l is calculated using Eq. (2.7): J (k) l = I lr + J lr, l = b, b 1,..., 1 (2.7) where I lr is the current injection of node lr calculated from step 1, J lr is the currents in branches emanating from node lr. Step 3: Forward Sweep: Starting from the root bus, the node voltages are updated using Eq. (2.8). V (k) lr = V (k) ls Z l J (k) l, l = 1, 2,..., b (2.8) where ls and lr denote the sending and receiving end of branch l, Z l is the series impedance of branch l. The element ordering process is the same as in the power summation method. There are also other forward and backward sweep methods such as [14], [16], [17]. Reference [14] proposed an admittance summation method which is quite efficient for constant admittance loads. In [16], a simplified forward and backward method is presented which has better performance than the basic sweeping algorithm. Reference [17] gives a comprehensive review and comparison of these sweep based approaches. 2.3 Weakly meshed networks Power distribution systems are radial or weakly meshed in reality. Radial networks can be solved directly from the above mentioned sweeping equations. For meshed networks, fictitious nodes are added to each loop thus the loops are broken and the network is converted to a radial one. For loops in the network, breakpoints are chosen in the ordering process. The last ordered branch in a loop is treated as a link and the breakpoints are added in every link. The PV bus is treated as a special kind of loop [15]: a breakpoint is added at the PV bus and it is assumed that the PV bus is connected to a fictitious bus of which the active power and voltage magnitude are specified. Figure 2.3 illustrates the process of adding breakpoints in the loop and PV bus. l denotes the link of the loop and l 1 and l 2 are the two ends of the breakpoint. After the conversion of the network, the interrupted current or power flow in the breakpoints can be replaced by current or power injection in the two ends of the breakpoints without affecting the network operating condition. Luo et al. proposed a compensation based power flow method [13]. It

16 CHAPTER 2. FORWARD/BACKWARD SWEEP APPROACHES 9 root bus PV bus l l 2 l 1 Figure 2.3: Network illustrating adding breakpoints in loops and PV nodes uses nodal current injections to compensate for the power flows in the breakpoints. The current injection method is illustrated in Figure 2.4. This approach is suitable for Kirchhoff s Law based sweeping algorithm in which nodal currents are calculated in each iteration. The current injection can be added directly to the calculated nodal [13]. Reference [10] improves the former method in that it uses active and reactive power as flow variables rather than complex currents thus simplifies the treatment of PV buses. The power injection method is illustrated in Figure 2.5. This approach is suitable for power summation method which active and reactive power are updated in each iteration. J j Breakpoint j J j J j Figure 2.4: Breakpoint current injection 2.4 Distributed generators modeling With the development of renewable energy and smartgrids, distributed generators become rather common and should not be omitted in distribution system analysis. They are classified as PQ or PV nodes thus different ways of modeling distributed generators have been used. If modeled as a PQ node, it is identical to a negative constant power load.

17 CHAPTER 2. FORWARD/BACKWARD SWEEP APPROACHES 10 Rest of the network Rest of the network k P, Q k k P, Q P, Q Figure 2.5: The breakpoint power injection method If modeled as a PV node in the network, the treatment is similar to that of a loop. Figure 2.6 shows the breakpoint of a PV bus. Rest of the network j Rest of the network P s, Q j P s, Q V j s Figure 2.6: PV bus breakpoint 2.5 Transformers modeling The single-phase transformer model is shown in Figure 2.7. The series impedance is Z t and the shunt element is Y m. The subscripts p and s denote primary and secondary side respectively. V p V s I Z t p I s Y m Figure 2.7: Single-phase transformer model

18 CHAPTER 2. FORWARD/BACKWARD SWEEP APPROACHES Convergence criteria Different criteria are used to check the convergence of the sweeping algorithm [13], [18], [19]. Reference [13] compares maximum active and reactive power mismatch between successive iterations to convergence criterion. Others such as [18] uses voltage differences in successive iterations to check convergence, which is explained in Eq. (2.9): V k+1 V k < ɛ. (2.9) For meshed networks or networks with PV nodes, the voltage mismatches in breakpoints can be used to check convergence: V j = V j1 V j2 < ɛ, (2.10) where j denotes a breakpoint and j 1 and j 2 are the two ends of the breakpoint. For the breakpoint of a PV node, the difference between the node voltage and its specified voltage magnitude is checked: V j = V j1 V s < ɛ. (2.11) If the successive power or voltage differences or voltage mismatches in breakpoints are below the pre-determined convergence criterion, the algorithm has converged and the calculation stops. For networks with loops and PV nodes, it is not enough to use successive voltage differences to check convergence because the voltages in the two ends of breakpoints might still mismatch even if the voltages in all buses has converged. Therefore, the breakpoints voltage mismatches are crucial to check convergence of a meshed network. Moreover, the two convergence criteria can be combined to obtain a faster and more robust sweeping algorithm. Reference [19] gives an adaptive power flow method where the successive voltage differences are checked to converge before breakpoints voltage mismatches are examined. Both the two convergence criteria are used to get faster convergence.

19 Chapter 3 Algorithm Implementation In this project, the implemented algorithm is the compensation based voltage sweep approach described in [10], [15], [20]. It deals with balanced distribution networks which are weakly meshed and contain distributed generators. Only one slack bus is assumed in the network. The branches are modeled as π model, thus shunt capacitance is considered. Constant power loads are assumed in the calculation. The parameters that need to be known before calculation are active and reactive power loads in PQ buses, slack bus voltage magnitude and angle as well as specified voltage magnitude and active power in the distributed generators. The flow-chart of the proposed method is shown in Figure 3.1. The procedure of this algorithm is explained in several parts in this chapter according to their implementation order. 3.1 Element ordering The formation of a suitable model of the electrical network is the first step of network analysis. Therefore, the element ordering process described in Chapter 2 needs to be conducted before implementing the forward and backward sweep algorithm. Before introducing the detailed process of the ordering process, some basic terminologies must be explained. In the network, line segments are called elements and their ends are called nodes. A connected subgraph containing all nodes but without closed path is called a tree. The elements of a tree are called branches. Other connecting elements which are not included in the tree are called links. Basic loop is the loop path which contains only one link. As in Reference [21], the network elements are separated into two subsets: branches and links. In the ordering process, every element is checked in the following three cases, a) none of the element nodes are in the list of ordered nodes; 12

20 CHAPTER 3. ALGORITHM IMPLEMENTATION 13 Read in data Element ordering Loop impedance matrix construction Breakpoint power injection calculations Power summation (backward sweep); Node voltage calculation (forward sweep); Breakpoint voltage calculation Incremental changes of breakpoint current calculation NO Converged? YES Print results Figure 3.1: Flowchart of the proposed algorithm

21 CHAPTER 3. ALGORITHM IMPLEMENTATION 14 b) only one of the element nodes is in the list of ordered nodes; c) both element nodes are in the list of ordered nodes. Case a changes nothing, case b denotes a branch and the element takes the next ordering element position with the other node takes the next ordering nodes position. Case c suggests a link and it takes the next element ordering position. After checking all the elements in the network, fictitious links are added if there are PV nodes in the network. Two arrays are obtained after the element ordering process, which are denoted as NS and NR. They contain the corresponding sending and receiving nodes of each branch and link. The NS and NR arrays are preparations for the sweeping process and determine the calculation sequence. 3.2 Loop impedance matrix This step is only necessary when there are loops or PV nodes in the network. Since breakpoints are added in loops, current or power injections are needed to compensate for the current flow in the breakpoints. Power injection is calculated using the incremental changes of breakpoint current I l and breakpoint voltage V l. Therefore, in order to get the power injections P inj, loop impedance matrix Z must be constructed for every breakpoint. The relation of breakpoint power injection, breakpoint current and voltage are explained in Eq. (3.1) (3.3). P inj = I l V l, (3.1) Z I l = V l, (3.2) V l = V lr V ls, (3.3) where lr and ls denotes the receiving and sending end of breakpoint l. Before introducing the way to get loop impedance matrix, basic loop incidence matrix C is constructed and the loop impedance matrix is deducted accordingly. The elements of basic loop incidence matrix are: c ij = 1 if the ith element is incident to and oriented in the same direction as the jth basic loop; c ij = 1 if the ith element is incident to and oriented in the opposite direction as the jth basic loop; c ij = 0 if the ith element is not incident to the jth basic loop. The loop impedance matrix Z is constructed based on the loop incidence matrix. The elements of matrix Z are: z ii, which is the diagonal element, is the sum of all the branches impedance which form the loop; z ij, which is the off-diagonal element, is the sum of all the mutual branches impedance of basic loop i and j, the impedance takes the opposite sign if loop i and j have opposite orientation at the mutual branches.

22 CHAPTER 3. ALGORITHM IMPLEMENTATION Voltage sweep calculation The power summation method is used in this step. The sending real and reactive power is added to the receiving power using a backward sweep calculation. Based on the introduction of power summation method in Chapter 2, Eq. (2.1) (2.4) are used to do the backward calculation and Eq. (2.5) is used in forward sweep. More precisely, Eq. (3.4) (3.9) are used to get the real and imaginary part of complex voltage. V r = V s (R s r + jx s r ) P s jq s V s V r = V s (1 P sr s r + Q s X s r V 2 s Define a and b as, a = 1 P sr s r + Q s X s r V 2 s b = Q sr s r P s X s r V 2 s, (3.4) + j Q sr s r P s X s r Vs 2 ). (3.5), (3.6). (3.7) Then the real and imaginary part of receiving voltage can be calculated using Eq. (3.8) (3.9), Re{V r } = are{v s } bim{v s }, (3.8) Im{V r } = br{v s } + aim{v s }. (3.9) 3.4 Breakpoint power injection After the sweeping process, complex voltages of each bus are known and the breakpoints power injections can be calculated using the following equations, S mr = V ms + V mr (C m jd m ), (3.10) 2 S ms = S mr. (3.11) Since the active power of a PV bus is specified, only reactive power injection is updated: V 2 ms Q ms = D m Re{V ms }. (3.12) To get the breakpoint current C m + jd m, loop impedance matrix Z and breakpoint voltage difference are used in Eq. (3.13). [ ] [ ] [ ] X R D E =, (3.13) R X C F

23 CHAPTER 3. ALGORITHM IMPLEMENTATION 16 where R and X are the real and imaginary part of loop impedance matrix Z, C and D are the real and imaginary part of incremental change of complex breakpoint current, E and F are the real and imaginary part of complex breakpoint voltage difference. At breakpoint l, the breakpoint complex voltage difference is: For the PV nodes, E l + j F = V lr V ls. (3.14) E l = ( V sp ls 1)Re{V V ls }, (3.15) ls where V sp ls is the specified value of PV nodes voltage magnitude. Thus, the power injection of every breakpoint can be updated using the above equations. 3.5 Convergence criteria In each iteration, the above mentioned steps are cycled until the results get converged. For radial networks, the difference of successive voltage is used to check convergence. For meshed networks as well as networks with PV Nodes, the breakpoints voltage mismatches are used to check convergence. The maximum successive voltage difference among all buses or maximum voltage mismatch in breakpoints are compared to the pre-determined convergence criterion. Once it is below the convergence criteria, the calculation stops.

24 Chapter 4 Implementation results The algorithm introduced in Chapter 3 was implemented in Java. In this chapter, the convergence behavior of the sweeping algorithm is assessed using different network topologies. Besides, implementation results are compared with the G-S and N-R methods in JPower. First of all, an individual assessment on the sweeping algorithm is made using a 29-bus network. The topology is given in Appendix A. As shown in Figure A.2, there are in total 29 buses with 2 loops and 3 PV buses in the network. 4.1 Assessment on the sweeping algorithm Voltage mismatches after each iteration For radial networks, the successive voltage differences for each bus are usually used to check convergence of the sweeping algorithm. By removing the loops and PV nodes in the 29-bus network, the convergence behavior of the sweeping algorithm is assessed for a radial network. The successive voltage differences for all buses are calculated and plotted in Figure 4.1. As in Figure 4.1, the successive voltage differences in all buses are decreasing with each iteration. When the convergence criterion is set to 10 7, the sweeping algorithm converges in 2 iterations. Assessment of the sweeping algorithm with meshed networks is made using the original 29-bus network. The voltage mismatches in the five breakpoints are calculated for each iteration and plotted in Figure 4.2. As in Figure 4.2, the voltage mismatches in the breakpoints are decreasing with each iteration. Once all the mismatches are within the convergence criteria, the calculation stops. When the convergence criterion is set to 10 7, the sweeping algorithm converges in 11 iterations. 17

25 CHAPTER 4. IMPLEMENTATION RESULTS Successive voltage difference (p.u.) Iteration number Figure 4.1: Successive voltage difference for all buses Voltage mismatch (p.u.) 3.0x x10-3 loop 1 loop 2 2.0x10-3 PV 1 1.5x10-3 PV 2 PV 3 1.0x x x x x x x x Iteration number Figure 4.2: Voltage mismatches in breakpoints

26 CHAPTER 4. IMPLEMENTATION RESULTS Influence of convergence criteria The convergence criteria determine how far the calculations are from the true value. Therefore, the effect of different convergence criterion is analyzed using its influence on iteration number and runtime of the sweeping algorithm. Figure 4.3 shows results of increasing runtime and iteration number of the sweeping algorithm under decreasing convergence criteria. Runtime (s) Iteration number 2.1x x x x x x x x x x E-5 1E-6 1E-7 1E-8 Convergence criteria Figure 4.3: Runtime and iteration number under different convergence criteria Influence of loops and PV nodes numbers Known from the principle of the sweeping algorithm in Chapter 2, loops and PV nodes are treated as breakpoints and need extra treatment. Therefore, the sweeping algorithm needs more effort dealing with more loops and PV nodes. This is illustrated by the following process: by adding or subtracting loops and PV nodes in the 29-bus network, the runtime and iteration number of the sweeping algorithm are calculated. Figure 4.4 shows increasing runtime and iteration number with more PV nodes in the network. Figure 4.5 shows increasing runtime and iteration number with more loops in the network. Generally speaking, the iteration number and runtime of the sweeping algorithm are increasing with more loops and PV node added since they increase the complexity of the network. However, the relationship is not necessarily a strictly positive correlation because the position of the loops or PV nodes also count. This results from the element ordering process of the sweeping algorithm. The network topology determines the calculation

27 CHAPTER 4. IMPLEMENTATION RESULTS 20 Runtime (s) 4.0x x x x x x10-4 Iteration number Loop number Figure 4.4: Runtime and iteration number with increasing loops Runtime (s) 2.8x x x x x x x x10-4 Iteration number PV node number Figure 4.5: Runtime and iteration number with increasing PV nodes

28 CHAPTER 4. IMPLEMENTATION RESULTS 21 sequence in the backward and forward sweeping process thus has an influence on the final iteration number and runtime Influence of PV node position To illustrate the influence of PV node position, only one PV bus is put in the 29-bus network and calculations are made with it in different positions. The iteration number of each calculation is recorded. As in Figure 4.6, the influence of PV node position can be shown by the different iteration number the sweeping algorithm used to do the calculation. (No result is there for bus 28 because it is the slack bus.) Iteration Number PV node position Figure 4.6: Iteration number for different PV node position 4.2 Comparison with the Gauss-Seidel and the Newton- Raphson methods In this part, the performance comparison among the sweeping algorithm, the G-S method and the N-R method is presented. Three systems are used to assess the convergence behaviors of the algorithms. The characteristics of the three grid topologies are listed in Table 4.1 and the network topologies are given in Appendix A.

29 CHAPTER 4. IMPLEMENTATION RESULTS Runtime comparison Each algorithm is run for 1000 times and Table 4.2 gives average runtime for the three networks respectively. Figure 4.7 compares the runtime of the three algorithms. Table 4.1: Characteristics of the benchmark networks Network Bus number Loops PV nodes Transformers Table 4.2: Runtime comparison of different methods Method\Network 14-bus 29-bus 106-bus Sweeping Algorithm 1.58e-4 s 6.86e-5 s 8.76e-5 s Newton-Raphson 1.82e-4 s 1.32e-4 s 2.37e-3 s Gauss-Seidel 7.92e-4 s 3.89e-3 s 3.26e-1 s 3.50x x10-1 Sweeping algorithm N-R G-S 2.5x10-4 Runtime (s) 2.0x x x x bus 29-bus 106-bus Different bus system Figure 4.7: Runtime comparison As shown in Figure 4.7, the sweeping algorithm uses the least runtime for all networks. More concrete comparison is given in Table 4.2. Comparing average runtime with the network characteristics, conclusion can be made that the time-saving advantage of the sweeping algorithm is more obvious

30 CHAPTER 4. IMPLEMENTATION RESULTS 23 for networks with less loops and PV nodes. The reason of that is easy to explain: for networks with more loops or PV nodes, more breakpoints are added thus increasing effort is needed, which results in more runtime in the calculation Calculation results comparison The voltage magnitude differences between the sweeping algorithm and the G-S and the N-R methods are calculated under different convergence criteria. For the following results, the convergence criteria of the three algorithms are equally set. Figure 4.8 shows voltage magnitude differences between the sweeping algorithm and the N-R method. Figure 4.9 shows voltage magnitude differences between the sweeping algorithm and the G-S method. The results show that the solutions of the three algorithms get closer with smaller convergence criteria and the solution differences are mostly under the convergence criteria Voltage magnitude difference (p.u.) Bus number Figure 4.8: Voltage magnitude differences between the sweeping algorithm and the N-R method

31 CHAPTER 4. IMPLEMENTATION RESULTS Voltage magnitude difference (p.u.) Bus number Figure 4.9: Voltage magnitude differences between the sweeping algorithm and the G-S method

32 Chapter 5 Conclusions In the thesis, a backward and forward voltage sweep algorithm is implemented in Java. The algorithm is validated using different network examples and comparisons with established power flow techniques (N-R and G-S) in JPower were made. The assessment of the sweeping algorithm using a 29-bus network shows that the voltage differences between successive iterations and voltage mismatches in breakpoints are decreasing with the iteration process. It needs more effort when dealing with an increasing number of loops and PV nodes which can be demonstrated by its increasing iteration number and runtime. Different convergence criteria and PV node position also have an influence on the solution. The comparison results show that the sweeping algorithm has faster convergence speed than the N-R and the G-S methods. The time-saving advantage is more obvious especially for networks with less loops or PV nodes. Since power distribution systems are often radial or weakly meshed, the sweeping algorithm shows its convergence efficiency in analyzing power distribution systems compared to N-R and G-S. 25

33 Appendix A Benchmark networks Figure A.1: 14-bus network 26

34 APPENDIX A. BENCHMARK NETWORKS 27 Figure A.2: 29-bus network

35 APPENDIX A. BENCHMARK NETWORKS 28 Figure A.3: 106-bus network

36 Bibliography [1] William F Tinney and Clifford E Hart. Power flow solution by Newton s method. Power Apparatus and Systems, IEEE Transactions on, (11): , [2] S Suresh Reddy, S Sarat Kumar, and SVJ Kumar. Load flow solution for ill-conditioned power systems using runge-kutta and iwamoto methods with facts devices. Journal of Theoretical & Applied Information Technology, 5(6), [3] Göran Andersson. Power system analysis. lecture notes, ETH Zurich. [4] Tjalling J Ypma. Historical development of the Newton-Raphson method. SIAM review, 37(4): , [5] Fan Zhang and Carol S Cheng. A modified Newton method for radial distribution system power flow analysis. Power Systems, IEEE Transactions on, 12(1): , [6] Vander Menengoy da Costa, Nelson Martins, and Jose Luiz R Pereira. Developments in the Newton Raphson power flow formulation based on current injections. Power Systems, IEEE Transactions on, 14(4): , [7] Paulo AN Garcia, Jose Luiz R Pereira, Sandoval Carneiro Jr, Vander M da Costa, and Nelson Martins. Three-phase power flow calculations using the current injection method. Power Systems, IEEE Transactions on, 15(2): , [8] Jen-Hao Teng. A modified Gauss Seidel algorithm of three-phase power flow analysis in distribution networks. International journal of electrical power & energy systems, 24(2):97 102, [9] GW Chang, SY Chu, and HL Wang. An improved backward/forward sweep load flow algorithm for radial distribution systems. Power Systems, IEEE Transactions on, 22(2): ,

37 BIBLIOGRAPHY 30 [10] Guang-Xiang Luo and Adam Semlyen. Efficient load flow for large weakly meshed networks. Power Systems, IEEE Transactions on, 5(4): , [11] Jpower website: [12] MATPOWER website: [13] Dariush Shirmohammadi, HW Hong, A Semlyen, and GX Luo. A compensation-based power flow method for weakly meshed distribution and transmission networks. Power Systems, IEEE Transactions on, 3(2): , [14] Dragoslav Rajičić and Rubin Taleski. Two novel methods for radial and weakly meshed network analysis. Electric power systems research, 48(2):79 87, [15] MH Haque. Efficient load flow method for distribution systems with radial or mesh configuration. IEE Proceedings-Generation, Transmission and Distribution, 143(1):33 38, [16] GW Chang, SY Chu, and HL Wang. A simplified forward and backward sweep approach for distribution system load flow analysis. In Power System Technology, PowerCon International Conference on, pages 1 5. IEEE, [17] Ulas Eminoglu and M Hakan Hocaoglu. Distribution systems forward/backward sweep-based power flow algorithms: a review and comparison study. Electric Power Components and Systems, 37(1):91 110, [18] Kultar Deep Singh and Smarajit Ghosh. A new efficient method for load-flow solution for radial distribution networks. Przeglad Elektrotechniczny, 87:66 73, [19] Y Zhu and Kevin Tomsovic. Adaptive power flow method for distribution systems with dispersed generation. Power Delivery, IEEE Transactions on, 17(3): , [20] Dragoslav Rajicic, Risto Ackovski, and Rubin Taleski. Voltage correction power flow. Power Delivery, IEEE Transactions on, 9(2): , [21] Jos Arrillaga and CP Arnold. Computer analysis of power systems. Wiley New York, 1990.

An efficient power flow algorithm for distribution systems with polynomial load

An efficient power flow algorithm for distribution systems with polynomial load An efficient power flow algorithm for distribution systems with polynomial load Jianwei Liu, M. M. A. Salama and R. R. Mansour Department of Electrical and Computer Engineering, University of Waterloo,

More information

Power Flow Studies for Radial and Mesh Distribution System

Power Flow Studies for Radial and Mesh Distribution System Power Flow Studies for Radial and Mesh Distribution System Mr.Tanveer HusainShaikhFeroz Khatik #1, Mr.M. M. Khan #2, Mr. M.M. Ansari #3 #1 M.E (EPS) (Student), #2 M.E (EPS), #3 Assistant Professor, #123

More information

AS the power distribution networks become more and more

AS the power distribution networks become more and more IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 21, NO. 1, FEBRUARY 2006 153 A Unified Three-Phase Transformer Model for Distribution Load Flow Calculations Peng Xiao, Student Member, IEEE, David C. Yu, Member,

More information

Load Flow Analysis for Radial Distribution Networks Using Backward/Forward Sweep Method

Load Flow Analysis for Radial Distribution Networks Using Backward/Forward Sweep Method Open Access Journal Journal of Sustainable Research in Engineering Vol. 3 (3) 2016, 82-87 Journal homepage: http://sri.jkuat.ac.ke/ojs/index.php/sri Load Flow Analysis for Radial Distribution Networks

More information

ANALYSIS OF REAL POWER ALLOCATION FOR DEREGULATED POWER SYSTEM MOHD SAUQI BIN SAMSUDIN

ANALYSIS OF REAL POWER ALLOCATION FOR DEREGULATED POWER SYSTEM MOHD SAUQI BIN SAMSUDIN ANALYSIS OF REAL POWER ALLOCATION FOR DEREGULATED POWER SYSTEM MOHD SAUQI BIN SAMSUDIN This thesis is submitted as partial fulfillment of the requirements for the award of the Bachelor of Electrical Engineering

More information

POWER FLOW SOLUTION METHODS FOR ILL- CONDITIONED SYSTEMS

POWER FLOW SOLUTION METHODS FOR ILL- CONDITIONED SYSTEMS 104 POWER FLOW SOLUTION METHODS FOR ILL- CONDITIONED SYSTEMS 5.1 INTRODUCTION: In the previous chapter power flow solution for well conditioned power systems using Newton-Raphson method is presented. The

More information

Review of Power Flow Studies on Distribution Network with Distributed Generation

Review of Power Flow Studies on Distribution Network with Distributed Generation IEEE PEDS 2011, Singapore, 5-8 December 2011 Review of Power Flow Studies on Distribution Network with Distributed Generation K. Balamurugan and Dipti Srinivasan National University of Singapore kbalahari@yahoo.com.sg,

More information

Initialization of Unbalanced Radial Distribution Systems for Small Signal Stability Analysis

Initialization of Unbalanced Radial Distribution Systems for Small Signal Stability Analysis 1 Initialization of Unbalanced Radial Distribution Systems for Small Signal Stability Analysis Javad Khazaei, Student Member, IEEE, Zhixin Miao, Senior Member, IEEE, Lakshan Piyasinghe, Student Member,

More information

Full Length Research Article

Full Length Research Article Available online at http://www.journalijdr.com International Journal of DEVELOPMENT RESEARCH ISSN: 2230-9926 International Journal of Development Research Vol. 4, Issue, 3, pp. 537-545, March, 204 Full

More information

760 IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 25, NO. 2, MAY 2010

760 IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 25, NO. 2, MAY 2010 760 IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 25, NO. 2, MAY 2010 A Robust Multiphase Power Flow for General Distribution Networks Murat Dilek, Francisco de León, Senior Member, IEEE, Robert Broadwater,

More information

Identification of weak buses using Voltage Stability Indicator and its voltage profile improvement by using DSTATCOM in radial distribution systems

Identification of weak buses using Voltage Stability Indicator and its voltage profile improvement by using DSTATCOM in radial distribution systems IOSR Journal of Electrical And Electronics Engineering (IOSRJEEE) ISSN : 2278-1676 Volume 2, Issue 4 (Sep.-Oct. 2012), PP 17-23 Identification of weak buses using Voltage Stability Indicator and its voltage

More information

Unbalanced Load Flow Analysis for Distribution Network with Solar PV Integration

Unbalanced Load Flow Analysis for Distribution Network with Solar PV Integration Unbalanced Load Flow Analysis for Distribution Network with Solar PV Integration B.Muruganantham Dept. of Electrical and Electronics Engineering Pondicherry Engineering College Puducherry - 605 014, India.

More information

Optimal Sizing and Placement of DG in a Radial Distribution Network using Sensitivity based Methods

Optimal Sizing and Placement of DG in a Radial Distribution Network using Sensitivity based Methods Optimal Sizing and Placement of DG in a Radial Distribution Network using Sensitivity based Methods Nitin Singh 1, Smarajit Ghosh 2, Krishna Murari 3 EIED, Thapar university, Patiala-147004, India Email-

More information

A NEW METHOD FOR LOAD-FLOW SOLUTION OF RADIAL DISTRIBUTION NETWORKS

A NEW METHOD FOR LOAD-FLOW SOLUTION OF RADIAL DISTRIBUTION NETWORKS A NEW METHOD FOR LOAD-FLOW SOLUTION OF RADIAL DISTRIBUTION NETWORKS Thesis submitted in partial fulfillment of the requirements for the award of degree of Master of Engineering in Power Systems & Electric

More information

IMPROVED MEASUREMENT PLACEMENT AND TOPOLOGY PROCESSING IN POWER SYSTEM STATE ESTIMATION. A Dissertation YANG WU

IMPROVED MEASUREMENT PLACEMENT AND TOPOLOGY PROCESSING IN POWER SYSTEM STATE ESTIMATION. A Dissertation YANG WU IMPROVED MEASUREMENT PLACEMENT AND TOPOLOGY PROCESSING IN POWER SYSTEM STATE ESTIMATION A Dissertation by YANG WU Submitted to the Office of Graduate Studies of Texas A&M University in partial fulfillment

More information

Voltage Controller for Radial Distribution Networks with Distributed Generation

Voltage Controller for Radial Distribution Networks with Distributed Generation International Journal of Scientific and Research Publications, Volume 4, Issue 3, March 2014 1 Voltage Controller for Radial Distribution Networks with Distributed Generation Christopher Kigen *, Dr. Nicodemus

More information

SIMPLE ROBUST POWER FLOW METHOD FOR RADIAL DISTRIBUTION SYSTEMS

SIMPLE ROBUST POWER FLOW METHOD FOR RADIAL DISTRIBUTION SYSTEMS SIMPLE ROBUST POWER FLOW METHOD FOR RADIAL DISTRIBUTION SYSTEMS 1 NITIN MALIK, 2 SHUBHAM SWAPNIL, 3 JAIMIN D. SHAH, 4 VAIBHAV A. MAHESHWARI 1 ITM University, Gurgaon, India, 2 School of Electrical Engg,

More information

OPTIMAL SITING AND SIZING OF DISTRIBUTED GENERATION IN RADIAL DISTRIBUTION NETWORKS

OPTIMAL SITING AND SIZING OF DISTRIBUTED GENERATION IN RADIAL DISTRIBUTION NETWORKS OPTIMAL SITING AND SIZING OF DISTRIBUTED GENERATION IN RADIAL DISTRIBUTION NETWORKS Ms. Shilpa Kotwal, Ms. Amandeep Kaur Research Scholar, E-Max Institute of Engineering and Technology, Ambala, Haryana,

More information

Optimal PMU Placement in Power System Considering the Measurement Redundancy

Optimal PMU Placement in Power System Considering the Measurement Redundancy Advance in Electronic and Electric Engineering. ISSN 2231-1297, Volume 4, Number 6 (2014), pp. 593-598 Research India Publications http://www.ripublication.com/aeee.htm Optimal PMU Placement in Power System

More information

FOUR TOTAL TRANSFER CAPABILITY. 4.1 Total transfer capability CHAPTER

FOUR TOTAL TRANSFER CAPABILITY. 4.1 Total transfer capability CHAPTER CHAPTER FOUR TOTAL TRANSFER CAPABILITY R structuring of power system aims at involving the private power producers in the system to supply power. The restructured electric power industry is characterized

More information

Chapter 8. Constant Current Sources

Chapter 8. Constant Current Sources Chapter 8 Methods of Analysis Constant Current Sources Maintains same current in branch of circuit Doesn t matter how components are connected external to the source Direction of current source indicates

More information

Incorporation of Self-Commutating CSC Transmission in Power System Load-Flow

Incorporation of Self-Commutating CSC Transmission in Power System Load-Flow Queensland University of Technology From the SelectedWorks of Lasantha Bernard Perera Spring September 25, 2005 Incorporation of Self-Commutating CSC Transmission in Power System Load-Flow Lasantha B Perera,

More information

A Two Bus Equivalent Method for Determination of Steady State Voltage Stability Limit of a Power System

A Two Bus Equivalent Method for Determination of Steady State Voltage Stability Limit of a Power System A Two Bus Equivalent Method for Determination of Steady State Voltage Stability Limit of a Power System B. Venkata Ramana, K. V. S. R. Murthy, P.Upendra Kumar, V.Raja Kumar. Associate Professor, LIET,

More information

Optimal Voltage Control using Singular Value Decomposition of Fast Decoupled Load Flow Jacobian

Optimal Voltage Control using Singular Value Decomposition of Fast Decoupled Load Flow Jacobian Optimal Voltage Control using Singular Value Decomposition of Fast Decoupled Load Flow Jacobian Talha Iqbal, Ali Dehghan Banadaki, Ali Feliachi Lane Department of Computer Science and Electrical Engineering

More information

1 Introduction General Background The New Computer Environment Transmission System Developments Theoretical Models and Computer Programs

1 Introduction General Background The New Computer Environment Transmission System Developments Theoretical Models and Computer Programs Modeling Techniques in Power Systems 1 General Background The New Computer Environment Transmission System Developments Theoretical Models and Computer Programs 2 Transmission Systems Linear Transformation

More information

OPTIMAL PLACEMENT OF UNIFIED POWER QUALITY CONDITIONER IN DISTRIBUTION SYSTEMS USING PARTICLE SWARM OPTIMIZATION METHOD

OPTIMAL PLACEMENT OF UNIFIED POWER QUALITY CONDITIONER IN DISTRIBUTION SYSTEMS USING PARTICLE SWARM OPTIMIZATION METHOD OPTIMAL PLACEMENT OF UNIFIED POWER QUALITY CONDITIONER IN DISTRIBUTION SYSTEMS USING PARTICLE SWARM OPTIMIZATION METHOD M. Laxmidevi Ramanaiah and M. Damodar Reddy Department of E.E.E., S.V. University,

More information

Aggregated Rooftop PV Sizing in Distribution Feeder Considering Harmonic Distortion Limit

Aggregated Rooftop PV Sizing in Distribution Feeder Considering Harmonic Distortion Limit Aggregated Rooftop PV Sizing in Distribution Feeder Considering Harmonic Distortion Limit Mrutyunjay Mohanty Power Research & Development Consultant Pvt. Ltd., Bangalore, India Student member, IEEE mrutyunjay187@gmail.com

More information

POWER SYSTEM II LAB MANUAL

POWER SYSTEM II LAB MANUAL POWER SYSTEM II LAB MANUAL (CODE : EE 692) JIS COLLEGE OF ENGINEERING (An Autonomous Institution) Electrical Engineering Department Kalyani, Nadia POWER SYSTEM II CODE : EE 692 Contacts :3P Credits : 2

More information

Performance Analysis on Transmission Line for Improvement of Load Flow

Performance Analysis on Transmission Line for Improvement of Load Flow Performance Analysis on Transmission Line for Improvement of Load Flow YaMinSuHlaing Department of Electrical Power Engineering Mandalay Technological University, Mandalay, Myanmar Yaminsuhlaing.yso@gmail.com

More information

R10. III B.Tech. II Semester Supplementary Examinations, January POWER SYSTEM ANALYSIS (Electrical and Electronics Engineering) Time: 3 Hours

R10. III B.Tech. II Semester Supplementary Examinations, January POWER SYSTEM ANALYSIS (Electrical and Electronics Engineering) Time: 3 Hours Code No: R3 R1 Set No: 1 III B.Tech. II Semester Supplementary Examinations, January -14 POWER SYSTEM ANALYSIS (Electrical and Electronics Engineering) Time: 3 Hours Max Marks: 75 Answer any FIVE Questions

More information

STATCOM Control of Ill-Conditioned Power Systems Using Dogleg Trust-Region Algorithm

STATCOM Control of Ill-Conditioned Power Systems Using Dogleg Trust-Region Algorithm Advance in Electronic and Electric Engineering. ISSN 2231-1297, Volume 3, Number 3 (2013), pp. 311-320 Research India Publications http://www.ripublication.com/aeee.htm STATCOM Control of Ill-Conditioned

More information

Voltage Balancing for Bipolar DC Distribution Grids: A Power Flow based Binary Integer Multi-Objective

Voltage Balancing for Bipolar DC Distribution Grids: A Power Flow based Binary Integer Multi-Objective 1 Voltage Balancing for Bipolar DC Distribution Grids: A Power Flow based Binary Integer Multi-Objective Optimization Approach Benjamin Si Hao Chew, Student Member, IEEE, Yan Xu, Member, IEEE, and Qiuwei

More information

Power Quality Improvement of Large Power System Using a Conventional Method

Power Quality Improvement of Large Power System Using a Conventional Method Engineering, 2011, 3, 823-828 doi:10.4236/eng.2011.38100 Published Online August 2011 (http://www.scirp.org/journal/eng) Power Quality Improvement of arge Power System Using a Conventional Method azmus

More information

REQUIREMENTS OF STATE ESTIMATION IN SMART DISTRIBUTION GRID

REQUIREMENTS OF STATE ESTIMATION IN SMART DISTRIBUTION GRID 3 rd International Conference on Electricity Distriution Lyon, 5-8 June 05 Paper 09 REQUIREMENTS OF STATE ESTIMATION IN SMART DISTRIBUTION GRID Anggoro PRIMADIANTO Wei Ting LIN David HUANG Chan-Nan LU

More information

Level 6 Graduate Diploma in Engineering Electrical Energy Systems

Level 6 Graduate Diploma in Engineering Electrical Energy Systems 9210-114 Level 6 Graduate Diploma in Engineering Electrical Energy Systems Sample Paper You should have the following for this examination one answer book non-programmable calculator pen, pencil, ruler,

More information

Determination of Smart Inverter Power Factor Control Settings for Distributed Energy Resources

Determination of Smart Inverter Power Factor Control Settings for Distributed Energy Resources 21, rue d Artois, F-758 PARIS CIGRE US National Committee http : //www.cigre.org 216 Grid of the Future Symposium Determination of Smart Inverter Power Factor Control Settings for Distributed Energy Resources

More information

DISTRIBUTION SYSTEM ANALYSIS

DISTRIBUTION SYSTEM ANALYSIS Politecnico di Torino Dipartimento di Ingegneria Elettrica DISTRIBUTION SYSTEM ANALYSIS Prof. Gianfranco Chicco Lecture at the Technical University Gh. Asachi, Iaşi, Romania 5 October Copyright Gianfranco

More information

IEEE, ISBN

IEEE, ISBN Mumtaz, Faisal and Syed, M. H. and Al Hosani, Mohamed and Zeineldin, H. H. (205) A simple and accurate approach to solve the power flow for balanced islanded microgrids. In: A simple and accurate approach

More information

Particle Swarm Based Optimization of Power Losses in Network Using STATCOM

Particle Swarm Based Optimization of Power Losses in Network Using STATCOM International Conference on Renewable Energies and Power Quality (ICREPQ 14) Cordoba (Spain), 8 th to 10 th April, 2014 Renewable Energy and Power Quality Journal (RE&PQJ) ISSN 2172-038 X, No.12, April

More information

A Novel Approach to Simultaneous Voltage Sag/Swell and Load Reactive Power Compensations Using UPQC

A Novel Approach to Simultaneous Voltage Sag/Swell and Load Reactive Power Compensations Using UPQC A Novel Approach to Simultaneous Voltage Sag/Swell and Load Reactive Power Compensations Using UPQC N. Uma Maheshwar, Assistant Professor, EEE, Nalla Narasimha Reddy Group of Institutions. T. Sreekanth,

More information

THERE has been a growing interest in the optimal operation

THERE has been a growing interest in the optimal operation 648 IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 22, NO. 2, MAY 2007 A New Optimal Routing Algorithm for Loss Minimization and Voltage Stability Improvement in Radial Power Systems Joong-Rin Shin, Member,

More information

Optimal Power flow with FACTS devices using Genetic Algorithm

Optimal Power flow with FACTS devices using Genetic Algorithm International Journal of Scientific & Engineering Research, Volume, Issue 8, August 2013 Optimal Power flow with FACTS devices using Genetic Algorithm Serene C Kurian, Jo Joy Abstract Increasing demands

More information

Optimal Placement of Unified Power Flow Controller for Minimization of Power Transmission Line Losses

Optimal Placement of Unified Power Flow Controller for Minimization of Power Transmission Line Losses Optimal Placement of Unified Power Flow Controller for inimization of Power Transmission Line Losses Sreerama umar R., Ibrahim. Jomoah, and Abdullah Omar Bafail Abstract This paper proposes the application

More information

Transactions on Information and Communications Technologies vol 16, 1996 WIT Press, ISSN

Transactions on Information and Communications Technologies vol 16, 1996 WIT Press,  ISSN An expert system for teaching voltage control in power systems M. Negnevitsky & T. L. Le Department of Electrical & Electronic Engineering University of Tasmania GPO Box 252C Hobart, Tasmania 7001, Australia

More information

Hybrid Power Quality Compensator for Traction Power System with Photovoltaic Array

Hybrid Power Quality Compensator for Traction Power System with Photovoltaic Array IJMTST Volume: 2 Issue: 07 July 2016 ISSN: 2455-3778 Hybrid Power Quality Compensator for Traction Power System with Photovoltaic Array M. Kalidas 1 B. Lavanya 2 1PG Scholar, Department of Electrical &

More information

Locating of Multi-phase Faults of Ungrounded Distribution System

Locating of Multi-phase Faults of Ungrounded Distribution System MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Locating of Multi-phase Faults of Ungrounded Distribution System Dubey, A.; Sun, H.; Nikovski, D.; Zhang, J.; Takano, T.; Ohno, T. TR2014-100

More information

Voltage Profile Improvement of Distribution System using Dynamic Evolution Controller for Boost Converter in Photovoltaic System

Voltage Profile Improvement of Distribution System using Dynamic Evolution Controller for Boost Converter in Photovoltaic System International Journal of Engineering and Advanced Technology (IJEAT) ISSN: 2249 8958, Volume-7 Issue-2, December 217 Voltage Profile Improvement of Distribution System using Dynamic Evolution Controller

More information

In Class Examples (ICE)

In Class Examples (ICE) In Class Examples (ICE) 1 1. A 3φ 765kV, 60Hz, 300km, completely transposed line has the following positive-sequence impedance and admittance: z = 0.0165 + j0.3306 = 0.3310 87.14 o Ω/km y = j4.67 410-6

More information

Simulation of Acquisition behavior of Second-order Analog Phase-locked Loop using Phase Error Process

Simulation of Acquisition behavior of Second-order Analog Phase-locked Loop using Phase Error Process International Journal of Electronic and Electrical Engineering. ISSN 0974-2174 Volume 7, Number 2 (2014), pp. 93-106 International Research Publication House http://www.irphouse.com Simulation of Acquisition

More information

STATCOM ANALYSIS WITH CLOSED LOOP PID AND WITH OPEN LOOP ON POWER SYSTEM

STATCOM ANALYSIS WITH CLOSED LOOP PID AND WITH OPEN LOOP ON POWER SYSTEM STATCOM ANALYSIS WITH CLOSED LOOP PID AND WITH OPEN LOOP ON POWER SYSTEM 1 D.V.V.V.CH.MOULI, 2 K.DHANVANTHRI Member, IEEE Abstract: Static synchronous compensator (STATCOM) is used in power system for

More information

Appendix. Harmonic Balance Simulator. Page 1

Appendix. Harmonic Balance Simulator. Page 1 Appendix Harmonic Balance Simulator Page 1 Harmonic Balance for Large Signal AC and S-parameter Simulation Harmonic Balance is a frequency domain analysis technique for simulating distortion in nonlinear

More information

Extended Transmission Line Loadability Curve by Including Voltage Stability Constrains

Extended Transmission Line Loadability Curve by Including Voltage Stability Constrains Extended Transmission Line Loadability Curve by Including oltage tability Constrains Jin Hao, Member, IEEE, and Wilsun Xu, Fellow, IEEE Abstract t. Clair curve provides a simple means for estimating power

More information

Minimization of Power Loss and Improvement of Voltage Profile in a Distribution System Using Harmony Search Algorithm

Minimization of Power Loss and Improvement of Voltage Profile in a Distribution System Using Harmony Search Algorithm Minimization of Power Loss and Improvement of Voltage Profile in a Distribution System Using Harmony Search Algorithm M. Madhavi 1, Sh. A. S. R Sekhar 2 1 PG Scholar, Department of Electrical and Electronics

More information

Announcements. To stop blowing fuses in the lab, note how the breadboards are wired. EECS 42, Spring 2005 Week 3a 1

Announcements. To stop blowing fuses in the lab, note how the breadboards are wired. EECS 42, Spring 2005 Week 3a 1 Announcements New topics: Mesh (loop) method of circuit analysis Superposition method of circuit analysis Equivalent circuit idea (Thevenin, Norton) Maximum power transfer from a circuit to a load To stop

More information

Enhancement of Voltage Stability by optimal location of UPFC using MPSO and Power Flow Analysis using ECI Algorithm

Enhancement of Voltage Stability by optimal location of UPFC using MPSO and Power Flow Analysis using ECI Algorithm IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 9, Issue 1 Ver. I (Jan. 2014), PP 41-47 Enhancement of Voltage Stability by optimal location

More information

Rajasthan Technical University, Kota

Rajasthan Technical University, Kota COURSE - FILE Name : Dr. Dinesh Birla Branch : Electrical Engineering Session : 2014-15, Odd Semester Semester : M. Tech I st Semester Specialization : Power System Index: Course File Sr. No. Content/

More information

A Fuzzy Logic Voltage Collapse Alarm System for Dynamic Loads. Zhang Xi. Master of Science in Electrical and Electronics Engineering

A Fuzzy Logic Voltage Collapse Alarm System for Dynamic Loads. Zhang Xi. Master of Science in Electrical and Electronics Engineering A Fuzzy Logic Voltage Collapse Alarm System for Dynamic Loads by Zhang Xi Master of Science in Electrical and Electronics Engineering 2012 Faculty of Science and Technology University of Macau A Fuzzy

More information

Lecture # 4 Network Analysis

Lecture # 4 Network Analysis CPEN 206 Linear Circuits Lecture # 4 Network Analysis Dr. Godfrey A. Mills Email: gmills@ug.edu.gh Phone: 026-907-3163 February 22, 2016 Course TA David S. Tamakloe 1 What is Network Technique o Network

More information

Announcements. To stop blowing fuses in the lab, note how the breadboards are wired. EECS 42, Spring 2005 Week 3a 1

Announcements. To stop blowing fuses in the lab, note how the breadboards are wired. EECS 42, Spring 2005 Week 3a 1 Announcements New topics: Mesh (loop) method of circuit analysis Superposition method of circuit analysis Equivalent circuit idea (Thevenin, Norton) Maximum power transfer from a circuit to a load To stop

More information

CHAPTER 4 POWER QUALITY AND VAR COMPENSATION IN DISTRIBUTION SYSTEMS

CHAPTER 4 POWER QUALITY AND VAR COMPENSATION IN DISTRIBUTION SYSTEMS 84 CHAPTER 4 POWER QUALITY AND VAR COMPENSATION IN DISTRIBUTION SYSTEMS 4.1 INTRODUCTION Now a days, the growth of digital economy implies a widespread use of electronic equipment not only in the industrial

More information

SIMULATION OF D-STATCOM AND DVR IN POWER SYSTEMS

SIMULATION OF D-STATCOM AND DVR IN POWER SYSTEMS SIMUATION OF D-STATCOM AND DVR IN POWER SYSTEMS S.V Ravi Kumar 1 and S. Siva Nagaraju 1 1 J.N.T.U. College of Engineering, KAKINADA, A.P, India E-mail: ravijntu@gmail.com ABSTRACT A Power quality problem

More information

ANALYSIS OF ACTIVE POWER FILTER FOR HARMONIC VOLTAGE RESONANCE SUPPRESSION IN DISTRIBUTION SYSTEM

ANALYSIS OF ACTIVE POWER FILTER FOR HARMONIC VOLTAGE RESONANCE SUPPRESSION IN DISTRIBUTION SYSTEM ANALYSIS OF ACTIVE POWER FILTER FOR HARMONIC VOLTAGE RESONANCE SUPPRESSION IN DISTRIBUTION SYSTEM Original Research Article ISSN CODE: 456-1045 (Online) (ICV-EE/Impact Value): 3.08 (GIF) Impact Factor:.174

More information

THE present movement towards distribution systems automation

THE present movement towards distribution systems automation Linear Power Flow Formulation Based on a Voltage-Dependent Load Model José R. Martí, Fellow, IEEE, Hamed Ahmadi, Student Member, IEEE, and Lincol Bashualdo Abstract The power flow (PF) solution is a fundamental

More information

Voltage Stability Calculations in Power Transmission Lines: Indications and Allocations (IEEE 30 BUS SYSTEM)

Voltage Stability Calculations in Power Transmission Lines: Indications and Allocations (IEEE 30 BUS SYSTEM) Voltage Stability Calculations in Power Transmission Lines: Indications and Allocations (IEEE 30 BUS SYSTEM) 1 Bikram Singh Pal, 2 Dr. A. K. Sharma 1, 2 Dept. of Electrical Engineering, Jabalpur Engineering

More information

A New VSC HVDC model with IEEE 5 bus system

A New VSC HVDC model with IEEE 5 bus system A New VSC HVDC model with IEEE 5 bus system M.Sujatha 1 1 PG Student, Department of EEE, JNTUA, Ananthapuramu, Andhra Pradesh, India. ---------------------------------------------------------------------***---------------------------------------------------------------------

More information

Voltage Stability Assessment in Power Network Using Artificial Neural Network

Voltage Stability Assessment in Power Network Using Artificial Neural Network Voltage Stability Assessment in Power Network Using Artificial Neural Network Swetha G C 1, H.R.Sudarshana Reddy 2 PG Scholar, Dept. of E & E Engineering, University BDT College of Engineering, Davangere,

More information

A New Fault Locator for Three-Terminal Transmission Lines Using Two-Terminal Synchronized Voltage and Current Phasors

A New Fault Locator for Three-Terminal Transmission Lines Using Two-Terminal Synchronized Voltage and Current Phasors 452 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 17, NO. 2, APRIL 2002 A New Fault Locator for Three-Terminal Transmission Lines Using Two-Terminal Synchronized Voltage and Current Phasors Ying-Hong Lin,

More information

Identifying Long Term Voltage Stability Caused by Distribution Systems vs Transmission Systems

Identifying Long Term Voltage Stability Caused by Distribution Systems vs Transmission Systems Identifying Long Term Voltage Stability Caused by Distribution Systems vs Transmission Systems Amarsagar Reddy Ramapuram M. Ankit Singhal Venkataramana Ajjarapu amar@iastate.edu ankit@iastate.edu vajjarapu@iastate.edu

More information

Aspects of Network Harmonic Impedance Modelling in High Voltage Distribution Networks

Aspects of Network Harmonic Impedance Modelling in High Voltage Distribution Networks Aspects of Network Harmonic Impedance Modelling in High Voltage Distribution Networks Diptargha Chakravorty Indian Institute of Technology Delhi (CES) New Delhi, India diptarghachakravorty@gmail.com Jan

More information

Optimal Allocation of TCSC Devices Using Genetic Algorithms

Optimal Allocation of TCSC Devices Using Genetic Algorithms Proceedings of the 14 th International Middle East Power Systems Conference (MEPCON 10), Cairo University, Egypt, December 19-21, 2010, Paper ID 195. Optimal Allocation of TCSC Devices Using Genetic Algorithms

More information

Fault Location Using Sparse Wide Area Measurements

Fault Location Using Sparse Wide Area Measurements 319 Study Committee B5 Colloquium October 19-24, 2009 Jeju Island, Korea Fault Location Using Sparse Wide Area Measurements KEZUNOVIC, M., DUTTA, P. (Texas A & M University, USA) Summary Transmission line

More information

Objective of the Lecture

Objective of the Lecture Objective of the Lecture Present Kirchhoff s Current and Voltage Laws. Chapter 5.6 and Chapter 6.3 Principles of Electric Circuits Chapter4.6 and Chapter 5.5 Electronics Fundamentals or Electric Circuit

More information

Fuzzy Approach to Critical Bus Ranking under Normal and Line Outage Contingencies

Fuzzy Approach to Critical Bus Ranking under Normal and Line Outage Contingencies Fuzzy Approach to Critical Bus Ranking under Normal and Line Outage Shobha Shankar *, Dr. T. Ananthapadmanabha ** * Research Scholar and Assistant Professor, Department of Electrical and Electronics Engineering,

More information

3. Voltage and Current laws

3. Voltage and Current laws 1 3. Voltage and Current laws 3.1 Node, Branches, and loops A branch represents a single element such as a voltage source or a resistor A node is the point of the connection between two or more elements

More information

IMPLEMENTATION OF NETWORK RECONFIGURATION TECHNIQUE FOR LOSS MINIMIZATION ON A 11KV DISTRIBUTION SYSTEM OF MRS SHIMOGA-A CASE STUDY

IMPLEMENTATION OF NETWORK RECONFIGURATION TECHNIQUE FOR LOSS MINIMIZATION ON A 11KV DISTRIBUTION SYSTEM OF MRS SHIMOGA-A CASE STUDY IMPLEMENTATION OF NETWORK RECONFIGURATION TECHNIQUE FOR LOSS MINIMIZATION ON A 11KV DISTRIBUTION SYSTEM OF MRS SHIMOGA-A CASE STUDY PROJECT REFERENCE NO. : 37S0848 COLLEGE : PES INSTITUTE OF TECHNOLOGY

More information

Survival Skills for Circuit Analysis

Survival Skills for Circuit Analysis P. R. Nelson Fall 2010 WhatToKnow - p. 1/46 Survival Skills for Circuit Analysis What you need to know from ECE 109 Phyllis R. Nelson prnelson@csupomona.edu Professor, Department of Electrical and Computer

More information

Performance Analysis and Design of Distributed Static Series Compensators for Transmission Line Reactance Control

Performance Analysis and Design of Distributed Static Series Compensators for Transmission Line Reactance Control University of Colorado, Boulder CU Scholar Electrical, Computer & Energy Engineering Graduate Theses & Dissertations Electrical, Computer & Energy Engineering Spring 1-1-2014 Performance Analysis and Design

More information

Game Theory and Randomized Algorithms

Game Theory and Randomized Algorithms Game Theory and Randomized Algorithms Guy Aridor Game theory is a set of tools that allow us to understand how decisionmakers interact with each other. It has practical applications in economics, international

More information

Multi-Pulse Voltage Source Converter Statcom For Voltage Flicker Mitigation

Multi-Pulse Voltage Source Converter Statcom For Voltage Flicker Mitigation RESEARCH ARTICLE OPEN ACCESS Multi-Pulse Voltage Source Converter Statcom For Voltage Flicker Mitigation * G.Ravinder Reddy Assistant Professor,**M.Thirupathaiah * Assistant Professor. (Deparment of Electrical

More information

MULTI-STAGE TRANSMISSION EXPANSION PLANNING CONSIDERING MULTIPLE DISPATCHES AND CONTINGENCY CRITERION

MULTI-STAGE TRANSMISSION EXPANSION PLANNING CONSIDERING MULTIPLE DISPATCHES AND CONTINGENCY CRITERION MULTI-STAGE TRANSMISSION EXPANSION PLANNING CONSIDERING MULTIPLE DISPATCHES AND CONTINGENCY CRITERION GERSON C. OLIVEIRA, SILVIO BINATO, MARIO V. PEREIRA, LUIZ M. THOMÉ PSR CONSULTORIA LTDA R. VOLUNTARIOS

More information

Improvement of System Reliability & Power Transfer Capability using Distributed Power- Flow Controller (DPFC)

Improvement of System Reliability & Power Transfer Capability using Distributed Power- Flow Controller (DPFC) International Journal of Scientific & Engineering Research Volume 3, Issue 5, May-2012 1 Improvement of System Reliability & Power Transfer Capability using Distributed Power- Flow Controller (DPFC) P.RAMESH

More information

EE42: Running Checklist of Electronics Terms Dick White

EE42: Running Checklist of Electronics Terms Dick White EE42: Running Checklist of Electronics Terms 14.02.05 Dick White Terms are listed roughly in order of their introduction. Most definitions can be found in your text. Terms2 TERM Charge, current, voltage,

More information

Power Quality Improvement of Distribution Network for Non-Linear Loads using Inductive Active Filtering Method Suresh Reddy D 1 Chidananda G Yajaman 2

Power Quality Improvement of Distribution Network for Non-Linear Loads using Inductive Active Filtering Method Suresh Reddy D 1 Chidananda G Yajaman 2 IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 03, 2015 ISSN (online): 2321-0613 Power Quality Improvement of Distribution Network for Non-Linear Loads using Inductive

More information

CHAPTER 2 MODELING OF FACTS DEVICES FOR POWER SYSTEM STEADY STATE OPERATIONS

CHAPTER 2 MODELING OF FACTS DEVICES FOR POWER SYSTEM STEADY STATE OPERATIONS 19 CHAPTER 2 MODELING OF FACTS DEVICES FOR POWER SYSTEM STEADY STATE OPERATIONS 2.1 INTRODUCTION The electricity supply industry is undergoing a profound transformation worldwide. Maret forces, scarcer

More information

Analysis and Enhancement of Voltage Stability using Shunt Controlled FACTs Controller

Analysis and Enhancement of Voltage Stability using Shunt Controlled FACTs Controller Volume 1, Issue 2, October-December, 2013, pp. 25-33, IASTER 2013 www.iaster.com, Online: 2347-5439, Print: 2348-0025 Analysis and Enhancement of Voltage Stability using Shunt Controlled FACTs Controller

More information

Optimal Voltage Regulators Placement in Radial Distribution System Using Fuzzy Logic

Optimal Voltage Regulators Placement in Radial Distribution System Using Fuzzy Logic Optimal Voltage Regulators Placement in Radial Distribution System Using Fuzzy Logic K.Sandhya 1, Dr.A.Jaya Laxmi 2, Dr.M.P.Soni 3 1 Research Scholar, Department of Electrical and Electronics Engineering,

More information

ECEN 615 Methods of Electric Power Systems Analysis Lecture 8: Advanced Power Flow

ECEN 615 Methods of Electric Power Systems Analysis Lecture 8: Advanced Power Flow ECEN 615 Methods of Electric Power Systems nalysis Lecture 8: dvanced Power Flow Prof. Tom Overbye Dept. of Electrical and Computer Engineering Texas &M University overbye@tamu.edu nnouncements Read Chapter

More information

FAST POWER NETWORK DETECTION OF TOPOLOGY CHANGE LOCATIONS USING PMU MEASUREMENTS

FAST POWER NETWORK DETECTION OF TOPOLOGY CHANGE LOCATIONS USING PMU MEASUREMENTS FAST POWER NETWORK DETECTION OF TOPOLOGY CHANGE LOCATIONS USING PMU MEASUREMENTS By Elamin Ali Elamin Mohamed Ahmed H. Eltom Professor of Electrical Engineering Committee Chair Abdelrahman A. Karrar Professor

More information

CHAPTER 4 MONITORING OF POWER SYSTEM VOLTAGE STABILITY THROUGH ARTIFICIAL NEURAL NETWORK TECHNIQUE

CHAPTER 4 MONITORING OF POWER SYSTEM VOLTAGE STABILITY THROUGH ARTIFICIAL NEURAL NETWORK TECHNIQUE 53 CHAPTER 4 MONITORING OF POWER SYSTEM VOLTAGE STABILITY THROUGH ARTIFICIAL NEURAL NETWORK TECHNIQUE 4.1 INTRODUCTION Due to economic reasons arising out of deregulation and open market of electricity,

More information

ECE-22 Senior Design Final Report

ECE-22 Senior Design Final Report ECE-22 Senior Design Final Report Integration and Analysis of Distributed Generation Reso urces in Micro-Grid Environments Team Members Michael Black Yi Li Michael Caro Evan Greer Advisors Dr. Karen Miu

More information

Communication-Cognizant Hybrid Voltage Control in Power Distribution Networks

Communication-Cognizant Hybrid Voltage Control in Power Distribution Networks February 8, 2017 @Champery, Switzerland Communication-Cognizant Hybrid Voltage Control in Power Distribution Networks Hao Zhu Assistant Professor Dept. of Electrical & Computer Engineering University of

More information

Incorporation of Dstatcom in Radial Distribution Systems

Incorporation of Dstatcom in Radial Distribution Systems International Journal of Computational Engineering Research Vol, 03 Issue, 7 Incorporation of Dstatcom in Radial Distribution Systems 1, K. Nirmala, 2, N. Poorna Chandra Rao 1, PG Student, Dept.of EEE

More information

Power System Stability Enhancement Using Static Synchronous Series Compensator (SSSC)

Power System Stability Enhancement Using Static Synchronous Series Compensator (SSSC) Vol. 3, Issue. 4, Jul - Aug. 2013 pp-2530-2536 ISSN: 2249-6645 Power System Stability Enhancement Using Static Synchronous Series Compensator (SSSC) B. M. Naveen Kumar Reddy 1, Mr. G. V. Rajashekar 2,

More information

UNIVERSITY OF CALGARY. Sensitivity And Bias Based. Receding Horizon Multi Step Optimization (RHMSO) Controller. For Real Time Voltage Control

UNIVERSITY OF CALGARY. Sensitivity And Bias Based. Receding Horizon Multi Step Optimization (RHMSO) Controller. For Real Time Voltage Control UNIVERSITY OF CALGARY Sensitivity And Bias Based Receding Horizon Multi Step Optimization (RHMSO) Controller For Real Time Voltage Control by Madhumathi Kulothungan A THESIS SUBMITTED TO THE FACULTY OF

More information

Keyword: conductors, feeders, genetic algorithm, conventional method, real power loss, reactive power loss, distributed load flow, cost and savings.

Keyword: conductors, feeders, genetic algorithm, conventional method, real power loss, reactive power loss, distributed load flow, cost and savings. Optimal Conductor Selection Using Genetic Algorithm Deepak Sharma 1, Priya Jha 2,S.Vidyasagar 3 1 PG Student, SRM University, Chennai, India 2 PG Student, SRM University, Chennai, India 3 Assistant Professor,

More information

Compensation of Unbalanced Three Phase Currents in a Transmission line using Distributed Power Flow Controller

Compensation of Unbalanced Three Phase Currents in a Transmission line using Distributed Power Flow Controller Compensation of Unbalanced Three Phase Currents in a Transmission line using Distributed Power Flow Controller T. Santosh Tej*, M. Ramu**, Ch. Das Prakash***, K. Venkateswara Rao**** *(Department of Electrical

More information

IT is generally more convenient and economical to connect

IT is generally more convenient and economical to connect 1 Impact of Wind Power Variability on Sub-transmission Networks Sina Sadeghi Baghsorkhi, Student Member, IEEE Ian A. Hiskens, Fellow, IEEE Abstract The inherent variability of wind power injections becomes

More information

Distribution System State Estimation in the Presence of High Solar Penetration

Distribution System State Estimation in the Presence of High Solar Penetration Distribution System State Estimation in the Presence of High Solar Penetration Thiagarajan Ramachandran, Andrew Reiman, Sai Pushpak Nandanoori, Mark Rice, and Soumya Kundu arxiv:94.836v [cs.sy] 7 Apr 9

More information

Artificial Neural Networks for ON Line Assessment of Voltage Stability using FVSI in Power Transmission Systems

Artificial Neural Networks for ON Line Assessment of Voltage Stability using FVSI in Power Transmission Systems IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 7, Issue 6 (Sep. - Oct. 2013), PP 52-58 Artificial Neural Networks for ON Line Assessment

More information

Chapter 3: Resistive Network Analysis Instructor Notes

Chapter 3: Resistive Network Analysis Instructor Notes Chapter 3: Resistive Network Analysis Instructor Notes Chapter 3 presents the principal topics in the analysis of resistive (DC) circuits The presentation of node voltage and mesh current analysis is supported

More information