3. Antenna¶
The Antenna module provides:
A class
Angles
and utility functions to deal with angles.A base class
AntennaModel
that provides an interface for the modeling of the radiation pattern of an antenna with a set of classes derived from this base class, each models the radiation pattern of different types of antennas.A base class
PhasedArrayModel
that provides a flexible interface for modeling a number of Phase Antenna Array (PAA) models.A class
UniformPlanarArray
derived from this base class, implementing a Uniform Planar Array (UPA) supporting both rectangular and linear lattices.
The antenna model can be used with all the wireless technologies and physical layer models that support it. Currently, this includes the physical layer models based on the
SpectrumPhy
class. Please refer to the documentation of each of these models for details.
3.1. Scope and Limitations¶
Not present.
3.2. Angles¶
The Angles class holds information about an angle in 3D space using spherical coordinates in radian units. Specifically, it uses the azimuth-inclination convention, where
Inclination is the angle between the zenith direction (positive z-axis) and the desired direction. It is included in the range [0, pi] radians.
Azimuth is the signed angle measured from the positive x-axis, where a positive direction goes towards the positive y-axis. It is included in the range [-pi, pi) radians.
Multiple constructors are present, supporting the most common ways to encode information on a direction. A static boolean variable allows the user to decide whether angles should be printed in radian or degree units.
A number of angle-related utilities are offered, such as radians/degree conversions, for both scalars and vectors, and angle wrapping.
3.3. AntennaModel¶
The AntennaModel uses the coordinate system adopted in [1] and
depicted in Figure Coordinate system of the AntennaModel. This system
is obtained by translating the Cartesian coordinate system used by the
ns-3 MobilityModel into the new origin which is the location
of the antenna, and then transforming the coordinates of every generic
point
of the space from Cartesian coordinates
into spherical coordinates
.
The antenna model neglects the radial component , and
only considers the angle components
. An antenna
radiation pattern is then expressed as a mathematical function
that returns the
gain (in dB) for each possible direction of
transmission/reception. All angles are expressed in radians.

Coordinate system of the AntennaModel¶
The AntennaModel
is used to implement a subset of derived classes that represents different radiation patterns of a single antenna.
The current models supported are:
Isotropic Antenna Model
Cosine Antenna Model
Parabolic Antenna Model
Three Gpp Antenna Model
Isotropic Antenna Model
This is the simplest antenna model. This antenna radiation pattern model provides the same gain (0 dB) for all directions.
This is implemented in the IsotropicAntennaModel
class.
Cosine Antenna Model
This is the cosine model described in [2]: the antenna gain is determined as:
where is the azimuthal orientation of the antenna
(i.e., its direction of maximum gain) and the exponential
determines the desired 3dB beamwidth . Note that
this radiation pattern is independent of the inclination angle
.
A major difference between the model of [2] and the one implemented in the class CosineAntennaModel is that only the element factor (i.e., what described by the above formulas) is considered. In fact, [2] also considered an additional antenna array factor. The reason why the latter is excluded is that we expect that the average user would desire to specify a given beamwidth exactly, without adding an array factor at a latter stage which would in practice alter the effective beamwidth of the resulting radiation pattern.
This is implemented in the CosineAntennaModel
class.
Parabolic Antenna Model
This model is based on the parabolic approximation of the main lobe radiation pattern. It is often used in the context of cellular system to model the radiation pattern of a cell sector, see for instance [3] and [4]. The antenna gain in dB is determined as:
where is the azimuthal orientation of the antenna
(i.e., its direction of maximum gain),
is its 3 dB
beamwidth, and
is the maximum attenuation in dB of the
antenna. Note that this radiation pattern is independent of the inclination angle
.
This is implemented in the ParabolicAntennaModel
class.
Three Gpp Antenna Model
This model implements the antenna element described in [5]. Parameters are fixed from the technical report, thus no attributes nor setters are provided. The model is largely based on the Parabolic Antenna Model.
3.4. Phased Array Model¶
The class PhasedArrayModel
has been created with flexibility in mind.
It abstracts the basic idea of a Phased Antenna Array (PAA) by removing any constraint on the
position of each element, and instead generalizes the concept of steering and beamforming vectors,
solely based on the generalized location of the antenna elements.
For details on Phased Array Antennas see for instance [6].
Derived classes must implement the following functions:
GetNumElems
: returns the number of antenna elementsGetElementLocation
: returns the location of the antenna element with the specified index, normalized with respect to the wavelengthGetElementFieldPattern
: returns the horizontal and vertical components of the antenna element field pattern at the specified direction. Same polarization (configurable) for all antenna elements of the array is considered.
The class PhasedArrayModel
also assumes that all antenna elements are equal, a typical key assumption which allows to model the PAA field pattern as the sum of the array factor, given by the geometry of the location of the antenna elements, and the element field pattern.
Any class derived from AntennaModel
is a valid antenna element for the PhasedArrayModel
, allowing for a great flexibility of the framework.
3.4.1. Uniform Planar Array (UPA)¶
The class UniformPlanarArray is a generic implementation of Uniform Planar Arrays (UPAs),
supporting rectangular and linear regular lattices.
It closely follows the implementation described in the 3GPP TR 38.901 [7],
considering only a single panel, i.e., .
By default, the antenna array is orthogonal to the x-axis, pointing towards the positive
direction, but the orientation can be changed through the attributes BearingAngle
,
which adjusts the azimuth angle, and DowntiltAngle
, which adjusts the elevation angle.
The slant angle is instead fixed and assumed to be 0.
The number of antenna elements in the vertical and horizontal directions can be configured
through the attributes NumRows
and NumColumns
, while the spacing between the horizontal
and vertical elements can be configured through the attributes AntennaHorizontalSpacing
and AntennaVerticalSpacing
.
UniformPlannarArray supports the concept of antenna ports following the sub-array partition
model for TXRU virtualization, as described in Section 5.2.2 of 3GPP TR 36.897 [8].
The number of antenna ports in vertical and horizontal directions can be configured through
the attributes NumVerticalPorts
and NumHorizontalPorts
, respectively. For example,
if NumRows
and NumColumns
are configured to 2 and 4, and the number of
NumVerticalPorts
and NumHorizontalPorts
to 1 and 2, then the antenna elements belonging
to the first two columns of the antenna array will belong to the first antenna port,
and the third and the fourth columns will belong to the second antenna port. Note that
NumRows
and NumColumns
must be a multiple of NumVerticalPorts
and NumHorizontalPorts
,
respectively.
Whether the antenna is dual-polarized or not is configured through the attribute
IsDualPolarized
. In case the antenna array is dual polarized, the total number
of antenna elements is doubled and the two polarizations are overlapped in space.
The polarization slant angle of the antenna elements belonging to the first polarization
are configured through the attribute PolSlantAngle
; while the antenna elements of
the second polarization have the polarization slant angle minus 90 degrees,
as described in [7] (i.e., ).
3.4.2. Circular Aperture Antenna Model¶
The class CircularApertureAntennaModel
implements the radiation pattern described in [7].
Specifically, the latter represents parabolic antennas, i.e., antennas which are typically used
for achieving long range communications such as earth-to-satellite links.
The default boresight orientation is parallel to the positive z-axis, and it can be tuned by
using the AntennaInclination
and AntennaAzimuth
parameters.
This implementation provides an exact characterization of the antenna field pattern, by leveraging
the standard library Bessel functions implementation introduced with C++17.
Accordingly, the antenna gain at an angle
from the boresight main beam
is evaluated as:
where is the Bessel function of the first kind and first order, and
is
the radius of the antenna’s circular aperture.
The parameter
is equal to
, where
is the carrier
frequency, and
is the speed of light in vacuum.
The parameters
(in logarithmic scale),
and
can be configured by using
the attributes
AntennaMaxGainDb
, AntennaCircularApertureRadius
and OperatingFrequency
, respectively.
This type of antennas features a symmetric radiation pattern, meaning that a single angle, measured
from the boresight direction, is sufficient to characterize the radiation strength along a given direction.

