Hauptinhalt

circularArray

Create circular antenna array

Description

The circularArray object creates a circular antenna array. Circular array finds application in direction of arrival (DoA) systems. You can use circular arrays to perform 2-D scanning, while lowering element counts. These arrays also have the ability for 360-degree scanning. The individual elements in the circular array are part of the same array environment. This property reduces the impact of edge effects and other coupling variation.

A six-element circular array of dipoles

Creation

Description

array = circularArray creates a circular antenna array in the xy-plane.

array = circularArray(PropertyName=Value) sets properties using one or more name–value arguments. PropertyName is the property name and Value is the corresponding value. You can specify several name-value arguments in any order as PropertyName1=Value1,...,PropertyNameN=ValueN. Properties that you do not specify, retain their default values.

For example, array = circularArray(Element=monopole,NumElements=8) creates a circular array of 8 monopole antennas.

example

Properties

expand all

Individual antenna type, specified as a single antenna object for homogeneous array or a vector of antenna objects of same type with varying dimensions and load for heterogeneous array. The element can be:

  • an object from the Antenna Catalog

    Note

    Following catalog antennas are not supported as an element:

  • an antenna without a substrate created using customAntennaGeometry, customAntennaMesh, customAntennaStl, or customAntenna objects

  • a single port measuredAntenna object

    Note

    Using measuredAntenna as an array element has following limitations:

    • Only analysis using the patternMultiply function is supported, and only at the frequencies specified in the FieldFrequency property of the measuredAntenna object.

    • Linear array with measuredAntenna as an element is not supported as an exciter for the backing structures, parabolic antennas, platform-installed antennas, and plane-wave excitation environment.

Example: dipole

Example: [monopole monopole(Height=2)]

Example: customAntenna

Example: measuredAntenna

Number of elements in the array,specified as a positive scalar integer. The elements in the array are arranged along the x-axis.

Example: 4

Data Types: double

Radius of array, specified as a positive scalar integer in meters.

Example: 0.4

Data Types: double

Starting angle offset for first element in array, specified as a real scalar in degrees.

Example: 8

Data Types: double

Excitation amplitude for antenna elements in the array, specified as a real positive vector of size 'Element'.

Example: [0 1]

Data Types: double

Phase shift for each element in the array, specified as a real vector of size 'Element' in degrees.

Example: [0 2]

Data Types: double

Tilt angle of the array in degrees, specified as a scalar or vector. For more information, see Rotate Antennas and Arrays.

Example: 90

Example: Tilt=[90 90],TiltAxis=[0 1 0;0 1 1] tilts the array at 90 degrees about the two axes, defined by the vectors.

Data Types: double

Tilt axis of the array, specified as one of these values:

  • Three-element vectors of Cartesian coordinates in meters. In this case, each vector starts at the origin and lies along the specified points on the x-, y-, and z-axes.

  • Two points in space, specified as a 2-by-3 matrix corresponding to two three-element vectors of Cartesian coordinates. In this case, the array rotates around the line joining the two points.

  • "x", "y", or "z" to describe a rotation about the x-, y-, or z-axis, respectively.

For more information, see Rotate Antennas and Arrays.

Example: [0 1 0]

Example: [0 0 0;0 1 0]

Example: "Z"

Data Types: double | string

Object Functions

