1- # Branch Model
1+ # Transmission Line Branch Model
22
33Transmission lines and different types of transformers (traditional, Load
44Tap-Changing transformers (LTC) and Phase Angle Regulators (PARs)) can be
55modeled with a common branch model.
66
7- ## Transmission Line Model
8-
97The most common circuit that is used to represent the transmission line model
108is $` \pi ` $ circuit as shown in Figure 1. The positive flow direction is into
119buses. Commonly used convention is to define positive direction to be from
@@ -18,75 +16,74 @@ provides more flexibility for modeling.
1816 Figure 1: Transmission line $` \pi ` $ equivalent circuit
1917</div >
2018
21- Here
22- ``` math
23- Z = R + jX
24- ```
25- and
19+ ## Model Parameters
20+
21+ Symbol | Units | Description | Note
22+ ------------|---------|---------------------------------| ------
23+ $R$ | [ p.u.] | Branch series resistance |
24+ $X$ | [ p.u.] | Branch series reactance |
25+ $G$ | [ p.u.] | Branch shunt conductance |
26+ $B$ | [ p.u.] | Branch shunt susceptance |
27+
28+ ### Model Derived Parameters
29+ Note the difference between little-g and big-G, little-b, big-B in these equations.
2630``` math
27- Y = G + jB,
28- ```
29- where $` R ` $ is line series resistance, $` X ` $ is line series reactance, $` B ` $ is
30- line shunt charging, and $` G ` $ is line shunt conductance. As can be seen from
31- Figure 1 total $` B ` $ and $` G ` $ are separated between two buses. The current
32- entering bus 1 can be obtained from Kirchhoff's current law as
33- ``` math
34- I_1 = y(V_2 - V_1) - \frac{Y}{2} V_1,
35- ```
36- where $` V_1 ` $ and $` V_2 ` $ are respective bus voltages and
37- ``` math
38- y = \frac{1}{Z} = \frac{R}{R^2+X^2} + j\frac{-X}{R^2+X^2} = g + jb.
39- ```
40- Similarly, current entering bus 2 is given as
41- ``` math
42- I_2 = y(V_1 - V_2) + \frac{Y}{2} V_2.
43- ```
44- These equations can be written in a compact form as:
45- ``` math
46- \begin{bmatrix}
47- I_{1}\\
48- I_{2}
49- \end{bmatrix}
50- = \mathbf{Y}
51- \begin{bmatrix}
52- V_{1}\\
53- V_{2}
54- \end{bmatrix}
55- ```
56- where:
57- ``` math
58- \mathbf{Y}_{TL}=\begin{bmatrix}
59- -(g + jb) - \dfrac{G+jB}{2} & g + jb \\
60- g + jb & -(g + jb) - \dfrac{G+jB}{2}
61- \end{bmatrix}
31+ \begin{aligned}
32+ g &=\dfrac{R}{R^2 + X^2} \\
33+ b &= -\dfrac{X}{R^2 + X^2}\\
34+ \end{aligned}
6235```
6336
64- ### Branch contributions to residuals at adjacent buses
6537
66- After some algebra, one obtains expressions for real and imaginary components
67- for the currents entering adjacent buses:
68- ``` math
69- I_{r1} = -\left(g + \frac{G}{2}\right) V_{r1} + \left(b + \frac{B}{2} \right) V_{i1}
70- + g V_{r2} - b V_{i2}
71- ```
38+ ## Model Variables
7239
73- ``` math
74- I_{i1} = -\left(b + \frac{B}{2} \right) V_{r1} - \left(g + \frac{G}{2}\right) V_{i1}
75- + b V_{r2} + g V_{i2}
76- ```
40+ ### Internal Variables
7741
78- ``` math
79- I_{r2} = g V_{r1} - b V_{i1}
80- - \left(g + \frac{G}{2}\right) V_{r2} + \left(b + \frac{B}{2} \right) V_{i2}
81- ```
42+ #### Differential
43+ None.
8244
83- ``` math
84- I_{i2} = b V_{r1} + g V_{i1}
85- - \left(b + \frac{B}{2} \right) V_{r2} - \left(g + \frac{G}{2}\right) V_{i2}
45+ #### Algebraic
46+
47+ Symbol | Units | Description | Note
48+ ------------|---------|---------------------------------| ------
49+ $I_ {r1}$ | [ p.u.] | Terminal current, real component, bus 1 | Read by bus
50+ $I_ {i1}$ | [ p.u.] | Terminal current, imaginary component, bus 1 | Read by bus
51+ $I_ {r2}$ | [ p.u.] | Terminal current, real component, bus 2 | Read by bus
52+ $I_ {i2}$ | [ p.u.] | Terminal current, imaginary component, bus 2 | Read by bus
53+
54+
55+ ### External Variables
56+
57+ #### Differential
58+ None.
59+
60+ #### Algebraic
61+ Symbol | Units | Description | Note
62+ ------------|---------|---------------------------------| ------
63+ $V_ {r1}$ | [ p.u.] | Terminal voltage, real component, bus 1 | owned by bus object
64+ $V_ {i1}$ | [ p.u.] | Terminal voltage, imaginary component, bus 1 | owned by bus object
65+ $V_ {r2}$ | [ p.u.] | Terminal voltage, real component, bus 2 | owned by bus object
66+ $V_ {i2}$ | [ p.u.] | Terminal voltage, imaginary component, bus 2 | owned by bus object
67+
68+
69+ ## Model Equations
70+
71+ ### Differential Equations
72+ None.
73+
74+ ### Algebraic Equations
75+ ``` math
76+ \begin{aligned}
77+ 0 &= - I_{r1} -\left(g + \dfrac{G}{2}\right) V_{r1} + \left(b + \dfrac{B}{2}\right) V_{i1} + g V_{r2} - b V_{i2}\\
78+ 0 &= I_{i1} - \left(b + \dfrac{B}{2}\right) V_{r1} - \left(g + \dfrac{G}{2}\right) V_{i1} + b V_{r2} + g V_{i2}\\
79+ 0 &= I_{r2} + g V_{r1} - b V_{i1} - \left(g + \dfrac{G}{2}\right) V_{r2} + \left(b + \dfrac{B}{2}\right) V_{i2}\\
80+ 0 &= I_{i2} + b V_{r1} + g V_{i1} - \left(b + \dfrac{B}{2}\right) V_{r2} - \left(g + \dfrac{G}{2}\right) V_{i2}
81+ \end{aligned}
8682```
8783
8884
89- ## Transformer Branch Model
85+
86+ # Transformer Branch Model
9087
9188** Note: Transformer model not yet implemented**
9289
0 commit comments