cst_matching_t_network
Design a T-section impedance matching network (L-C-L) to match source and load impedances at a given frequency. Accepts complex impedances and optional Q factor for network synthesis.
Instructions
Design a T-section impedance matching network (L-C-L). Dual of Pi-network, uses two back-to-back L-sections. Pure Python computation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q_factor | No | Desired loaded Q factor. Must be > sqrt(R_large/R_small - 1). If omitted, a default Q is chosen automatically. | |
| z_load_imag | No | Load reactance in ohms (default 0) | |
| z_load_real | Yes | Load resistance in ohms | |
| frequency_ghz | Yes | Design frequency in GHz | |
| z_source_imag | No | Source reactance in ohms (default 0) | |
| z_source_real | Yes | Source resistance in ohms |