impedance matching of small monopole antenna -凯发k8网页登录
this example shows how to design a double tuning l-section matching network between a resistive source and capacitive load in the form of a small monopole by using the matchingnetwork
object. the l-section consists of two inductors. the network achieves conjugate match and guarantees maximum power transfer at a single frequency. this example requires the following product:
antenna toolbox™
create monopole
create a quarter-wavelength monopole antenna via the antenna toolbox with the resonant frequency around 1 ghz. for the purpose of this example, we choose a square ground plane of side .
fres = 1e9; speedoflight = physconst('lightspeed'); lambda = speedoflight/fres; l = 0.25*lambda; dp = monopole('height',l,'width',l/50,... 'groundplanelength',0.75*lambda,... 'groundplanewidth',0.75*lambda);
calculate monopole impedance
specify the source (generator) impedance, the reference (transmission line) impedance and the load (antenna) impedance. in this example, the load zl0
will be the non-resonant (small) monopole at the frequency of 500 mhz, which is the half of the resonant frequency. the source has the equivalent impedance of 50 ohms.
f0 = fres/2; zs = 50; z0 = 50; zl0 = impedance(dp,f0); rl0 = real(zl0); xl0 = imag(zl0);
define the number of frequency points for the analysis and set up a frequency band about 500 mhz.
npts = 30; fspan = 0.1; fmin = f0*(1 - (fspan/2)); fmax = f0*(1 (fspan/2)); freq = unique([f0 linspace(fmin,fmax,npts)]);
understand load behavior using reflection coefficient and power gain
calculate the load reflection coefficient and the power gain between the source and the antenna.
s = sparameters(dp, freq); gammal = rfparam(s, 1,1); gt = 10*log10(1 - abs(gammal).^2);
plotting the input reflection coefficient on a smith chart shows the capacitive behavior of this antenna around the operating frequency of 500 mhz. the center of the smith chart represents the matched condition to the reference impedance. the location of the reflection coefficient trace around confirms that there is a severe impedance mismatch.
fig1 = figure; hsm = smithplot(fig1,freq,gammal,'linewidth',2.0,'color','m',... 'view','bottom-right','legendlabels',{'#gamma l'});
plot the power delivered to the load.
fig2 = figure; plot(freq*1e-6,gt,'m','linewidth',2); grid on xlabel('frequency [mhz]') ylabel('magnitude (db)') title('power delivered to load')
as the power gain plot shows, there is approximately 20 db power loss around the operating frequency (500 mhz).
design matching network
the matching network must ensure maximum power transfer at 500 mhz. the l-section double tuning network achieves this goal [1]. the network topology, shown in the figure consists of an inductor in series with the antenna, that cancels the large capacitance at 500 mhz, and a shunt inductor that further boosts the output resistance to match the source impedance of 50 .
use the matchingnetwork
object to create various matching network circuits based on the source impedance, load impedance, and center frequency.
matchnw = matchingnetwork('centerfrequency',f0,'loadimpedance',zl0,'bandwidth',50e6); matchnw.clearevaluationparameter(1); % clear default constraint
the values of each element for the circuits generated are shown below.
[circuit_list, performance] = circuitdescriptions(matchnw)
circuit_list=4×5 table
circuitname component1type component1value component2type component2value
___________ ______________ _______________ ______________ _______________
circuit 1 "auto_1" "series l" 2.9822e-07 "shunt l" 1.0466e-07
circuit 2 "auto_2" "series c" 3.3975e-13 "shunt l" 6.1569e-08
circuit 3 "auto_3" "shunt c" 2.3684e-11 "series l" 8.1505e-08
circuit 4 "auto_4" "shunt l" 4.278e-09 "series l" 7.3525e-08
performance=4×4 table
circuitname evaluationpassed testsfailed performancescore
___________ ________________ ____________ ________________
circuit 1 "auto_1" {["yes"]} {0x0 double} {[0]}
circuit 2 "auto_2" {["yes"]} {0x0 double} {[0]}
circuit 3 "auto_3" {["yes"]} {0x0 double} {[0]}
circuit 4 "auto_4" {["yes"]} {0x0 double} {[0]}
create matching network and calculate s-parameters
the matching network circuit is created via the rf toolbox™ and it consists of the two inductors whose values have been calculated above. the s-parameters of this network are calculated over the frequency band centered at the operating frequency.
calculate the s-parameters based on desired matching network (this example uses circuit #2).
ckt_no = 4; smatchnw = sparameters(matchnw, freq, z0, ckt_no);
the circuit element representation of the matching network is shown below.
disp(matchnw.circuit(ckt_no))
circuit: circuit element elementnames: {'l' 'l_1'} elements: [1x2 inductor] nodes: [1 2 3] name: 'auto_4' numports: 2 terminals: {'p1 ' 'p2 ' 'p1-' 'p2-'}
reflection coefficient and power gain with matching network
calculate the input reflection coefficient/power gain for the antenna load with the matching network.
zl = impedance(dp,freq);
gammain = gammain(smatchnw,zl);
gtmatch = powergain(smatchnw,zs,zl,'gt');
gtmatch = 10*log10(gtmatch);
compare results
plot the input reflection coefficient and power delivered to the antenna, with and without the matching network. the smith® chart plot shows the reflection coefficient trace going through its center thus confirming the match. at the operation frequency of 500 mhz, the generator transfers maximum power to the antenna. the match degrades on either side of the operating frequency.
add(hsm,freq,gammain); hsm.legendlabels(2) = {'#gamma in'}; hsm.view = 'full';
plot power delivered to the load.
figure(fig2) hold on plot(freq*1e-6,gtmatch,'linewidth',2); axis([min(freq)*1e-6,max(freq)*1e-6,-25,0]) legend('no matching network','double tuning','location','best');
matching network designer
the matching network designer app allows to design matching networks or view an existing matchingnetwork
object. type this command at the command line to open the matching network designer app. use the matchnw
object and select auto_4
node to view the corresponding circuit.
matchingnetworkdesigner(matchnw)
references
[1] m. m. weiner, monopole antennas, marcel dekker, inc.,crc press, rev. exp edition, new york, pp.110-118, 2003.