Uploaded by Narendra De Silva

Theoritical development for ADMS development

advertisement
1. Network Connectivity, Load Flow and State Estimation
Network connectivity analysis is carried out using an augmented incidence matrix and augmented bus
admittance matrix operations. The standard bus incidence matrix and bus admittance matrix based
Jacobi analysis is used for the load flow calculations and State Estimation.
Anyhow, if it is planned to develop the total network from the beginning, then it is most appropriate
to use the bus impedance matrix and the step-by-step development process of the bus impedance
matrix. It shall be noted that, unless the network building is carried out from the beginning it is
impossible to develop the bus impedance matrix from the bus admittance matrix through matrix
inversion.
1.1
Network Connectivity, Load Flow and Power System State Estimation Design.
This is the core of the ADMS which needs detailed design analysis. The advanced network analysis
techniques are used in this process to develop a connectivity model, load flow model and state
estimation model.
1.1.1 Network Connectivity Module
The network connectivity are identified into tree cut-sets and extracted from the network in the usual
connectivity analysis process. In this analysis a different approach is used as the minimum cut set
calculation is lengthy as well as must be carried out every time when a switch status is changed.
Therefore, traditional calculation is resource intensive. In this Network connectivity analysis, a
modified version of the network incidence matrix is used. This is an innovation in this development.
In this methodology, the Modified Incidence Matrix, which represents the connectivity of network
branches to nodes as shown below is developed.
๐ด๐‘›×๐‘š
๐‘Ž11
=[ โ‹ฎ
๐‘Ž๐‘›1
โ‹ฏ ๐‘Ž1๐‘š
โ‹ฑ
โ‹ฎ ]
โ‹ฏ ๐‘Ž๐‘›๐‘š
1,
0,
element ๐‘– is connected to node ๐‘—
element ๐‘– is not connected to node ๐‘—
(1)
Where
๐‘Ž๐‘–๐‘— = {
๐‘› =number of elements
๐‘š = number of nodes
This differs from the standard incidence matrix as in the standard network incidence matrix, the
orientation of each branch is represented by the sign of the connectivity index. In this matrix if the
network element is connected to the branch, matrix holds a value of 1 in the corresponding position
and otherwise zero.
The modified bus impedance matrix for the connectivity analysis is developed in the form of a identity
matrix of the size of the elements as shown below.
๐‘ฆ = ๐ผ๐‘š×๐‘š
(2)
Now the modified network bus admittance matrix, ๐‘Œ๐‘๐‘ข๐‘  is developed as,
๐‘Œ๐‘๐‘ข๐‘ (๐‘›×๐‘›) = ๐ด๐‘›×๐‘š โˆ™ ๐‘ฆ๐‘š×๐‘š โˆ™ ๐ด๐‘‡๐‘š×๐‘›
(3)
In this matrix, the off-diagonal element which are either 1 or 0 and when 1 represent connectivity of
the node to the other node. If the two nodes are not connected, then the corresponding off-diagonal
element is 0. The diagonal elements which hold a positive non-zero number represent the number of
elements connected to the particular node.
Now, the modified power injection matrix is developed such as to hold the power feeding nodes with
number 1 and all the other nodes with 0.
๐‘1
๐‘ƒ=[ โ‹ฎ ]
๐‘๐‘š ๐‘›×1
(4)
Where
๐‘๐‘– = {
1,
0,
if branch ๐‘– is energised
if branch ๐‘– is not energised
Now the energized element matrix can be developed as
[๐ต]๐‘š×1 = [๐‘Œ๐‘๐‘ข๐‘  ]๐‘›×๐‘› [๐‘ƒ]๐‘›×1
(5)
Matrix ๐ต is modified by a recursive process to make all the positive integers in the matrix 1 and all the
zeros to remain as it is. There are no negative integers as both ๐‘ƒ and ๐‘Œare positive. If the recursive
equation is developed at the nth recursion, then,
Say
[๐ต]๐‘›×1
๐‘1
โ‹ฎ
= ๐‘๐‘–
โ‹ฎ
[๐‘๐‘› ]๐‘›×1
(6)
Then
1,
(๐‘๐‘– )๐‘›+1 = {
0,
if (๐‘๐‘– )๐‘› > 0
if (๐‘๐‘– )๐‘› < 0
(7)
Equation (2) and equation (3) are recursively used until matrix P stabilizes. Once the matrix stabilizes
it gives the elements which are energized.
For example, the network which is shown in Figure 2 below will result in an incidence matrix as shown
in the Table 1 below. When this incidence matrix is recursively iterated as described above, the
resulting column vector indicating the energized elements is as shown in table 3. The recursive
operation is carried out using the MATLAB code as shown in table 2. The elements energized as shown
in table 3 when graphically represented looks as shown in Figure 3.
Figure 2 Single Line Diagram of the example netwrok for connectivity analysis-
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
1
1
2
1
1
3
0
0
4
5
1
1
1
1
6
7
8
1
1
1
1
1
1
1
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0
0
0
0
1
1
1
1
0
1
1
1
1
1
1
1
1
1
1
1
0
1
1
1
Table 1 – Modified Incidence Matrix for the example network used for connectivity analysis
The calculation is as shown in the table below done in MATLAB.
while 1
y=eye(size(A,2));
Ybus=A*y*A';
B=Ybus*P;
for i=1:size(A,1)
if B(i)>0
B(i)=1;
else
B(i)=0;
end
end
sum(P)
if sum(P)==sum(B)
break;
end
Table 2 – Program Code of the Network Analysis
Branch
ID
1
Energised
or not
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
1
0
0
0
0
0
0
0
0
0
0
0
1
1
0
0
1
1
1
1
1
1
1
1
1
1
1
0
0
0
0
0
0
0
0
0
0
0
Table 3 – Branch Connectivity Vector
Figure 3 – Results of the connectivity Analysis shown in the single line diagram
This particular algorithm developed by the design team is coded into the ADMS through an above
discussed outsourced coding contractor with proper testing and verification cycle.
1.1.2 Load-flow calculation[2], [3].
The data measurements are obtained from the R-LBS and ARs installed in the network. All the primary
substation busbar voltages are also assumed to be available. All the loads of the transformers ๐ฟ๐‘ก๐‘Ÿ๐‘“
are calculated by the equation shown below using the customer mix and the individual customer
category load curves organized in to load curve matrix ๐ฟ๐ถ and customer participation matrix ๐ถ๐‘ƒ for
the transformers.
Load curve of the family of transformers is calculated as,
[๐ฟ๐‘ก๐‘Ÿ๐‘“ ]๐‘›_๐‘ก๐‘Ÿ๐‘“×24 = [๐ถ๐‘ƒ]๐‘›_๐‘ก๐‘Ÿ๐‘“×๐‘๐‘ข๐‘ _๐‘๐‘Ž๐‘ก [๐ฟ๐ถ]๐‘๐‘ข๐‘ _๐‘๐‘Ž๐‘ก×24
(8)
Where,
๐ฟ๐‘ก๐‘Ÿ๐‘“ = Transformer Load matrix where each row represents the load curve of each
transformer;
[๐ถ๐‘ƒ]๐‘›_๐‘ก๐‘Ÿ๐‘“×๐‘๐‘ข๐‘ _๐‘๐‘Ž๐‘ก = Customer participation matrix where each row represent the percentage of
load of each customer category in each transformer.
[๐ฟ๐ถ]๐‘๐‘ข๐‘ _๐‘๐‘Ž๐‘ก×24 = Load Curve matrix where each row represents the load curve of each customer
category
๐‘›๐‘ก๐‘Ÿ๐‘“ = Number of transformers
๐‘๐‘ข๐‘ ๐‘๐‘Ž๐‘ก = Number of customer categories (Usually 9) such as General Purpose, Domestic
0-30, Domestic 60-90, Domestic 90-120, Domestic 120-180, Domestic>180,
Industrial, Hotel, Government, Religious, etc
The standard load flow is carried out for the radial network using the dc load flow equations coupled
with the incident matrix where in this instance the directionality is incorporated as shown below.
๐ด๐‘›×๐‘š
๐‘Ž11
=[ โ‹ฎ
๐‘Ž๐‘›1
โ‹ฏ ๐‘Ž1๐‘š
โ‹ฑ
โ‹ฎ ]
โ‹ฏ ๐‘Ž๐‘›๐‘š
(9)
Where
1,
๐‘Ž๐‘–๐‘— = { 0,
−1,
element ๐‘– direction is towards node ๐‘—
element ๐‘– is not connected to node ๐‘—
element ๐‘– direction is away from node ๐‘—
๐‘› =number of elements
๐‘š = number of nodes
Standard load flow equations are developed for this purpose and incorporated to the ADMS as a
separate module.
These calculations are indicated here for completion.
Here the straightforward process of calculating load flow using standard Jacobi method is described.
In the distribution load flow problem, all the busbars are load busbars and therefore the issue of the
inclusion of generator busbars and voltage control busbars will not occur. Here, the calculation starts
from assuming a set of voltages from the busbars at which the complex power injections are known.
Iteratives the next set of voltages are calculated from the present set of voltages until the set of bus
voltages converge.
The ith row of the matrix equation ๐ผ = ๐‘Œ๐‘๐‘ข๐‘  ๐‘‰ can be written as
๐‘›
๐ผ๐‘– = ∑ ๐‘Œ๐‘–๐‘— ๐‘‰๐‘—
๐‘—=1
Now from the definition of complex power injection at ith row ๐‘†๐‘– = ๐‘‰๐‘– ๐ผ๐‘–∗ we can write,
๐ผ๐‘– =
๐‘†๐‘–∗
๐‘‰๐‘–∗
Gives
๐‘›
๐‘†๐‘–∗
= ∑ ๐‘Œ๐‘–๐‘— ๐‘‰๐‘—
๐‘‰๐‘–∗
๐‘—=1
Now this can be expanded in extracting the diagonal items
๐‘›
๐‘†๐‘–∗
= ๐‘Œ๐‘–๐‘– ๐‘‰๐‘– + ∑ ๐‘Œ๐‘–๐‘— ๐‘‰๐‘—
๐‘‰๐‘–∗
๐‘—=1
๐‘—≠๐‘–
Which can be rearranged as
๐‘›
1 ๐‘†๐‘–∗
๐‘‰๐‘– =
− ∑ ๐‘Œ๐‘–๐‘— ๐‘‰๐‘—
๐‘Œ๐‘–๐‘– ๐‘‰๐‘–∗
{
๐‘—=1
๐‘—≠๐‘–
(10)
}
Equation (10) can be used to form an iterative solution so that the new voltages can be calculated
from the know voltages as,
๐‘›
๐‘‰๐‘–๐‘›๐‘’๐‘ค
1 ๐‘†๐‘–∗
๐‘๐‘Ÿ๐‘’๐‘ฃ๐‘–๐‘œ๐‘ข๐‘ 
=
− ∑ ๐‘Œ๐‘–๐‘— ๐‘‰๐‘—
๐‘Œ๐‘–๐‘– ๐‘‰๐‘–∗
{
๐‘—=1
๐‘—≠๐‘–
(11)
}
Therefore, the process of calculating the bus voltages is as below.
๐‘†∗
1. Calculate the currents of each node by using ๐ผ๐‘– = ๐‘‰๐‘–∗ for all buses.
2. Now calculate ∑๐‘›๐‘—=1 ๐‘Œ๐‘–๐‘— ๐‘‰๐‘—
๐‘–
๐‘—≠๐‘–
3. Calculate the new bus voltage by using, ๐‘‰๐‘–๐‘›๐‘’๐‘ค =
1
๐‘†๐‘–∗
{
๐‘๐‘Ÿ๐‘’๐‘ฃ๐‘–๐‘œ๐‘ข๐‘ 
∗
๐‘Œ๐‘–๐‘– ๐‘‰
๐‘–
๐‘๐‘Ÿ๐‘’๐‘ฃ๐‘–๐‘œ๐‘ข๐‘ 
− ∑๐‘›๐‘—=1 ๐‘Œ๐‘–๐‘— ๐‘‰๐‘—
}
๐‘—≠๐‘–
4. Compare the voltage values calculated from the iteration with the previous values to check
whether the solution is converged.
1.1.3 Estimation of states[1], [4], [5]
The states of this system can be considered as the bus voltages. Unlike in HV networks, the bus
voltages are not measured by voltage transformers. In distribution network, the buses are not well
formed busbar connection points in grid substations. Busses are the network nodes identifying the
equipment connection points and the network branching points and hence, the measurement of
voltages in all these network nodes is costly and not practical. There are two equipment installed for
other purposes which got voltage measurements. The Remote Operation Load Break Switches (R-LBS)
which are installed for load breaking and network isolation purposes and Auto-Reclosures (AR) which
are installed for the network switching purposes have voltage measurement incorporated. Further
the boundary metering points equipped with CT-PT units have the voltage reading of the node.
Usually, the number of buses where the voltages are measured is much lesser in number than the
total number of nodes.
In power system state estimation equation is given as.
๐‘ฅ ๐‘’๐‘ ๐‘ก = [[๐ป ๐‘‡ ๐‘… −1 ๐ป]−1 ๐ป๐‘‡ ๐‘…−1 ]๐‘ง ๐‘š๐‘’๐‘Ž๐‘ 
(10)
Where
๐‘ฅ = Power system states
๐‘ง
๐‘š๐‘’๐‘Ž๐‘ 
= Measurements,
๐ป = Mapping function of measurements to each state
๐‘… = Covariance matrix of measurement error
The mapping function of ๐‘๐‘† states to ๐‘– ๐‘กโ„Ž measurement, if expressed as,
๐‘“๐‘– (๐‘ฅ1 , ๐‘ฅ2 , โ‹ฏ , ๐‘ฅ๐‘๐‘† ) = ๐‘“๐‘– (๐’™) = โ„Ž๐‘–1 ๐‘ฅ1 + โ„Ž๐‘–2 ๐‘ฅ2 + โ‹ฏ + โ„Ž๐‘–๐‘๐‘  ๐‘ฅ๐‘๐‘ 
Then we can say the ๐‘๐‘† states can be mapped to ๐‘๐‘š measurements as,
๐‘“1 (๐‘ฅ)
๐‘“ (๐‘ฅ)
๐’‡(๐’™) = [ 1
โ‹ฎ ]
๐‘“๐‘๐‘š (๐‘ฅ)
= [๐ป]๐‘๐‘š ×๐‘๐‘  [๐‘ฅ]๐‘๐‘  ×1
(11)
๐‘๐‘š ×1
Where
[๐ป] = ๐‘๐‘š × ๐‘๐‘† matrix
๐‘๐‘š = Number of measurements
๐‘๐‘  = Number of states
The measurements are arranged as a column vector as,
๐’›๐‘š๐‘’๐‘Ž๐‘ 
๐‘ง1๐‘š๐‘’๐‘Ž๐‘ 
๐‘ง ๐‘š๐‘’๐‘Ž๐‘ 
= 2
โ‹ฎ
๐‘š๐‘’๐‘Ž๐‘ 
[๐‘ง๐‘๐‘š ]
(12)
๐‘๐‘š ×1
And, the covariance matrix can be written as,
๐œŽ12
๐œŽ22
๐‘…=
(13)
โ‹ฑ
[
๐œŽ๐‘2๐‘š ]
It shall be noted that if the number of measuremets is more than the numebr of states then the
maximum likelyhood function as defined above can be used. In the case if the number of states and
number of measurements are the same then a reduced version of the maximum likelyhood function
as shown below can be used.
๐‘ฅ ๐‘’๐‘ ๐‘ก = [๐ป]−1 ๐‘ง ๐‘š๐‘’๐‘Ž๐‘ 
(14)
In the case of actual number of measurements is lesser than the states, which is the most likey case
for distribution system estimates, the estimate equation become undterministic. In this case a set of
pseudo set of measurements are created to make the number of measurements equal to the number
of states.
The measurements of the LECO network are the voltages and the pseudo measurements are the
current injections at nodes. Therefore the load flow equation which related current and voltage can
be rewritten for the estimation purposes as,
๐ผ = ๐‘Œ๐‘๐‘ข๐‘  ๐‘‰
Which gives
๐‘‰ = [๐‘Œ๐‘๐‘ข๐‘  ]−1 ๐ผ
(15)
If the voltage vector is split for measured and unmeasured voltages, then
๐‘‰
๐‘ƒ
[ ๐‘š] = [
๐‘…
๐‘‰
๐‘„ ๐ผ
][ ]
๐‘† ๐ผ๐‘
(16)
This can be re-arranged using the matrix partition to derive a function between the measurement
voltages and pseudo currents and the unmeasured voltages and unassumed currents as;
๐‘„๐‘† −1
๐‘‰
[ ] = [ −1
๐ผ
๐‘†
−1
๐‘ƒ − ๐‘„๐‘† −1 ๐‘…
]
−๐‘† −1 ๐‘…
๐‘‰๐‘š
[๐ผ ]
๐‘
(17)
This is similar to equation ๐‘ฅ ๐‘’๐‘ ๐‘ก = [๐ป]−1 ๐‘ง ๐‘š๐‘’๐‘Ž๐‘  where
๐‘„๐‘† −1 ๐‘ƒ − ๐‘„๐‘† −1 ๐‘…
(18)
]
๐‘† −1
−๐‘† −1 ๐‘…
This equation can be used to do the state estimation. The covariances for the assumption can be used
as the covariance of the data set used for the transformer load estimation.
[๐ป] = [
An alternative solution to this exists as, the direct determination of the bus impedance matrix through
the sequential development of the network. This is used as the modality of network modification in
order to eliminate the burden of determining the ๐‘† −1 every time the network is modified. This is also
used for the state estimation in the networks to create an overdetermined situation where the power
of all the buses are known and the voltages of several buses are known. In such situation the bus
impedance matrix needs to be built using the step by step method and the state to measurement
mapping function as in equation (11) can be used as the impedance bus matrix.
๐‘‰ = ๐‘๐ผ
Which can be expanded as
๐‘›
๐‘‰๐‘– = ๐‘๐‘–1 ๐ผ1 + ๐‘๐‘–2 ๐ผ2 + โ‹ฏ + ๐‘๐‘–๐‘› ๐ผ๐‘› = ๐‘๐‘–๐‘– ๐ผ๐‘– + ∑ ๐‘๐‘–๐‘— ๐ผ๐‘—
๐‘—=1
๐‘—≠๐‘–
And by the definition of complex power,
๐‘†๐‘— = ๐‘‰๐‘— ๐ผ๐‘—∗
Gives
๐‘†๐‘—∗
๐ผ๐‘— = ∗
๐‘‰๐‘—
Substituting in the above equation we get
๐‘›
๐‘†๐‘—∗
๐‘†๐‘–∗
๐‘‰๐‘– [1 − ๐‘๐‘–๐‘–
]
=
∑
๐‘
๐‘–๐‘— ∗
|๐‘‰๐‘– |2
๐‘‰๐‘—
๐‘—=1
๐‘—≠๐‘–
If we assume that for the |๐‘‰๐‘– | we use the steady state load flow value, then
1
๐‘‰๐‘– =
[1 − ๐‘๐‘–๐‘–
๐‘›
๐‘†๐‘—∗
∑ ๐‘๐‘–๐‘— ∗
๐‘†๐‘–∗
๐‘‰๐‘—
๐‘—=1
]
|๐‘‰๐‘– |2 ๐‘—≠๐‘–
This function is used as the mapping function of the state estimation process.
The covariance matrix is also required to be developed, if the number of measurements are greater
than the states in any of the above circumstances ( ๐‘๐‘š > ๐‘๐‘  ).
From equation (8) we can write the load value of the ith transformer at nth hour as
๐‘๐‘ข๐‘ _๐‘๐‘Ž๐‘ก
๐ฟ๐‘ก๐‘Ÿ๐‘“,๐‘–,๐‘› = ∑ ๐ถ๐‘ƒ๐‘–,๐‘š ๐ฟ๐ถ๐‘š,๐‘›
๐‘š=1
Now if the standard deviation of customer category percentages of the ๐‘š๐‘กโ„Ž customer category is
๐œŽ๐ถ๐‘ƒ,๐‘š and the standard deviation of the Load Curve of ๐‘š๐‘กโ„Ž customer category for all hours is ๐œŽ๐ฟ๐ถ,๐‘š
Then the standard deviation of the Load of the ๐‘– ๐‘กโ„Ž transformer at ๐‘›๐‘กโ„Ž hour is,
๐‘๐‘ข๐‘ _๐‘๐‘Ž๐‘ก
๐œŽ๐ฟ๐‘ก๐‘Ÿ๐‘“ ,๐‘– = √ ∑
๐‘š=1
2
2
๐œŽ๐ฟ๐ถ,๐‘š
๐œŽ๐ถ๐‘ƒ,๐‘š
2
2
๐œŽ๐ฟ๐ถ,๐‘š
+ ๐œŽ๐ถ๐‘ƒ,๐‘š
(19)
We can assume that this is the standard deviation of pseudo currents used for the state estimation.
The standard deviation of the measured voltages can be extracted from the measurement equipment
error data. Therefore, the covariance matrix can be calculated from equation 13 as,
๐ˆ2๐‘‰๐‘š
๐‘น๐‘‰๐‘š
[๐‘น ] = [
๐ผ๐‘
๐‘›
๐ˆ2๐ฟ๐‘ก๐‘Ÿ๐‘“,๐‘–
]
(20)
Therefore, in an over determined situation the state estimation can be done by using equation (10),
(18) and (20).
These are the mathematical algorithms used for the connectivity analysis, load flow and the state
estimation of the network. These algorithms are coded as Operational Procedures on the SQL
database, which can be invoked by the APIs coded in the API platform or otherwise the procedures on
the software.
1.1.4 Standard Theory of the development of Bus Impedance Matrix in step-by-step method.
The development of the bus impedance matrix starts from connecting an impedance (say ๐‘๐‘Ž ) to the
reference bus, creating bus no โ‘ . As the reference bus is considered as the ‘zero’ bus the matrix will
look as,
[๐‘‰1 ] = [๐‘๐‘Ž ][๐ผ1 ]
Now we can connect impedance ๐‘๐‘ to bus โ‘  by creating bus โ‘ก. This will introduce a column and
row to the matrix as,
๐‘‰
๐‘
[ 1] = [ ๐‘Ž
๐‘‰2
0
0 ๐ผ1
][ ]
๐‘๐‘ ๐ผ2
This matrix is considered as the elementary bus impedance matrix.
There are four cases of the modification of the above elementary ๐‘๐‘๐‘ข๐‘  matrix.
Case 1 – Adding ๐’๐’„ connected between a new bus P and the reference bus
Case 1-Addition of a bus connected to the reference bus
The bus impedance matrix will be inserted with a new row and a column as shown below
๐‘‰๐‘œ๐‘Ÿ๐‘–๐‘”๐‘–๐‘›๐‘Ž๐‘™
๐‘๐‘œ๐‘Ÿ๐‘”
=
[
โ‹ฏ
๐‘‰๐‘
]
โ‹ฏ
[0
โ‹ฏ
..
โ‹ฏ
0
โ‹ฎ 0
โ‹ฎ ..
โ‹ฎ 0
โˆ™ โ‹ฏ
โ‹ฎ ๐‘๐‘ ]
Case 2 – Adding ๐’๐’„ connected between existing bus K and new bus P.
Case 2 - Addition of a bus connected to an existing bus
A new row and a column is appended to the matrix with the kth row vector and kth column vector of
the original impedance matrix. The diagonal element is inserted with the value of ๐‘๐‘˜๐‘˜ + ๐‘๐‘ .
Case 3 – Adding an impedance ๐’๐’„ between the reference bus an existing bus K.
Case 3 – Addition of a branch between existing bus and reference bus
Insert bus P as case 2 and short circuit bus P and bus 0 by making ๐‘‰๐‘ƒ = 0.
This can now be rewritten by matrix partitioning as;
And can be expanded to apply Kron’s Reduction as,
[๐‘‰1−๐‘ ]๐‘×1 = [๐‘๐‘œ๐‘Ÿ๐‘” ]
[๐ผ ]
๐‘×๐‘ 1−๐‘ ๐‘×1
+ [๐‘๐‘๐‘œ๐‘™−๐‘˜ ]๐‘×1 โˆ™ ๐ผ๐‘ƒ
0 = [๐‘๐‘Ÿ๐‘œ๐‘ค−๐‘˜ ]1×๐‘ [๐ผ1−๐‘ ]๐‘×1 + (๐‘๐‘˜๐‘˜ + ๐‘๐‘ )๐ผ๐‘ƒ
Form the second equation
๐ผ๐‘ƒ = −
1
[๐‘
][๐ผ ]
๐‘๐‘˜๐‘˜ + ๐‘๐‘ ๐‘Ÿ๐‘œ๐‘ค−๐‘˜ 1−๐‘
And substitution of this result in the first equation gives
[๐‘‰1−๐‘ ] = [๐‘๐‘œ๐‘Ÿ๐‘” ][๐ผ1−๐‘ ] −
[๐‘‰1−๐‘ ] = {[๐‘๐‘œ๐‘Ÿ๐‘” ] −
1
[๐‘
][๐‘
][๐ผ ]
๐‘๐‘˜๐‘˜ + ๐‘๐‘ ๐‘๐‘œ๐‘™−๐‘˜ ๐‘Ÿ๐‘œ๐‘ค−๐‘˜ 1−๐‘
1
[๐‘
][๐‘
]} [๐ผ1−๐‘ ]
๐‘๐‘˜๐‘˜ + ๐‘๐‘ ๐‘๐‘œ๐‘™−๐‘˜ ๐‘Ÿ๐‘œ๐‘ค−๐‘˜
Which gives
[๐‘๐‘›๐‘’๐‘ค ] = [๐‘๐‘œ๐‘Ÿ๐‘” ] −
1
[๐‘
][๐‘
]
๐‘๐‘˜๐‘˜ + ๐‘๐‘ ๐‘๐‘œ๐‘™−๐‘˜ ๐‘Ÿ๐‘œ๐‘ค−๐‘˜
This can be expanded to result
๐‘11
[๐‘๐‘›๐‘’๐‘ค ] = [ โ‹ฎ
๐‘๐‘1
โ‹ฏ
โ‹ฑ
โ‹ฏ
๐‘1(๐‘+1)
๐‘1๐‘
1
โ‹ฎ ]−
[ โ‹ฎ ] [๐‘(๐‘+1)1
๐‘
+
๐‘
๐‘˜๐‘˜
๐‘
๐‘๐‘๐‘
๐‘๐‘(๐‘+1)
The general element of row h and column i can be written as,
๐‘๐‘›๐‘’๐‘ค(โ„Ž,๐‘–) = ๐‘โ„Ž,๐‘– −
๐‘โ„Ž(๐‘+1) ๐‘(๐‘+1)๐‘–
๐‘๐‘˜๐‘˜ + ๐‘๐‘
โ‹ฏ ๐‘(๐‘+1)๐‘ ]
Case 4 – Adding an impedance ๐’๐’„ between an existing bus K and existing bus J
Case 4 – Addition of a branch between two existing buses
First a Row and Column is inserted to the bus impedance matrix as shown below.
Where
๐‘๐›ฝ = ๐‘๐‘—๐‘— + ๐‘๐‘˜๐‘˜ − 2๐‘๐‘—๐‘˜ + ๐‘๐‘
Now the newly added row and column is eliminated by the above-described Kron’s reduction as
๐‘๐‘›๐‘’๐‘ค(โ„Ž,๐‘–) = ๐‘โ„Ž,๐‘– −
๐‘โ„Ž(๐‘+1) ๐‘(๐‘+1)๐‘–
๐‘๐‘—๐‘— + ๐‘๐‘—๐‘˜ − 2๐‘๐‘—๐‘˜ + ๐‘๐‘
Sequential application of these four cases any network can be built.
Download