Monday 29 June 2015

Short dipole antenna impedance model (Python code)

from math import log
from numpy import pi, tan
from numpy.polynomial.polynomial import polyval


# Short dipole antenna impedance model

f = 27e6             # frequency
La = 1.4             # total dipole length
Dia = 0.001          # diameter of the conductor

wavelen = 3e8/f
k = 2*pi/wavelen     # wave number
z = k*La/2;
R = polyval(z, [-0.4787, 7.3246, 0.3963, 15.6131])
X = polyval(z, [-0.4456, 17.00826, -8.6793, 9.6031])
IM = 120*(log(La/Dia)-1.0) * 1.0/tan(z) - X

print  'Real:', R, ' Imag:', IM

Sunday 28 June 2015

Matching network design by random guess


Read an article named "A Lumped Circuit for Wideband Impedance Matching of a Non-Resonant, Short Dipole or Monopole Antenna", this article suggested a 5-elements wideband matching network with some both low pass and high pass sections and so it say it's a wideband matching network.


Then I trying to apply this circuit to 27.0MHz band, and a python code is made to randomly guess the 5 component values and evaluate the performance by calculating the reflection coefficient at 5 frequency point around 27.0MHz. After millions cycles of guess, this is the best result I can get.
L1 : 4.04e-06
L2 : 2.918e-07
C1 : 2.247e-11
L3 : 7.131e-07
C2 : 2.312e-11

These value is put into Agilent ADS to verify. With reflection magnitude plot and smith chart plot.
The green plot is the baseline reference matching result using simple 1-element matching and the blue plot is from the 5-element. The 5-element matching network appeared having a wider bandwidth compare to that of 1-element network. 
Promising.

Wednesday 24 June 2015

Impedance matching bandwidth simulation test

Cascaded L-section matching network between 50 ohm source and 25 ohm load, @ 27.0MHz, using 1 L-section, 2 L-sections and 3 L-sections, all of the three configuration would matching perfectly at exactly one frequency point, that is 27.0MHz. However in many case we want good matching on a wider bandwidth. The question is, can a 3-section matching network works better than a single L-section?


Well, from the frequency response plot and reflection plot, we can see the bandwidth of 3-section network is not significantly wider than that of the single section.
Some other matching network topology need to be investigate to achieve the goal of broadband matching.


Tuesday 9 June 2015

27MHz monopole antenna impedance measurement

500mm long AWG28 wire antenna, in serial with variable inductor, for matching.


Return loss in Smith chart plot, from 10MHz to 40MHz, at 28MHz, only real component remain.

Return loss in log magnitude plot, dip around 28MHz, quite narrow band, look like not very good.

Return loss phase plot