|
Velocity Factor
|
Velocity Factor
|
Velocity Factor
SimSmith TL k0k1k2 Mdl
|
SimSmith TL k0k1k2 and twinlead Mdls
|
SimSmith Loss Plot Text |
---|
//Plots $Zo=Fo[]; $Zs=Fs[]; $SRL=IndB(Mag(Gamma($Zs))); $ORL=IndB(Mag(Gamma($Zo))); $ARL=-($SRL+$ORL)/4*100/len; Plot("ARL",$ARL); $t = Sqrt($Zo/$Zs); $loss = 0.5 * IndB(Mag((1+$t)/(1-$t))) * 100/len; Plot("ML",$loss); $zo = Sqrt($Zo * $Zs); Plot("Zo",$zo.M,"Ohm",y2); Plot(k1*Sqrt(G.MHz)); |
SimSmith Vf Text |
// Vf, Chipman Equation 7.29 $Quarter = 245.8935 / G.MHz; $t = Sqrt($Zs/$Zo); $aa=((1+$t)/(1-$t)); $ang=$aa.A; for($n=0;$n<20;$n++) { $TL = 90/(($ang + (360 * $n)) / (2 * len)); Vf = $TL/$Quarter; if((Vf > MinVf) && (Vf < MaxVf)) { Plot(Vf,"Vf",y2); break; } } |