A Discrete-Event Network Simulator
API
matrix-based-channel-model.h
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2020 SIGNET Lab, Department of Information Engineering,
4  * University of Padova
5  * Copyright (c) 2020 Institute for the Wireless Internet of Things,
6  * Northeastern University
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation;
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  */
21 
22 #ifndef MATRIX_BASED_CHANNEL_H
23 #define MATRIX_BASED_CHANNEL_H
24 
25 #include <complex.h>
26 #include <ns3/object.h>
27 #include <ns3/nstime.h>
28 #include <ns3/vector.h>
29 #include <ns3/phased-array-model.h>
30 #include <tuple>
31 
32 namespace ns3 {
33 
34 class MobilityModel;
35 
44 {
45 public:
49  virtual ~MatrixBasedChannelModel ();
50 
51  typedef std::vector<double> DoubleVector;
52  typedef std::vector<DoubleVector> Double2DVector;
53  typedef std::vector<Double2DVector> Double3DVector;
54  typedef std::vector<PhasedArrayModel::ComplexVector> Complex2DVector;
55  typedef std::vector<Complex2DVector> Complex3DVector;
56 
60  struct ChannelMatrix : public SimpleRefCount<ChannelMatrix>
61  {
64  std::pair<uint32_t, uint32_t> m_antennaPair;
65  std::pair<uint32_t, uint32_t> m_nodeIds;
66 
70  virtual ~ChannelMatrix () = default;
71 
79  bool IsReverse (uint32_t aAntennaId, uint32_t bAntennaId) const
80  {
81  uint32_t sAntennaId, uAntennaId;
82  std::tie (sAntennaId, uAntennaId) = m_antennaPair;
83  NS_ASSERT_MSG ((sAntennaId == aAntennaId && uAntennaId == bAntennaId) || (sAntennaId == bAntennaId && uAntennaId == aAntennaId),
84  "This channel matrix does not represent the channel among the antenna arrays for which are provided IDs.");
85  return (sAntennaId == bAntennaId && uAntennaId == aAntennaId);
86  }
87  };
88 
89 
93  struct ChannelParams : public SimpleRefCount<ChannelParams>
94  {
100  std::pair<uint32_t, uint32_t> m_nodeIds;
104  virtual ~ChannelParams () = default;
105  };
106 
128  Ptr<const PhasedArrayModel> bAntenna) = 0;
129 
139  Ptr<const MobilityModel> bMob) const = 0;
140 
148  static uint64_t GetKey (uint32_t a, uint32_t b)
149  {
150  return (uint64_t) std::min (a, b) << 32 | std::max (a, b);
151  }
152 
153  static const uint8_t AOA_INDEX = 0;
154  static const uint8_t ZOA_INDEX = 1;
155  static const uint8_t AOD_INDEX = 2;
156  static const uint8_t ZOD_INDEX = 3;
157 
158 };
159 
160 }; // namespace ns3
161 
162 #endif // MATRIX_BASED_CHANNEL_H
#define min(a, b)
Definition: 80211b.c:42
#define max(a, b)
Definition: 80211b.c:43
This is an interface for a channel model that can be described by a channel matrix,...
std::vector< PhasedArrayModel::ComplexVector > Complex2DVector
type definition for complex matrices
virtual ~MatrixBasedChannelModel()
Destructor for MatrixBasedChannelModel.
std::vector< Complex2DVector > Complex3DVector
type definition for complex 3D matrices
static const uint8_t AOA_INDEX
index of the AOA value in the m_angle array
virtual Ptr< const ChannelParams > GetParams(Ptr< const MobilityModel > aMob, Ptr< const MobilityModel > bMob) const =0
Returns a channel parameters structure used to obtain the channel between the nodes with mobility obj...
std::vector< DoubleVector > Double2DVector
type definition for matrices of doubles
static const uint8_t ZOD_INDEX
index of the ZOD value in the m_angle array
static const uint8_t AOD_INDEX
index of the AOD value in the m_angle array
std::vector< double > DoubleVector
type definition for vectors of doubles
static const uint8_t ZOA_INDEX
index of the ZOA value in the m_angle array
virtual Ptr< const ChannelMatrix > GetChannel(Ptr< const MobilityModel > aMob, Ptr< const MobilityModel > bMob, Ptr< const PhasedArrayModel > aAntenna, Ptr< const PhasedArrayModel > bAntenna)=0
Returns a matrix with a realization of the channel between the nodes with mobility objects passed as ...
static uint64_t GetKey(uint32_t a, uint32_t b)
Generate a unique value for the pair of unsigned integer of 32 bits, where the order does not matter,...
std::vector< Double2DVector > Double3DVector
type definition for 3D matrices of doubles
A base class which provides memory management and object aggregation.
Definition: object.h:88
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:74
A template-based reference counting class.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
#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:88
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Data structure that stores a channel realization.
virtual ~ChannelMatrix()=default
Destructor for ChannelMatrix.
Complex3DVector m_channel
channel matrix H[u][s][n].
bool IsReverse(uint32_t aAntennaId, uint32_t bAntennaId) const
Returns true if the ChannelMatrix object was generated considering node b as transmitter and node a a...
std::pair< uint32_t, uint32_t > m_antennaPair
the first element is the ID of the antenna of the s-node (the antenna of the transmitter when the cha...
std::pair< uint32_t, uint32_t > m_nodeIds
the first element is the s-node ID (the transmitter when the channel was generated),...
Data structure that stores channel parameters.
DoubleVector m_delay
cluster delay in nanoseconds.
Double2DVector m_angle
cluster angle angle[direction][n], where direction = 0(AOA), 1(ZOA), 2(AOD), 3(ZOD) in degree.
virtual ~ChannelParams()=default
Destructor for ChannelParams.
DoubleVector m_alpha
alpha term per cluster as described in 3GPP TR 37.885 v15.3.0, Sec.
DoubleVector m_D
D term per cluster as described in 3GPP TR 37.885 v15.3.0, Sec.
std::pair< uint32_t, uint32_t > m_nodeIds
the first element is the s-node ID (the transmitter when the channel params were generated),...