Circular aperture antenna radiation pattern with 38.5 dB and
10
¶
3.5. Usage¶
Not present.
3.5.1. Helpers¶
Not present
3.5.2. Attributes¶
Not present.
3.5.3. Traces¶
Not present.
3.6. Examples and Tests¶
In this section we describe the test suites included with the antenna module that verify its correct functionality.
test-angles.cc
: The unit test suiteangles
verifies that the Angles class is constructed properly by correct conversion from 3D Cartesian coordinates according to the available methods (construction from a single vector and from a pair of vectors). For each method, several test cases are provided that compare the valuesdetermined by the constructor to known reference values. The test passes if for each case the values are equal to the reference up to a tolerance of
which accounts for numerical errors.
test-degree-radians.cc
: The unit test suitedegrees-radians
verifies that the methodsDegreesToRadians
andRadiansToDegrees
work properly by comparing with known reference values in a number of test cases. Each test case passes if the comparison is equal up to a tolerance ofwhich accounts for numerical errors.
test-isotropic-antenna.cc
: The unit test suiteisotropic-antenna-model
checks that theIsotropicAntennaModel
class works properly, i.e., returns always a 0dB gain regardless of the direction.test-cosine-antenna.cc
: The unit test suitecosine-antenna-model
checks that theCosineAntennaModel
class works properly. Several test cases are provided that check for the antenna gain value calculated at different directions and for different values of the orientation, the reference gain and the beamwidth. The reference gain is calculated by hand. Each test case passes if the reference gain in dB is equal to the value returned byCosineAntennaModel
within a tolerance of 0.001, which accounts for the approximation done for the calculation of the reference values.test-parabolic-antenna.cc
: The unit test suiteparabolic-antenna-model
checks that theParabolicAntennaModel
class works properly. Several test cases are provided that check for the antenna gain value calculated at different directions and for different values of the orientation, the maximum attenuation and the beamwidth. The reference gain is calculated by hand. Each test case passes if the reference gain in dB is equal to the value returned byParabolicAntennaModel
within a tolerance of 0.001, which accounts for the approximation done for the calculation of the reference values.
3.7. Validation¶
Validation has been performed as described in each antenna test.
3.8. References¶
[1] C.A. Balanis, “Antenna Theory - Analysis and Design”, Wiley, 2nd Ed.
[2] Li Chunjian, “Efficient Antenna Patterns for Three-Sector WCDMA Systems”, Master of Science Thesis, Chalmers University of Technology, Göteborg, Sweden, 2003.
[3] 3GPP TSG RAN WG4 (Radio) Meeting #51, R4-092042, Simulation assumptions and parameters for FDD HeNB RF requirements.
[4] George Calcev and Matt Dillon, “Antenna Tilt Control in CDMA Networks”, in Proc. of the 2nd Annual International Wireless Internet Conference (WICON), 2006.
[5] 3GPP. 2018. TR 38.901, Study on channel model for frequencies from 0.5 to 100 GHz, V15.0.0. (2018-06).
[6] Robert J. Mailloux, “Phased Array Antenna Handbook”, Artech House, 2nd Ed.
[7] 3GPP. 2018. TR 38.811, Study on New Radio (NR) to support non-terrestrial networks, V15.4.0. (2020-09).
[8] 3GPP. 2015. TR 36.897. Study on elevation beamforming / Full-Dimension (FD) Multiple Input Multiple Output (MIMO) for LTE. V13.0.0. (2015-06).