Function to calculate an equivalent parallel RC network from an input series RC network.
// 10 pF
Cs=10e-12;
// 0.5 Ohms
Rs=0.5;
// This value will be replaced
Qs=100;
// 100 MHz operation
f=100e6;
// Use Rs (and calculate Qs)
flag=0;
[Cs, Rs, Qs, Cp, Rp, Qp] = parallel_rc_s2p(Cs, Rs,
Qs, f, flag);
disp(sprintf('Equivalent parallel C = %g pF', Cp/1e-12));
disp(sprintf('Equivalent parallel R = %g kOhm', Rp/1e3));
disp(sprintf('Quality factor =%g',Qp));
air_coil_calc
air_coil_syn
coax_calc
bars_calc
coax_syn
coplanar_calc
coplanar_syn
coupled_microstrip_calc
coupled_microstrip_syn
coupled_stripline_calc
coupled_stripline_syn
ic_microstrip_calc
ic_microstrip_syn
microstrip_calc
microstrip_syn
parallel_rc_p2s
parallel_rc_s2p
stripline_calc
stripline_syn
Dan McMahill
None known
Please report any bugs on the Wcalc Sourceforge Project Page