skrf.media.freespace.Freespace.delay_load¶
-
Freespace.
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 transmissin 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
match()
, which is called initially to create a ‘blank’ network.
Returns: delay_load – a delayed load
Return type: Network
objectExamples
>>> my_media.delay_load(-.5, 90, 'deg', Z0=50)
Notes
This calls
line(d,unit, **kwargs) ** load(Gamma0, **kwargs)