Fault Analysis Using Z-Bus: Z Z V I
Fault Analysis Using Z-Bus: Z Z V I
1.0 Introduction
2
V1 Z11 Z1k Z1N 0
V f Z k1
row k
Z kk Z kN I f (5)
VN Z N1 Z Nk Z NN 0
Note that the right-hand-side results in, for
each row j, only the Zjk being multiplied by
a non-zero current. Therefore:
V1 Z1k I f
rowk V f Z kk I f (6)
VN Z Nk I f
We observe from row k that:
V f Z kk I f
(7)
Solving (7) for I’’f results in
Vf
I f
(8)
Z kk
3
V1 Z1k / Z kk V f
V f V f
row k (9)
VN Z Nk / Z kk V f
kk
f
kk
f
4
Now eq. (12) is useful for computing fault
currents in the circuits. Consider Fig. 1.
Zb
bus i bus j
Fig. 1
kk
f
Z
V V
jf
Z
Vj (14)jk
kk
f
b
jf
Vi V j
Zb
Z ik Z jk
(16)
V f
Zb Z b Z kk
5
We can use eq. (16) to get the fault current
in the circuits. These values provide us with
the appropriate information for selecting the
circuit breakers in the lines.
Z Z b
(17)
kk
jk
6
The last observation can be utilized in an
effective fashion when performing fault
analysis. Let’s assume that we want to
compute the short circuit currents for a fault
at only one bus k. So we just want to get the
kth column of Z-bus, but we do not need the
entire Z-bus.
7
1. Column of Z: We can just consider a
single column of Z, instead of the entire
matrix. Call it Zk; it is a column vector.
The right hand side of (19) will just be a
column of I. Call it Ik. It will also be just
a vector and will contain zeros in every
row except for row k. The resulting
relation is:
YZ I
k k (21)
2. LU-Decomposition: If you have taken
EE 456 or a linear algebra course in
math, then you are familiar with LU
decomposition. LU decomposition
provides a way to solve for the vector x
in the matrix relation
Ax b
(22)
where A is a n×n square matrix, x is an
unknown n×1 vector, and b is an known
n×1 vector. The advantage to LU
decomposition is it does not require
inverting the matrix A. The basis of LU-
decomposition is that we may factor A
into a matrix product LU, i.e.,
8
A LU
(23)
where L is a lower diagonal n×n matrix
of the form
l11 0 0
L l21 l22 0 (24)
l31 l32 l33
9
Now observe that eq. (21) and (22) are in the
same form. Therefore we want to solve the
following equations in the order they are
given:
Lw I (29) k
UZ w (30)
k
Factorization of a matrix Y can be done efficiently and easily using the matlab
command:
[L,U]=lu(Y)
Then it is easy to find w by hand using forward substitution from:
Lw I k
And then it is easy to find Z2 by hand using backwards substitution from:
UZ2 w
Alternatively, the manual steps of LU decomposition can be performed per the notes
from “LU Decomposition.”
10
Bus 2
j0.25 j0.40
Bus 4
Bus 3 Bus 1
j0.10 j0.10
11