arrayFactorArray factor in dB
axialRatioCalculate and plot axial ratio of antenna or array
beamwidthBeamwidth of antenna
chargeCharge distribution on antenna or array surface
correlationCorrelation coefficient between two antennas in array
currentCurrent distribution on antenna or array surface
designCreate antenna, array, or AI-based antenna resonating at specified frequency
efficiencyCalculate and plot radiation efficiency of antenna or array
EHfieldsElectric and magnetic fields of antennas or embedded electric and magnetic fields of antenna element in arrays
feedCurrentCalculate current at feed for antenna or array
impedanceCalculate and plot input impedance of antenna or scan impedance of array
infoDisplay information about antenna, array, or platform
layoutDisplay array or PCB stack layout
memoryEstimateEstimate memory required to solve antenna or array mesh
meshGenerate and view mesh for antennas, arrays, and custom shapes
meshconfigChange meshing mode of antenna, array, custom antenna, custom array, or custom geometry
msiwriteWrite antenna or array analysis data to MSI planet file
optimizeOptimize antenna and array catalog elements using SADEA or TR-SADEA algorithm
patternPlot radiation pattern of antenna, array, or embedded element of array
patternAzimuthAzimuth plane radiation pattern of antenna or array
patternElevationElevation plane radiation pattern of antenna or array
patternMultiplyRadiation pattern of array using pattern multiplication
peakRadiationCalculate and mark maximum radiation points of antenna or array on radiation pattern
phaseShiftCalculate phase shift values for arrays or multi-feed PCB stack
rcsCalculate and plot monostatic and bistatic radar cross section (RCS) of platform, antenna, or array
returnLossCalculate and plot return loss of antenna or scan return loss of array
showDisplay antenna, array, AI-based antenna, platform, or shape
sparametersCalculate S-parameters for antenna or array
stlwriteWrite mesh information to STL file
vswrCalculate and plot voltage standing wave ratio (VSWR) of antenna or array element

Examples

collapse all

Create a circular antenna array using 10 antenna elements. View the layout of the antenna elements in the array.

ca = circularArray(NumElements=10)
ca = 
  circularArray with properties:

           Element: [1×1 dipole]
       NumElements: 10
            Radius: 1
       AngleOffset: 0
    AmplitudeTaper: 1
        PhaseShift: 0
              Tilt: 0
          TiltAxis: [1 0 0]

figure
layout(ca)

Figure contains an axes object. The axes object with title Array Layout, xlabel x (m), ylabel y (m) contains 11 objects of type scatter, text.

View the array.

figure
show(ca)

Figure contains an axes object. The axes object with title circularArray of dipole antennas, xlabel x (m), ylabel y (m) contains 30 objects of type patch, surface. These objects represent PEC, feed.

Plot the elevation pattern of the circular array at a frequency of 70 MHz.

figure
patternElevation(ca,70e6)

Figure contains an axes object and an object of type uicontainer. The hidden axes object contains 2 objects of type line, text. This object represents az=0° .

Load the measured E-field data. Define the field frequency, azimuth and elevation angles.

load("mesAnt_circ_array.mat")
freq = 3e9;
az = -180:5:180;
el = -90:5:90;

Create measuredAntenna object and set its properties using the defined parameters.

mesAnt = measuredAntenna(E=Efield,Direction=Dir,NumPorts=1, ...
    Azimuth=az,Elevation=el,FieldCoordinate="rectangular", ...
    FieldFrequency=freq)
mesAnt = 
  measuredAntenna with properties:

                  E: [2701×3 double]
        Directivity: []
          Direction: [2701×3 double]
        PhaseCenter: [0 0 0.0750]
           NumPorts: 1
     FieldFrequency: 3.0000e+09
    FieldCoordinate: "rectangular"
            Azimuth: [-180 -175 -170 -165 -160 -155 -150 -145 -140 -135 -130 -125 -120 -115 -110 -105 -100 -95 -90 -85 -80 -75 -70 -65 -60 -55 -50 -45 -40 -35 -30 -25 -20 -15 -10 -5 0 5 10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 85 90 … ] (1×73 double)
          Elevation: [-90 -85 -80 -75 -70 -65 -60 -55 -50 -45 -40 -35 -30 -25 -20 -15 -10 -5 0 5 10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 85 90]
        Sparameters: []

Create a six-element circular array with 0.0732 m radius and use the measuredAntenna object as its element.

circArr = circularArray(Element=mesAnt,Radius=0.0732)
circArr = 
  circularArray with properties:

           Element: [1×1 measuredAntenna]
       NumElements: 6
            Radius: 0.0732
       AngleOffset: 0
    AmplitudeTaper: 1
        PhaseShift: 0
              Tilt: 0
          TiltAxis: [1 0 0]

Perform pattern multiplication and plot the resultant array E-field pattern.

figure 
patternMultiply(circArr,freq,Type="efield")

Figure contains an axes object and other objects of type uicontrol. The hidden axes object contains 16 objects of type line, text, patch, surface.

Version History

Introduced in R2016b

expand all