Welcome to Microwave Amplifier β a MATLAB project that helps you compute important metrics for RF transistor amplifiers like Delta, Stability Factor (K), and Maximum Transducer Gain (Gt) using S-parameters.
All the heavy lifting is wrapped in clean, modular helper functions for clarity and reusability. Designed for RF enthusiasts, students, and engineers working in the microwave domain!
- π Converts polar to cartesian S-parameters
- π Calculates Delta (Ξ) and Stability Factor (K)
- π― Determines optimal source/load reflection coefficients (Οβ and Οβ)
- π Computes maximum gain: Gs, Gl, Go, and Gt
- π‘ Modular function-based structure for clarity
% Transistor AT-41411 @ 3GHz
S11_mag = 0.529;
S11_phase = 139.153;
S21_mag = 2.896;
S21_phase = 55.280;
S12_mag = 0.098;
S12_phase = 60.012;
S22_mag = 0.335;
S22_phase = -27.192;
% Run the script and watch the magic happen!