skrf.circuit.Circuit.SeriesImpedance¶
- classmethod Circuit.SeriesImpedance(frequency, Z, name, z0=50)[source]¶
Return a 2-port network of a series impedance.
Passing the frequency and name is mandatory.
- Parameters:
frequency (
Frequency
) – Frequency common to all other networks in the circuitZ (complex array of shape n_freqs or complex) – Impedance
name (string) – Name of the series impedance
z0 (real, optional) – Characteristic impedance of the port. Default is 50 Ohm.
- Returns:
serie_impedance – 2-port network
- Return type:
Network
object
Examples
In [1]: freq = rf.Frequency(start=1, stop=2, npoints=101) In [2]: open = rf.Circuit.SeriesImpedance(freq, rf.INF, name='series_impedance')