Adam Cooman

YZSHGABT
YY→ZY→SY→HY→GY→AY→BY→T
ZZ→YZ→SZ→HZ→GZ→AZ→BZ→T
SS→YS→ZS→HS→GS→AS→BS→T
HH→YH→ZH→SH→GH→AH→BH→T
GG→YG→ZG→SG→HG→AG→BG→T
AA→YA→ZA→SA→HA→GA→BA→T
BB→YB→ZB→SB→HB→GB→AB→T
TT→YT→ZT→ST→HT→GT→AT→B

From Y-parameters to A-parameters

In matrix form, the formula is

A=([0010]Y+[1000])([0001]Y+[0100])1\mathbf{A} =\left(\begin{bmatrix} 0 & 0\\ 1 & 0 \end{bmatrix}\,\mathbf{Y}+\begin{bmatrix} 1 & 0\\ 0 & 0 \end{bmatrix}\right)\,{\left(\begin{bmatrix} 0 & 0\\ 0 & -1 \end{bmatrix}\,\mathbf{Y}+\begin{bmatrix} 0 & 1\\ 0 & 0 \end{bmatrix}\right)}^{-1}

While for each element, we obtain

A11=Y22Y21A12=1Y21A21=Y11Y22Y12Y21Y21A22=Y11Y21\begin{align*}A_{11} &=-\frac{Y_{22}}{Y_{21}}\\A_{12} &=-\frac{1}{Y_{21}}\\A_{21} &=-\frac{Y_{11}\,Y_{22}-Y_{12}\,Y_{21}}{Y_{21}}\\A_{22} &=-\frac{Y_{11}}{Y_{21}}\\\end{align*}

The formulas are obtained with the methods explained here. The MATLAB implementation can be found in circuitconversions on Gitlab.

Definitions

[I1I2]=Y[V1V2]\begin{bmatrix}I_1 \\I_2\end{bmatrix} = \mathbf{Y}\begin{bmatrix}V_1 \\V_2\end{bmatrix}

[V1I1]=A[V2I2]\begin{bmatrix}V_1 \\I_1\end{bmatrix} = \mathbf{A}\begin{bmatrix}V_2 \\-I_2\end{bmatrix}