TSectionLCL

class pmrf.models.components.sections.TSectionLCL(L1: Any, C: Any, L2: Any, *, name: str | None = None, metadata: Any = None)

Bases: Model

A 2-port model of a Tee-network with an Inductor-Capacitor-Inductor topology.

This is the dual of the Pi-CLC network. It consists of a series inductor (L1), a shunt capacitor (C), and a second series inductor (L2). It is often used for low-pass filtering and impedance matching.

Parameters:
  • L1 (Param) – The value of the first series inductor in Henrys.

  • C (Param) – The value of the shunt capacitor in Farads.

  • L2 (Param) – The value of the second series inductor in Henrys.

C: AbstractVariable | Inexact[jaxlib._jax.Array, '...']

The value of the shunt capacitor in Farads.

L1: AbstractVariable | Inexact[jaxlib._jax.Array, '...']

The value of the first series inductor in Henrys.

L2: AbstractVariable | Inexact[jaxlib._jax.Array, '...']

The value of the second series inductor in Henrys.