πŸŽ“ Lesson 4 D3

Building the Admittance Matrix (Y-Bus) from Line & Transformer Data

The admittance matrix (Y-Bus) is a mathematical map that shows how easily electricity can flow between every pair of nodes in a power network.

🎯 Learning Objectives

  • βœ“ Calculate self- and mutual-admittance entries for a 3-bus system given line R/X/B and transformer tap/impedance data
  • βœ“ Design a Y-Bus matrix from raw equipment data by applying proper sign conventions and per-unit normalization
  • βœ“ Analyze the impact of transformer tap settings and line shunt susceptance on Y-Bus sparsity and diagonal dominance
  • βœ“ Explain why Y-Bus is symmetric only for lossless, untransposed networks without phase-shifting transformers
  • βœ“ Apply Y-Bus construction rules to detect and correct common modeling errors (e.g., missing shunt terms, incorrect tap modeling)

πŸ“– Why This Matters

The Y-Bus matrix is the foundational 'engine' behind every modern load flow solution β€” from mine site microgrids powering haul trucks and crushers to regional grids feeding processing plants. Without an accurate Y-Bus, voltage profiles, reactive power dispatch, and contingency analysis fail silently β€” risking equipment damage, unstable comminution circuits, or unplanned mill shutdowns. In mining, where distributed generation (e.g., solar-diesel hybrids) and dynamic loads (SAG mills, conveyor VFDs) interact, a correctly built Y-Bus ensures reliable, safe, and cost-effective power system operation.

πŸ“˜ Core Principles

Y-Bus construction begins with modeling each network element (line, transformer, shunt device) as an equivalent admittance. Transmission lines are represented using Ο€-models: series impedance (R + jX) converted to series admittance (Y_series = 1/(R + jX)), plus half the total shunt susceptance (jB/2) at each end. Two-winding transformers are modeled either as ideal taps with series impedance (requiring off-diagonal correction via Kron reduction) or as Ο€-equivalents with modified admittances accounting for tap ratio (a). The matrix is inherently sparse β€” most entries are zero β€” reflecting physical connectivity. Diagonal dominance is critical for numerical convergence in iterative load flow solvers; it depends on proper inclusion of shunt elements (e.g., line charging, transformer magnetizing branches) and realistic R/X ratios. Grounding and phase representation (positive-sequence vs. full 3-phase) further determine matrix structure and size.

πŸ“ Key Calculation: Y-Bus Entry Formulation

Each Y_ij entry is computed based on physical connection: diagonal entries Y_ii sum all admittances incident to bus i; off-diagonal Y_ij = –Y_line_ij if buses i and j are directly connected, else 0. Transformer modeling requires special handling when taps are present.

πŸ’‘ Worked Example

Problem: A 13.8 kV mine distribution system has Bus 1–Bus 2 connected by a 5 km overhead line: R = 0.25 Ξ©/km, X = 0.45 Ξ©/km, B_total = 4.2 ΞΌS/km. A 13.8/4.16 kV transformer (Z% = 6.5%, S_base = 10 MVA) connects Bus 2–Bus 3 with tap ratio a = 1.05 (LV side tapped). Use 10 MVA, 13.8 kV base. Calculate Y_11, Y_12, Y_22, and Y_23.
1. Step 1: Compute line Z_line = (0.25 + j0.45) Γ— 5 = 1.25 + j2.25 Ξ© β†’ Y_series = 1/(1.25 + j2.25) = 0.172 βˆ’ j0.309 S.
2. Step 2: Compute shunt B_line = (4.2 Γ— 10⁻⁢ S/km Γ— 5 km)/2 = 10.5 ΞΌS per end β†’ j0.0000105 S (negligible at 10 MVA base; omitted for clarity).
3. Step 3: Per-unit Y_series = (0.172 βˆ’ j0.309) / (13.8Β² / 10) = (0.172 βˆ’ j0.309) / 19.044 = 0.00903 βˆ’ j0.01622 pu.
4. Step 4: Y_11 = Y_22 = Y_series = 0.00903 βˆ’ j0.01622 pu; Y_12 = Y_21 = βˆ’Y_series = βˆ’0.00903 + j0.01622 pu.
5. Step 5: Transformer Z_pu = j0.065; Y_trans = 1/(j0.065) = βˆ’j15.3846 pu; Y_22 += aΒ² Γ— Y_trans = (1.05)Β² Γ— (βˆ’j15.3846) = βˆ’j16.962 pu; Y_33 += Y_trans = βˆ’j15.3846 pu; Y_23 = Y_32 = βˆ’a Γ— Y_trans = βˆ’1.05 Γ— (βˆ’j15.3846) = +j16.154 pu.
Answer: Y_11 = 0.00903 βˆ’ j0.01622 pu; Y_12 = βˆ’0.00903 + j0.01622 pu; Y_22 β‰ˆ 0.00903 βˆ’ j16.978 pu; Y_23 = +j16.154 pu. Diagonal dominance preserved at Bus 2 despite large transformer susceptance due to correct tap scaling.

πŸ—οΈ Real-World Application

At Newmont’s Boddington Gold Mine (Western Australia), a 66 kV internal grid feeds three crushing stations and a 220 MW SAG mill. During a load flow upgrade, engineers discovered voltage violations at Crusher Substation due to an incorrectly modeled 66/11 kV step-down transformer: the Y-Bus omitted tap-dependent admittance scaling, causing underestimation of reactive injection by 18 MVAr. Correcting the Y-Bus using IEEE C57.12.00 tap conventions and including 0.3% no-load loss (as parallel G branch) resolved convergence failures and aligned simulated voltage drops with SCADA telemetry within Β±0.4%.

πŸ“š References