How to Model RLGC Transmission Line

This article covers:

  • Transmission line (TL) equation and its solution
  • Input impedance of a terminated TL
  • Conversion between RLGC and γZ parameters
  • S, Z, Y and ABCD Parameters of TL
  • Examples of obtaining parameters from simulation

Transmission Line

Transmission Line Equation

Lumped Model of Transmission Lines

We have

Divide them by $\Delta z$ and set $\Delta z\to0$

For the sinusoidal steady-state condition

With manipulation, it turns into

where

The solution is

$V(z)$ can be used to derive $I(z)$ as

we have

The solution of $V(z)$ can be written in the time domain as $\mathrm{Re}[V(z)e^{j\omega t}]$

where we have

For lossless lines $\beta=\omega\sqrt{LC}$

Terminated Transmission Line

Transmission Line with Load

Since

The ratio of the reflected voltage wave amplitude to the incident voltage wave amplitude is defined as the voltage reflection coefficient:

Using reflection coefficient, we may rewrite the transmission line solution as

The maximal voltage amplitude to the minimal voltage amplitude is defined as standing wave ratio (SWR):

At arbitrary point, the reflection coefficient is

and input impedance is

For lossless lines

Thus

  • For a quarter-wavelength transmission line where $\beta l=\pi/2$, we have

  • An open stub where $Z_L=\infty$

  • An short stub where $Z_l=0$

Parameter Conversion

γZ to RLCG

S, Z, Y and ABCD Parameters

Note that $Z$ is the characteristic impedance of the transmission line, and $Z_0$ is the characteristic impedance of the measurement system.

Distortionless Line

In a lossy line, the phase term $\beta$ is generally a complicated function of frequency $\omega$. If $\beta$ is not a linear function of frequency, the phase velocity can vary with frequency, causing signal dispersion. However, for the lossy lines, when

it is still distortionless. In this case

Parameters Extraction

Direct Simulation

The characteristic impedance can be obtained from direct simulation. First, two ports of identical impedance are connected to the sides of the TL. Then, a parameter sweep of the port impedance is conducted at the intended frequency. The impedance that have the lowest reflection can be used as characteristic impedance.

simulation_schematic

Real part of characteristic impedance is given by

real_of_Z

Also, we note that when the characteristic impedance matches, the gain of the TL can be written as

Hence, we have

The above equations can be used to solve for γ. In this case, we have a TL length of $400\times10^{-6} \mathrm{m}$ and $S_{21}|_{Z=Z_0}=-0.22 dB/-28.95^\circ$. We can write

Calculation

Alternatively, the parameters of a TL can be calculation directly from S parameters. This function is supported in Matlab. Calculation process is as follows:

1
2
3
4
5
6
7
8
9
10
PolartoComplex = @(len, the) len*cos(the*pi/180) + 1i*len*sin(the*pi/180);

S11 = PolartoComplex(0.019, 9.658);
S12 = PolartoComplex(0.975, -28.942);
S21 = PolartoComplex(0.975, -28.942);
S22 = PolartoComplex(0.019, 9.658);
length = 400e-6; % length of transmission line
freq = 28e9; % frequency of simulation
Z0 = 50;
rlgc_params = s2rlgc([S11, S12; S21, S22], length, freq, Z0)

Corresponding output is

1
2
3
4
5
6
7
    R: 5.1717e+03
L: 3.6799e-07
G: 0.4737
C: 1.4002e-10
alpha: 62.5539
beta: 1.2634e+03
Zc: 51.3183 - 1.5526i

Verification of the Model

8 RLGC segments are used for verification

lumped_mimic_distributed

Detailed schematic of each one

detailed_schematic

Results

simulation_result

Appendix

Field Solution

which can be transformed into

For that matter

We can use a complex permittivity to represent the loss and set $\sigma=0$

The intrinsic impedance is complex

Low-Loss Approximation

For a low-loss line both conductor and dielectric loss will be small

we have

How to convert $\gamma,Z$ parameters to $A, \epsilon_{eff},Z$ parameters?

where $\epsilon'=\epsilon_0\epsilon_{eff}$ and $Z_0=\sqrt{\mu_0/\epsilon_0}=377 \Omega$. These translates to

Reference

  1. W. R. Eisenstadt and Y. Eo, "S-parameter-based IC interconnect transmission line characterization," in IEEE Transactions on Components, Hybrids, and Manufacturing Technology, vol. 15, no. 4, pp. 483-490, Aug. 1992. DOI: 10.1109/33.159877
  2. David M. Pozar. Microwave engineering.
0%