Main Content

Model Infinite Ground Plane for Balanced Antennas

This example shows how to model an infinite ground plane and calculate fundamental antenna parameters for balanced antennas.

Create Antenna On Infinite Ground Plane

Create a reflector antenna on a ground plane of infinite length.

r = reflector(GroundPlaneLength=inf)
r = 
  reflector with properties:

              Exciter: [1x1 dipole]
            Substrate: [1x1 dielectric]
    GroundPlaneLength: Inf
     GroundPlaneWidth: 0.2000
              Spacing: 0.0750
      EnableProbeFeed: 0
            Conductor: [1x1 metal]
                 Tilt: 0
             TiltAxis: [1 0 0]
                 Load: [1x1 lumpedElement]

View Antenna Geometry

View the reflector antenna with infinite ground plane.

figure
show(r)

Figure contains an axes object. The axes object with title dipole over infinite ground plane, xlabel x (mm), ylabel y (mm) contains 4 objects of type patch, surface. These objects represent PEC, feed, infinite ground.

Calculate Impedance of Antenna

Calculate the impedance of reflector antenna over a frequency range of 800MHz to 1GHz.

figure
impedance(r,800e6:5e6:1e9);

Figure contains an axes object. The axes object with title Impedance, xlabel Frequency (GHz), ylabel Impedance (ohms) contains 2 objects of type line. These objects represent Resistance, Reactance.

Plot Radiation Pattern of Antenna

Plot the radiation pattern of reflector antenna at a frequency of 900MHz.

figure
pattern(r,900e6);

Figure contains 2 axes objects and other objects of type uicontrol. Axes object 1 contains 4 objects of type patch, surface. This object represents infinite ground. Hidden axes object 2 contains 17 objects of type surface, line, text, patch. This object represents infinite ground.

Visualize Antenna Mesh

Mesh and view the infinite ground plane reflector antenna.

figure 
mesh(r);

Figure contains an axes object and an object of type uicontrol. The axes object with title Metal mesh, xlabel x (m), ylabel y (m) contains 2 objects of type patch, surface. These objects represent PEC, feed.

Related Topics