Antenna and EM Modeling with MATLAB Antenna Toolbox. Sergey N. Makarov

Чтение книги онлайн.

Читать онлайн книгу Antenna and EM Modeling with MATLAB Antenna Toolbox - Sergey N. Makarov страница 19

Antenna and EM Modeling with MATLAB Antenna Toolbox - Sergey N. Makarov

Скачать книгу

coefficient values below −10 dB do not really matter, they are very sensitive to small variations of the antenna impedance around 50 Ω and are subject to noise.

      %% Setup analysis parameters f = linspace(200e6, 1200e6, 1000); % Frequency, Hz lA = 0.15; % Dipole total length, m a = 0.002; % Dipole radius, m %% Antenna toolbox model and analysis w = cylinder2strip(a); % Eq. strip width model d = dipole('Length',lA,'Width',w); % Strip dipole model figure; show(d) % Visualize geometry S11 = rfparam(sparameters(d,f,Rg),1,1); % Calculate s-parameters S11dB = 20*log10(abs(S11));

Schematic illustration of magnitude of the reflection coefficient in dB for the dipole antenna and the antenna impedance bandwidth. Numerical solution is shown by a dashed curve.

      (1.35)equation

      The antenna impedance bandwidth BW (or fractional bandwidth) is determined in the form

      which is a very typical value for a wire dipole or a thin‐blade dipole. Generally, we always want to increase the antenna bandwidth for a better throughput.

      Note:

      Along with the reflection coefficient Γ or S11, another measurable quantity of significant interest is the voltage standing‐wave ratio or VSWR. On a transmission line connected to non‐matched antenna, both waves – incident and reflected V+ and V, respectively – form a prominent standing wave. At every point in space, this standing wave has a certain amplitude as a sinusoidal function of time. The VSWR is given by the ratio of maximum and minimum standing wave amplitudes on the line. It may be shown that [1–3]

      (1.38a)equation

      The VSWR may be used instead of the reflection coefficient to determine and plot the impedance bandwidth. In this case, the criterion of

      (1.38b)equation

      corresponds to

      (1.38c)equation

      with a sufficient degree of accuracy.

      Example 1.11

      Plot the reflection coefficient in dB and VSWR for the dipole with lA = 15 cm, a = 2 mm over the band 200–1200 MHz using Eq. (1.14) and MATLAB, and determine the antenna impedance bandwidth.

      Solution: We repeat the task of Example 1.5, but instead of the impedance plot, the reflection coefficient and the VSWR will be evaluated and plotted. Extra lines of the MATLAB code may be added such as

       c = figure; Rg = 50; RC =(Za-Rg)./(Za+Rg); temp = abs(RC); VSWR = (1 + temp)./(1 - temp); semilogy(f/1e6, VSWR, 'b', 'LineWidth', 2); grid on; xlabel ('frequency, MHz'); ylabel ('VSWR, a.u.'); title('VSWR');

Schematic illustration of reflection coefficient in dB (left) versus VSWR (right) for the same dipole antenna.

      1 1. D. M. Pozar, Microwave Engineering, Wiley, New York, 2011, fourth edition.

      2 2. T. A. Milligan, Modern Antenna Design, Wiley, New York, 2005, second edition, pp. 17–18.

      3 3. C. A. Balanis, Antenna Theory: Analysis and Design, Wiley, New York, 2016, fourth edition.

      1 1. An antenna withΖa = 100 ΩΖa = 100 Ω − j100 ΩΖa = 100 Ω + j100 Ωis directly connected to a generator with Rg = 50 Ω. Determine the reflection coefficient Γ of the antenna, its

Скачать книгу