7

I'm working in a MATLAB algorithm to compute the state estimation of a power system given some measures. The classical method computes a Jacobian matrix of all the measures, so I have to program all the derivatives of all types of measures. The problem lies in the equations of the power flow between buses. I've searched several books and papers and I've found two distinct sets of equations (\$P_{ij}\$ and \$Q_{ij}\$ are the real and reactive power flow from node \$i\$ to node \$j\$, respectively): $$ P_{ij} = \left| {V_i } \right|^2 G_{ij} - \left| {V_i } \right|\left| {V_j } \right|\left( {G_{ij} \cos \delta _{ij} + B_{ij} \sin \delta _{ij} } \right) $$ $$ Q_{ij} = - \left| {V_i } \right|^2 B_{ij} - \left| {V_i } \right|\left| {V_j } \right|\left( {G_{ij} \sin \delta _{ij} - B_{ij} \cos \delta _{ij} } \right) $$ Where \$V_i\$ and \$V_j\$ are the complex voltages of buses \$i\$ and \$j\$. \$G_{ij}\$ and \$B_{ij}\$ are the real and imaginary parts of \$Y_{ij}\$, the \$ij\$ element of the admitance matrix of the system. And \$\delta_{ij}\$ is the angle difference betwwen \$V_i\$ and \$V_j\$. These two equations are derived from the book of Abur and Expósito (2004), neglecting the lines' shunt admitance. However, from the paper of Larson, Tinney and Peschon (1970), the resulting equations are: $$ P_{ij} = -\left| {V_i } \right|^2 G_{ij} + \left| {V_i } \right|\left| {V_j } \right|\left( {G_{ij} \cos \delta _{ij} + B_{ij} \sin \delta _{ij} } \right) $$ $$ Q_{ij} = \left| {V_i } \right|^2 B_{ij} + \left| {V_i } \right|\left| {V_j } \right|\left( {G_{ij} \sin \delta _{ij} - B_{ij} \cos \delta _{ij} } \right) $$ There are other documents that present either the first or the second set of equations, and I'm really bewildered, I absolutely don't know which set I must use. Can someone explain to me the reason of this discrepancy, and which is the correct set of equations? My most sincere thanks to whoever answers me.

Kevin Reid
  • 7,444
  • 1
  • 25
  • 44
Daniel Turizo
  • 211
  • 2
  • 5
  • 1
    So the only differences between the two pairs of equations are the signs of \$P_{ij}\$ and \$Q_{ij}\$? In that case there's not much discrepancy except the perspective whether the power flows in or out... it seems. – Fizz Sep 28 '15 at 07:06
  • Must you obligatorily use the classical Newton-Raphson method? Can't you use less computationally extensive methods? – K. Rmth Dec 08 '15 at 11:37
  • Respawned Fluff answered your question in the comment. The only difference is the sign of the equations, thus it's just a matter of perspective. One set describes looking in, the other describes looking out. Transmission lines have both a forward and a backward wave. – Dave Dec 23 '15 at 22:20

2 Answers2

2

The only difference between the formulations is the convention used. The first one assumes that power flowing out of the bus is positive, the second one assumes that power flowing into the bus is positive.

Since you will find the state that gives a certain power flow, the specified power injections' signs will depend on which convention you are using.

xuva
  • 435
  • 2
  • 13
1

When I was taking a graduate school class I remembered how that derivation really bugged me too. From I what remember passive and active loads have different sign conventions (see refresher) and in the case of power flow equations, current goes either way -- you can not make the distinction of load type on either end! As a result there are two different ways of deriving power flow and text books vary on which they choose -- but not worries because answers are still the same.