skrf.circuit.Circuit.Port¶
- classmethod Circuit.Port(frequency, name, z0=50)[source]¶
Return a 1-port Network to be used as a Circuit port.
- Parameters:
frequency (
Frequency
) – Frequency common to all other networks in the circuitname (string) – Name of the port.
z0 (real, optional) – Characteristic impedance of the port. Default is 50 Ohm.
- Returns:
port – 1-port network
- Return type:
Network
object
Examples
In [1]: freq = rf.Frequency(start=1, stop=2, npoints=101) In [2]: port1 = rf.Circuit.Port(freq, name='Port1')