Engineering:Zbus

From HandWiki

Z Matrix or bus impedance matrix in computing is an important tool in power system analysis. Though, it is not frequently used in power flow study, unlike Ybus matrix, it is, however, an important tool in other power system studies like short circuit analysis or fault study. The Zbus matrix can be computed by matrix inversion of the Ybus matrix. Since the Ybus matrix is usually sparse, the explicit Zbus matrix would be dense and very memory intensive to handle directly.

Context

Electric power transmission needs optimization. Only Computer simulation allows the complex handling required. The Zbus matrix is a big tool in that box.

Formulation

Z Matrix can be formed by either inverting the Ybus matrix or by using Z bus building algorithm. The latter method is harder to implement but more practical and faster (in terms of computer run time and number of floating-point operations per second) for a relatively large system.

Formulation:

[math]\displaystyle{ Z_{bus} = {Y_{bus}}^{-1} }[/math]

Because the Zbus is the inverse of the Ybus, it is symmetrical like the Ybus. The diagonal elements of the Zbus are referred to as driving-point impedances of the buses and the off-diagonal elements are called transfer impedances.[1]

One reason the Ybus is so much more popular in calculation is the matrix becomes sparse for large systems; that is, many elements go to zero as the admittance between two far away buses is very small. In the Zbus, however, the impedance between two far away buses becomes very large, so there are no zero elements, making computation much harder.

The operations to modify an existing Zbus are straightforward, and outlined in Table 1.

To create a Zbus matrix from scratch, we start by listing the equation for one branch:

[math]\displaystyle{ [V_1] = [Z_a][I_1] }[/math]

Then we add additional branches according to Table 1 until each bus is expressed in the matrix:

[math]\displaystyle{ \begin{bmatrix} V_1\\ V_2 \end{bmatrix} = \begin{bmatrix} Z_a & 0 \\ 0 & Z_b \end{bmatrix} \begin{bmatrix} I_1\\ I_2 \end{bmatrix} }[/math]

References

  1. Grainger, John; Stevenson, William (2003). Power System Analysis. McGraw-Hill. pp 284