skrf.circuit.Circuit.Open¶
- classmethod Circuit.Open(frequency, name, z0=50)[source]¶
Return a 2-port network of an open link.
Passing the frequency and name is mandatory.
The open link is modelled as an infinite series impedance.
- Parameters:
frequency (
Frequency
) – Frequency common to all other networks in the circuitname (string) – Name of the open.
z0 (real, optional) – Characteristic impedance of the port. Default is 50 Ohm.
- Returns:
open – 2-port network
- Return type:
Network
object
Examples
In [1]: freq = rf.Frequency(start=1, stop=2, npoints=101) In [2]: open = rf.Circuit.Open(freq, name='open')