11# LineDistributed Model
22
3- ` LineDistributed ` represents a distributed EMT line with
4- characteristic admittance $\mathbf{y}_ c$ and propagation model $\mathbf{H }$.
3+ ` LineDistributed ` represents a distributed EMT line with characteristic
4+ admittance $\mathbf{y}_ c$ and propagation model $\mathbf{h }$.
55
66## Block Diagram
77
@@ -13,11 +13,9 @@ characteristic admittance $\mathbf{y}_c$ and propagation model $\mathbf{H}$.
1313
1414## Model Parameters
1515
16- Symbol | Units | JSON | Description | Note
17- ----------------- | ----------- | ------------ | ------------------------------------------------------ | ----
18- $\mathbf{P}_ \phi$ | [ -] | ` conductors ` | Permutation matrix mapping each conductor to its phase | $\mathbf{P}_ \phi \in \mathbb{R}^{N \times K}$
19- $\mathbf{y}_ c$ | [ S] | ` Yc ` | Characteristic admittance | $\mathbf{y}_ c \in \mathbb{R}^{K \times N}$
20- $\mathbf{h}$ | [ -] | ` H ` | Propagation function | $\mathbf{h} \in \mathbb{R}^{K \times K}$
16+ Symbol | Units | JSON | Description | Note
17+ ----------------- | ----- | ------------ | ------------------------------------------------------ | ----
18+ $\mathbf{P}_ \phi$ | [ -] | ` conductors ` | Permutation matrix mapping each conductor to its phase | $\mathbf{P}_ \phi \in \mathbb{R}^{N \times K}$
2119
2220### Parameter Validation
2321
2826The number of phases $N$ and conductors $K$ are the row and column counts of
2927$\mathbf{P}_ \phi$, respectively.
3028
29+ ### Submodels
30+
31+ Submodel | Inputs | Parameters | Outputs
32+ -------- | ------ | ---------- | -------
33+ [ ` VectorFit ` ] ( ../../../Operators/Rational/VectorFit/README.md ) characteristic admittance $\mathbf{y}_ c$ | $\mathbf{v}_ {1}\in\mathbb{R}^N$ | ` Yc ` | $\mathbf{i}^{\mathrm{sh}}_ {1}\in\mathbb{R}^K$
34+ [ ` VectorFit ` ] ( ../../../Operators/Rational/VectorFit/README.md ) characteristic admittance $\mathbf{y}_ c$ | $\mathbf{v}_ {2}\in\mathbb{R}^N$ | ` Yc ` | $\mathbf{i}^{\mathrm{sh}}_ {2}\in\mathbb{R}^K$
35+ [ ` Propagation ` ] ( ../../../Operators/Shift/Propagation/README.md ) $\mathbf{h}$ | $2\mathbf{i}^{\mathrm{sh}}_ {2}-\mathbf{i}^{\mathrm{inc}}_ {2}$ | ` H ` | $\mathbf{i}^{\mathrm{inc}}_ {1}\in\mathbb{R}^K$
36+ [ ` Propagation ` ] ( ../../../Operators/Shift/Propagation/README.md ) $\mathbf{h}$ | $2\mathbf{i}^{\mathrm{sh}}_ {1}-\mathbf{i}^{\mathrm{inc}}_ {1}$ | ` H ` | $\mathbf{i}^{\mathrm{inc}}_ {2}\in\mathbb{R}^K$
37+
3138## Model Variables
3239
3340### Internal Variables
@@ -77,18 +84,18 @@ None.
7784``` math
7885\begin{aligned}
7986\mathbf{i}^{\mathrm{sh}}_{1} &=
80- \mathbf{y}_c*\,\ mathbf{v}_{1} \\
87+ \mathbf{y}_c*\mathbf{v}_{1} \\
8188\mathbf{i}^{\mathrm{sh}}_{2} &=
82- \mathbf{y}_c*\,\ mathbf{v}_{2} \\
89+ \mathbf{y}_c*\mathbf{v}_{2} \\
8390\mathbf{i}^{\mathrm{inc}}_{1} &=
84- \mathbf{h}*\,\ left(
85- 2\,\ mathbf{i}^{\mathrm{sh}}_{2}
91+ \mathbf{h}*\left(
92+ 2\mathbf{i}^{\mathrm{sh}}_{2}
8693 -
8794 \mathbf{i}^{\mathrm{inc}}_{2}
8895 \right) \\
8996\mathbf{i}^{\mathrm{inc}}_{2} &=
90- \mathbf{h}*\,\ left(
91- 2\,\ mathbf{i}^{\mathrm{sh}}_{1}
97+ \mathbf{h}*\left(
98+ 2\mathbf{i}^{\mathrm{sh}}_{1}
9299 -
93100 \mathbf{i}^{\mathrm{inc}}_{1}
94101 \right) \\
@@ -115,10 +122,10 @@ equations:
115122
116123``` math
117124\begin{aligned}
118- \mathbf{i}^{\mathrm{sh}}_{1,0} &= \mathbf{y}_c*\,\ mathbf{v}_{1,0} \\
119- \mathbf{i}^{\mathrm{sh}}_{2,0} &= \mathbf{y}_c*\,\ mathbf{v}_{2,0} \\
120- \mathbf{i}^{\mathrm{inc}}_{1,0} &= \mathbf{h}*\,\ left(2\, \mathbf{i}^{\mathrm{sh}}_{2,0} - \mathbf{i}^{\mathrm{inc}}_{2,0}\right) \\
121- \mathbf{i}^{\mathrm{inc}}_{2,0} &= \mathbf{h}*\,\ left(2\, \mathbf{i}^{\mathrm{sh}}_{1,0} - \mathbf{i}^{\mathrm{inc}}_{1,0}\right)
125+ \mathbf{i}^{\mathrm{sh}}_{1,0} &= \mathbf{y}_c*\mathbf{v}_{1,0} \\
126+ \mathbf{i}^{\mathrm{sh}}_{2,0} &= \mathbf{y}_c*\mathbf{v}_{2,0} \\
127+ \mathbf{i}^{\mathrm{inc}}_{1,0} &= \mathbf{h}*\left(2\mathbf{i}^{\mathrm{sh}}_{2,0} - \mathbf{i}^{\mathrm{inc}}_{2,0}\right) \\
128+ \mathbf{i}^{\mathrm{inc}}_{2,0} &= \mathbf{h}*\left(2\mathbf{i}^{\mathrm{sh}}_{1,0} - \mathbf{i}^{\mathrm{inc}}_{1,0}\right)
122129\end{aligned}
123130```
124131
0 commit comments