Main Content

Installed Antenna Analysis - Modelling Antennas with Platforms

The example models an antenna element in presence of a large platform. The antenna is modelled accurately using the Method of Moments (MoM) while the effect of the electrically large platform is considered using physical optics (PO).

Create a platform

The electrically large platform can be imported in Antenna Toolbox as an STL file. These STL files can be used to describe ships, planes or any other kind of structures on which the antenna element is mounted. In the present case the rectcavity.stl file is a large rectangular cavity created using the stlwrite function and then deleting the dipole antenna manually. h = cavity('Length', 4, 'Width', 1, 'Height', 0.5); z = impedance(h, 1e8); stlwrite(h, 'rectcavity.stl');

base = platform(FileName="rectcavity.stl", Units="m");
show(base);

Figure contains an axes object. The axes object with title Platform object, xlabel x (m), ylabel y (m) contains 2 objects of type patch. This object represents PEC.

Set-up the installed antenna analysis

The user defined platform can be specified in the installed antenna analysis. The user can choose the antenna element and its location with respect to the platform.

ant = installedAntenna;
ant.Platform = base;
show(ant);

Figure contains 2 axes objects and another object of type uicontrol. Axes object 1 contains 3 objects of type patch, surface. Axes object 2 with title Installed antenna, xlabel x (mm), ylabel y (mm) contains 5 objects of type patch, surface, text. These objects represent PEC, feed, platform.

Analyze the installed antenna setup

All the analysis that can be performed on the single antenna element can be performed in case of an installed antenna.

figure
impedance(ant,linspace(950e6,1050e6,51));

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.

figure
pattern(ant,1e9);

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

To better visualize the current distribution on the platform it is better to select the log scale.

figure
current(ant,1e9,Scale="log");

Figure contains an axes object. The axes object with title Current distribution (log), xlabel x (m), ylabel y (m) contains 3 objects of type patch.

Add multiple antennas on the platform

Installed antenna analysis can be performed with multiple antenna elements. In this case a rectangular patch microstrip antenna and a circular patch microstrip antenna are designed at 1 GHz and are placed inside the cavity structure 2 meters apart.

elem1 = design(patchMicrostrip,1e9);
elem2 = design(patchMicrostripCircular,1e9);
ant.ElementPosition = [-1 0 0.2; 1 0 0.2];
ant.Element = {elem1, elem2};
show(ant);

Figure contains 2 axes objects and another object of type uicontrol. Axes object 1 contains 5 objects of type patch, surface. Axes object 2 with title Installed antenna, xlabel x (m), ylabel y (m) contains 13 objects of type patch, surface, text. These objects represent PEC, feed, platform.

Analyze multiple antenna elements on a platform

All the analysis performed on a single antenna element can also be performed on multiple antenna elements.

figure
pattern(ant,1e9);

Figure contains 2 axes objects and other objects of type uicontrol. Axes object 1 contains 13 objects of type patch, surface, text. This object represents platform. Hidden axes object 2 contains 18 objects of type surface, line, text, patch.

figure
current(ant,1e9,Scale="log");

Figure contains an axes object. The axes object with title Current distribution (log), xlabel x (m), ylabel y (m) contains 9 objects of type patch.

The plot below displays the impedance of the rectangular patch microstrip antenna.

figure
impedance(ant,linspace(950e6,1050e6,25),1);

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

The plot below displays the impedance of the circular patch microstrip antenna.

figure
impedance(ant,linspace(950e6,1050e6,25),2);

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

The coupling between the antenna elements can be calculated using the s-parameters.

S = sparameters(ant,linspace(950e6,1050e6,25));
figure
rfplot(S);

Figure contains an axes object. The axes object with xlabel Frequency (GHz), ylabel Magnitude (dB) contains 4 objects of type line. These objects represent dB(S_{11}), dB(S_{21}), dB(S_{12}), dB(S_{22}).

See Also