DC Extrapolation for Time Domain

When converting S-parameters to time domain the frequency points should be equally spaced and start from 0 Hz. Usually VNA doesn’t measure down to DC and DC point should be added afterwards.

When a DC point measurement is added it might be the case that frequency point spacing between the DC and the first measured point is not equal to the spacing between the other measured points. Since time domain conversion relies on Fourier transform that assumes regularly spaced points, the measurements should also be resampled to be equally spaced.

[1]:
%matplotlib inline
import skrf as rf
from skrf.media import Coaxial
import matplotlib.pyplot as plt
from skrf.plotting import stylely
stylely()
[2]:
freq = rf.Frequency(0.11, 110, 401, 'GHz')
coax1mm = Coaxial(freq, Dint=0.44e-3, Dout=1.0e-3, sigma=1e20)

X = coax1mm.line(10, unit='mm', z0=50, name='X')
Y = coax1mm.line(80, unit='mm', z0=75, name='Y')
dut = X**Y**X
dut.name = 'Original'

dut_dc = dut.extrapolate_to_dc(dc_sparam=[[0,1],[1,0]], kind='cubic')
dut_dc.name = 'Extrapolated'
[3]:
plt.figure()
plt.title('Step response')
dut.s11.plot_z_time_step()
dut_dc.s11.plot_z_time_step()
/home/docs/checkouts/readthedocs.org/user_builds/scikit-rf/envs/latest/lib/python3.10/site-packages/skrf/network.py:4595: RuntimeWarning: Frequency doesn't begin from 0. Step response will not be correct.
  x, y = self.step_response(**t_func_kwargs)
../../_images/examples_networktheory_DC_Extrapolation_for_Time_Domain__4_1.png

Interpolation method comparison

[4]:
# Frequency points for measurements to be interpolated
# Frequencies from 0 to 1 GHz are missing
freq = rf.F(1, 110, 601, 'GHz')
# Frequency for ideal
freq2 = rf.F(0, 110, 602, 'GHz')
coax1mm = Coaxial(freq, z0=50, Dint=0.44e-3, Dout=1.0e-3, sigma=1e20)
coax1mm2 = Coaxial(freq2, z0=50, Dint=0.44e-3, Dout=1.0e-3, sigma=1e20)

# Generate the DUT
X = coax1mm.line(10, 'mm', z0=50, name='X')
Y = coax1mm.line(80, 'mm', z0=75, name='Y')
dut = X**Y**X

# DUT with full frequencies for comparison
X2 = coax1mm2.line(10, 'mm', z0=50, name='X')
Y2 = coax1mm2.line(80, 'mm', z0=75, name='Y')
dut_ideal = X2**Y2**X2
dut_ideal.name = 'ideal'

# Extrapolate to DC with different methods
dut_dc_rational = dut.extrapolate_to_dc(kind='rational', dc_sparam=[[0,1],[1,0]])
dut_dc_rational.name = 'rational'
dut_dc_linear = dut.extrapolate_to_dc(kind='linear', dc_sparam=[[0,1],[1,0]])
dut_dc_linear.name = 'linear'
dut_dc_cubic = dut.extrapolate_to_dc(kind='cubic', dc_sparam=[[0,1],[1,0]])
dut_dc_cubic.name = 'cubic'
/home/docs/checkouts/readthedocs.org/user_builds/scikit-rf/envs/latest/lib/python3.10/site-packages/skrf/tlineFunctions.py:159: RuntimeWarning: divide by zero encountered in divide
  return sqrt(rho/(pi*f*mu_r*mu_0))
[5]:
plt.figure()
plt.title('Step Response')
dut_ideal.s11.plot_z_time_step()
dut_dc_rational.s11.plot_z_time_step()
dut_dc_cubic.s11.plot_z_time_step()
dut_dc_linear.s11.plot_z_time_step()
../../_images/examples_networktheory_DC_Extrapolation_for_Time_Domain__7_0.png
[6]:
dut_ideal.s11['0-2ghz'].plot_s_smith()
dut_dc_rational.s11['0-2ghz'].plot_s_smith()
dut_dc_cubic.s11['0-2ghz'].plot_s_smith()
dut_dc_linear.s11['0-2ghz'].plot_s_smith()
../../_images/examples_networktheory_DC_Extrapolation_for_Time_Domain__8_0.png

Interpolation basis

By default S-parameters are interpolated, but it’s possible to interpolate also other parameters such as T, ABCD, Z or Y-parameters.

Usually S-parameters are the best choice, but in this case T-parameters give better results. Note that T-parameters are defined only for two-ports with non-zero S21. It probably isn’t the best choice in most cases but for well matched transmissive two-ports it might be worth trying.

[7]:
dut_dc_cubic_t = dut.extrapolate_to_dc(kind='cubic', dc_sparam=[[0,1],[1,0]], basis='t')
dut_dc_cubic_t.name = 'cubic T'
dut_dc_cubic.name = 'cubic S'

plt.figure()
plt.title('Step Response')
dut_ideal.s11.plot_z_time_step()
dut_dc_cubic.s11.plot_z_time_step()
dut_dc_cubic_t.s11.plot_z_time_step()
../../_images/examples_networktheory_DC_Extrapolation_for_Time_Domain__11_0.png
[8]:
dut_ideal.s11['0-2ghz'].plot_s_smith()
dut_dc_cubic.s11['0-2ghz'].plot_s_smith()
dut_dc_cubic_t.s11['0-2ghz'].plot_s_smith()
../../_images/examples_networktheory_DC_Extrapolation_for_Time_Domain__12_0.png
[ ]: