A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
uniform-planar-array.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 University of Padova, Dep. of Information Engineering, SIGNET lab.
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 */
6
8
9#include "ns3/boolean.h"
10#include "ns3/double.h"
11#include "ns3/log.h"
12#include "ns3/uinteger.h"
13
14namespace ns3
15{
16
17NS_LOG_COMPONENT_DEFINE("UniformPlanarArray");
18
19NS_OBJECT_ENSURE_REGISTERED(UniformPlanarArray);
20
25
29
32{
33 static TypeId tid =
34 TypeId("ns3::UniformPlanarArray")
36 .AddConstructor<UniformPlanarArray>()
37 .SetGroupName("Antenna")
38 .AddAttribute(
39 "AntennaHorizontalSpacing",
40 "Horizontal spacing between antenna elements, in multiples of wave length",
41 DoubleValue(0.5),
45 .AddAttribute("AntennaVerticalSpacing",
46 "Vertical spacing between antenna elements, in multiples of wave length",
47 DoubleValue(0.5),
51 .AddAttribute("NumColumns",
52 "Horizontal size of the array",
57 .AddAttribute("NumRows",
58 "Vertical size of the array",
63 .AddAttribute(
64 "BearingAngle",
65 "The bearing angle in radians",
66 DoubleValue(0.0),
68 MakeDoubleChecker<double>(-M_PI, M_PI))
69 .AddAttribute(
70 "DowntiltAngle",
71 "The downtilt angle in radians",
72 DoubleValue(0.0),
74 MakeDoubleChecker<double>(-M_PI, M_PI))
75 .AddAttribute("PolSlantAngle",
76 "The polarization slant angle in radians",
77 DoubleValue(0.0),
80 MakeDoubleChecker<double>(-M_PI, M_PI))
81 .AddAttribute("NumVerticalPorts",
82 "Vertical number of ports",
87 .AddAttribute("NumHorizontalPorts",
88 "Horizontal number of ports",
93 .AddAttribute("IsDualPolarized",
94 "If true, dual polarized antenna",
95 BooleanValue(false),
99 return tid;
100}
101
102void
104{
105 NS_LOG_FUNCTION(this << n);
106 if (n != m_numColumns)
107 {
108 m_isBfVectorValid = false;
109 }
110 m_numColumns = n;
111}
112
118
119void
121{
122 NS_LOG_FUNCTION(this << n);
123 if (n != m_numRows)
124 {
125 m_isBfVectorValid = false;
126 }
127 m_numRows = n;
128}
129
132{
133 return m_numRows;
134}
135
136void
138{
139 m_alpha = alpha;
140 m_cosAlpha = cos(m_alpha);
141 m_sinAlpha = sin(m_alpha);
142}
143
144void
146{
147 m_beta = beta;
148 m_cosBeta = cos(m_beta);
149 m_sinBeta = sin(m_beta);
150}
151
152void
154{
155 m_polSlant = polSlant;
156 m_cosPolSlant[0] = cos(m_polSlant);
157 m_sinPolSlant[0] = sin(m_polSlant);
158}
159
160void
162{
163 NS_LOG_FUNCTION(this << s);
164 NS_ABORT_MSG_IF(s <= 0, "Trying to set an invalid spacing: " << s);
165
166 if (s != m_disH)
167 {
168 m_isBfVectorValid = false;
169 }
170 m_disH = s;
171}
172
173double
178
179void
181{
182 NS_LOG_FUNCTION(this << s);
183 NS_ABORT_MSG_IF(s <= 0, "Trying to set an invalid spacing: " << s);
184
185 if (s != m_disV)
186 {
187 m_isBfVectorValid = false;
188 }
189 m_disV = s;
190}
191
192double
197
198std::pair<double, double>
200{
201 NS_LOG_FUNCTION(this << a);
202 NS_ASSERT_MSG(polIndex < GetNumPols(), "Polarization index can be 0 or 1.");
203
204 // convert the theta and phi angles from GCS to LCS using eq. 7.1-7 and 7.1-8 in 3GPP TR 38.901
205 // NOTE we assume a fixed slant angle of 0 degrees
206 double inclination = a.GetInclination();
207 double azimuth = a.GetAzimuth();
208 double cosIncl = cos(inclination);
209 double sinIncl = sin(inclination);
210 double cosAzim = cos(azimuth - m_alpha);
211 double sinAzim = sin(azimuth - m_alpha);
212 double thetaPrime = std::acos(m_cosBeta * cosIncl + m_sinBeta * cosAzim * sinIncl);
213 double phiPrime =
214 std::arg(std::complex<double>(m_cosBeta * sinIncl * cosAzim - m_sinBeta * cosIncl,
215 sinAzim * sinIncl));
216 Angles aPrime(phiPrime, thetaPrime);
217 NS_LOG_DEBUG(a << " -> " << aPrime);
218
219 // compute the antenna element field patterns using eq. 7.3-4 and 7.3-5 in 3GPP TR 38.901,
220 // using the configured polarization slant angle (m_polSlant)
221 // NOTE: the slant angle (assumed to be 0) differs from the polarization slant angle
222 // (m_polSlant, given by the attribute), in 3GPP TR 38.901
223 double aPrimeDb = m_antennaElement->GetGainDb(aPrime);
224 double fieldThetaPrime =
225 pow(10, aPrimeDb / 20) * m_cosPolSlant[polIndex]; // convert to linear magnitude
226 double fieldPhiPrime =
227 pow(10, aPrimeDb / 20) * m_sinPolSlant[polIndex]; // convert to linear magnitude
228
229 // compute psi using eq. 7.1-15 in 3GPP TR 38.901, assuming that the slant
230 // angle (gamma) is 0
231 double psi = std::arg(std::complex<double>(m_cosBeta * sinIncl - m_sinBeta * cosIncl * cosAzim,
232 m_sinBeta * sinAzim));
233 NS_LOG_DEBUG("psi " << psi);
234
235 // convert the antenna element field pattern to GCS using eq. 7.1-11
236 // in 3GPP TR 38.901
237 double fieldTheta = cos(psi) * fieldThetaPrime - sin(psi) * fieldPhiPrime;
238 double fieldPhi = sin(psi) * fieldThetaPrime + cos(psi) * fieldPhiPrime;
240 << " " << RadiansToDegrees(a.GetInclination()) << " "
241 << fieldTheta * fieldTheta + fieldPhi * fieldPhi);
242
243 return std::make_pair(fieldPhi, fieldTheta);
244}
245
246Vector
248{
249 NS_LOG_FUNCTION(this << index);
250 uint64_t tmpIndex = index;
251 // for dual polarization, the top half corresponds to one polarization and
252 // lower half corresponds to the other polarization
253 if (m_isDualPolarized && tmpIndex >= m_numRows * m_numColumns)
254 {
255 tmpIndex -= m_numRows * m_numColumns;
256 }
257 // compute the element coordinates in the LCS
258 // assume the left bottom corner is (0,0,0), and the rectangular antenna array is on the y-z
259 // plane.
260 double xPrime = 0;
261 double yPrime = m_disH * (tmpIndex % m_numColumns);
262 double zPrime = m_disV * floor(tmpIndex / m_numColumns);
263
264 // convert the coordinates to the GCS using the rotation matrix 7.1-4 in 3GPP
265 // TR 38.901
266 Vector loc;
267 loc.x = m_cosAlpha * m_cosBeta * xPrime - m_sinAlpha * yPrime + m_cosAlpha * m_sinBeta * zPrime;
268 loc.y = m_sinAlpha * m_cosBeta * xPrime + m_cosAlpha * yPrime + m_sinAlpha * m_sinBeta * zPrime;
269 loc.z = -m_sinBeta * xPrime + m_cosBeta * zPrime;
270 return loc;
271}
272
273uint8_t
275{
276 return m_isDualPolarized ? 2 : 1;
277}
278
279size_t
281{
282 // From 38.901 [M, N, P, Mg, Ng] = [m_numRows, m_numColumns, 2, 1, 1]
283 return GetNumPols() * m_numRows * m_numColumns;
284 // with dual polarization, the number of antenna elements double up
285}
286
287void
289{
290 NS_LOG_FUNCTION(this);
291 NS_ASSERT_MSG(nPorts > 0, "Ports should be greater than 0");
292 NS_ASSERT_MSG(((m_numRows % nPorts) == 0),
293 "The number of vertical ports must divide number of rows");
294 m_numVPorts = nPorts;
295}
296
297void
299{
300 NS_ASSERT_MSG(nPorts > 0, "Ports should be greater than 0");
301 NS_ASSERT_MSG(((m_numColumns % nPorts) == 0),
302 "The number of horizontal ports must divide number of columns");
303 m_numHPorts = nPorts;
304}
305
306uint16_t
311
312uint16_t
317
318uint16_t
323
324size_t
329
330size_t
335
336size_t
338{
339 // Multiply the number of rows and number of columns belonging to one antenna port.
340 // This also holds for dual polarization, where each polarization belongs to a separate port.
342}
343
344uint16_t
345UniformPlanarArray::ArrayIndexFromPortIndex(uint16_t portIndex, uint16_t subElementIndex) const
346{
347 NS_ASSERT_MSG(portIndex < GetNumPorts(), "Port should be less than total Ports");
348 NS_ASSERT(subElementIndex < (GetHElemsPerPort() * GetVElemsPerPort()));
349
350 // In case the array is dual-polarized, change to the index that belongs to the first
351 // polarization
352 auto firstPolPortIdx = portIndex;
353 auto polarizationOffset = 0;
354 auto arraySize = GetNumHorizontalPorts() * GetNumVerticalPorts();
355 if (firstPolPortIdx >= arraySize)
356 {
357 firstPolPortIdx = portIndex - arraySize;
358 polarizationOffset = GetNumColumns() * GetNumRows();
359 }
360 // column-major indexing
361 auto hPortIdx = firstPolPortIdx / GetNumVerticalPorts();
362 auto vPortIdx = firstPolPortIdx % GetNumVerticalPorts();
363 auto hElemIdx = (hPortIdx * GetHElemsPerPort()) + (subElementIndex % GetHElemsPerPort());
364 auto vElemIdx = (vPortIdx * GetVElemsPerPort()) + (subElementIndex / GetHElemsPerPort());
365 return (vElemIdx * GetNumColumns() + hElemIdx + polarizationOffset);
366}
367
368bool
373
374void
376{
377 m_isDualPolarized = isDualPol;
378 if (isDualPol)
379 {
380 m_cosPolSlant[1] = cos(m_polSlant - M_PI / 2);
381 m_sinPolSlant[1] = sin(m_polSlant - M_PI / 2);
382 }
383}
384
385double
387{
388 return m_alpha;
389}
390
391double
393{
394 return m_beta;
395}
396
397double
399{
400 return m_polSlant;
401}
402
403uint8_t
404UniformPlanarArray::GetElemPol(size_t elemIndex) const
405{
406 NS_ASSERT(elemIndex < GetNumElems());
407 return (elemIndex < GetNumRows() * GetNumColumns()) ? 0 : 1;
408}
409
410} /* namespace ns3 */
Class holding the azimuth and inclination angles of spherical coordinates.
Definition angles.h:107
double GetInclination() const
Getter for inclination angle.
Definition angles.cc:236
double GetAzimuth() const
Getter for azimuth angle.
Definition angles.cc:230
AttributeValue implementation for Boolean.
Definition boolean.h:26
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition double.h:31
Class implementing the phased array model virtual base class.
Ptr< AntennaModel > m_antennaElement
the model of the antenna element in use
bool m_isBfVectorValid
ensures the validity of the beamforming vector
a unique identifier for an interface.
Definition type-id.h:48
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition type-id.cc:1001
Hold an unsigned integer type.
Definition uinteger.h:34
double m_disV
antenna spacing in the vertical direction in multiples of wave length
double m_sinAlpha
the sine of alpha
void SetPolSlant(double polSlant)
Set the polarization slant angle This method sets the polarization slant angle and computes its cosin...
uint16_t GetNumPorts() const override
Get the total number of antenna ports.
double m_disH
antenna spacing in the horizontal direction in multiples of wave length
void SetBeta(double beta)
Set the downtilt angle This method sets the downtilt angle and computes its cosine and sine.
bool m_isDualPolarized
if true antenna elements are dual-polarized
uint16_t ArrayIndexFromPortIndex(uint16_t portIndex, uint16_t subElementIndex) const override
Maps element within a port to an index of element within the antenna array.
void SetNumRows(uint32_t n) override
Set the number of rows of the phased array This method resets the stored beamforming vector to a Comp...
bool IsDualPol() const override
Check if an antenna array contains dual-polarized elements.
static TypeId GetTypeId()
Get the type ID.
void SetAlpha(double alpha)
Set the bearing angle This method sets the bearing angle and computes its cosine and sine.
void SetNumColumns(uint32_t n) override
Set the number of columns of the phased array This method resets the stored beamforming vector to a C...
double GetAntennaVerticalSpacing() const
Get the vertical spacing for the antenna elements of the phased array.
uint16_t GetNumVerticalPorts() const override
Get the number of vertical antenna ports.
uint16_t m_numVPorts
Number of vertical ports.
std::pair< double, double > GetElementFieldPattern(Angles a, uint8_t polIndex=0) const override
Returns the horizontal and vertical components of the antenna element field pattern at the specified ...
double m_polSlant
the polarization slant angle in radians
uint8_t GetElemPol(size_t elemIndex) const override
Returns the index of polarization to which belongs the antenna element with a specific index.
uint32_t GetNumRows() const override
Get the number of rows of the phased array.
double GetPolSlant() const override
Returns polarization angle of first polarization.
double m_cosBeta
the cosine of Beta
void SetAntennaVerticalSpacing(double s)
Set the vertical spacing for the antenna elements of the phased array This method resets the stored b...
double GetAntennaHorizontalSpacing() const
Get the horizontal spacing for the antenna elements of the phased array.
~UniformPlanarArray() override
Destructor.
uint32_t m_numRows
number of rows
Vector GetElementLocation(uint64_t index) const override
Returns the location of the antenna element with the specified index assuming the left bottom corner ...
uint32_t m_numColumns
number of columns
double m_alpha
the bearing angle in radians
uint16_t GetNumHorizontalPorts() const override
Get the number of horizontal antenna ports.
uint16_t m_numHPorts
Number of horizontal ports.
void SetDualPol(bool isDualPol)
Set the polarization.
size_t GetHElemsPerPort() const override
Get the number of horizontal elements belonging to each port.
void SetNumVerticalPorts(uint16_t nPorts) override
Set the number of vertical antenna ports.
size_t GetVElemsPerPort() const override
Get the number of vertical elements belonging to each port.
uint32_t GetNumColumns() const override
Get the number of columns of the phased array.
void SetNumHorizontalPorts(uint16_t nPorts) override
Set the number of horizontal antenna ports.
std::vector< double > m_cosPolSlant
the cosine of polarization slant angle
double GetAlpha() const
Returns bearing angle of first polarization.
double GetBeta() const
Returns downtilt angle of first polarization.
double m_sinBeta
the sine of Beta
size_t GetNumElems() const override
Returns the number of total antenna elements.
void SetAntennaHorizontalSpacing(double s)
Set the horizontal spacing for the antenna elements of the phased array This method resets the stored...
double m_beta
the downtilt angle in radians
double m_cosAlpha
the cosine of alpha
size_t GetNumElemsPerPort() const override
Get the total number of elements belonging to each port.
uint8_t GetNumPols() const override
Returns the number of polarizations, 2 in the case that the antenna is dual-polarized,...
std::vector< double > m_sinPolSlant
the sine polarization slant angle
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Definition assert.h:55
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Definition assert.h:75
Ptr< const AttributeChecker > MakeBooleanChecker()
Definition boolean.cc:113
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition boolean.h:70
Ptr< const AttributeChecker > MakeDoubleChecker()
Definition double.h:82
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition double.h:32
Ptr< const AttributeChecker > MakeUintegerChecker()
Definition uinteger.h:85
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition uinteger.h:35
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
Definition abort.h:97
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition log.h:191
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Definition log.h:257
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition object-base.h:35
Every class exported by the ns3 library is enclosed in the ns3 namespace.
double RadiansToDegrees(double radians)
converts radians to degrees
Definition angles.cc:34