skrf.media.mline.MLine.delay_load

MLine.delay_load(Gamma0, d, unit='deg', **kwargs)

Delayed load.

A load with reflection coefficient Gamma0 at the end of a matched line of length d.

Parameters:
  • Gamma0 (number, array-like) – reflection coefficient of load (not in dB)

  • d (number) – the length of transmission line (see unit argument)

  • unit (['deg','rad','m','cm','um','in','mil','s','us','ns','ps']) – the units of d. See to_meters(), for details

  • **kwargs (key word arguments) – passed to line() and load()

Returns:

delay_load – a delayed load

Return type:

Network object

Examples

>>> my_media.delay_load(-.5, 90, 'deg', Z0=50)

Notes

This calls

line(d, unit, **kwargs) ** load(Gamma0, **kwargs)

See also

line

creates the network for line

load

creates the network for the load

delay_short, delay_open