Channel Matrix Generation following 3GPP TR 38.901. More...
#include "three-gpp-channel-model.h"
Classes | |
struct | ParamsTable |
Data structure that stores the parameters of 3GPP TR 38.901, Table 7.5-6, for a certain scenario. More... | |
struct | ThreeGppChannelMatrix |
Extends the struct ChannelMatrix by including information that are used within the class ThreeGppChannelModel. More... | |
Public Member Functions | |
ThreeGppChannelModel () | |
Constructor. More... | |
~ThreeGppChannelModel () | |
Destructor. More... | |
int64_t | AssignStreams (int64_t stream) |
Assign a fixed random variable stream number to the random variables used by this model. More... | |
void | DoDispose () override |
Destructor implementation. More... | |
Ptr< const ChannelMatrix > | GetChannel (Ptr< const MobilityModel > aMob, Ptr< const MobilityModel > bMob, Ptr< const ThreeGppAntennaArrayModel > aAntenna, Ptr< const ThreeGppAntennaArrayModel > bAntenna) override |
Looks for the channel matrix associated to the aMob and bMob pair in m_channelMap. More... | |
Ptr< ChannelConditionModel > | GetChannelConditionModel () const |
Get the associated channel condition model. More... | |
double | GetFrequency (void) const |
Returns the center frequency. More... | |
std::string | GetScenario (void) const |
Returns the propagation scenario. More... | |
void | SetChannelConditionModel (Ptr< ChannelConditionModel > model) |
Set the channel condition model. More... | |
void | SetFrequency (double f) |
Sets the center frequency of the model. More... | |
void | SetScenario (const std::string &scenario) |
Sets the propagation scenario. More... | |
![]() | |
virtual | ~MatrixBasedChannelModel () |
Destructor for MatrixBasedChannelModel. More... | |
![]() | |
Object () | |
Constructor. More... | |
virtual | ~Object () |
Destructor. More... | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. More... | |
void | Dispose (void) |
Dispose of this Object. More... | |
AggregateIterator | GetAggregateIterator (void) const |
Get an iterator to the Objects aggregated to this one. More... | |
virtual TypeId | GetInstanceTypeId (void) const |
Get the most derived TypeId for this Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (void) const |
Get a pointer to the requested aggregated Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. More... | |
template<> | |
Ptr< Object > | GetObject () const |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
void | Initialize (void) |
Invoke DoInitialize on all Objects aggregated to this one. More... | |
bool | IsInitialized (void) const |
Check if the object has been initialized. More... | |
![]() | |
SimpleRefCount () | |
Default constructor. More... | |
SimpleRefCount (const SimpleRefCount &o) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount (void) const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
Assignment operator. More... | |
void | Ref (void) const |
Increment the reference count. More... | |
void | Unref (void) const |
Decrement the reference count. More... | |
![]() | |
virtual | ~ObjectBase () |
Virtual destructor. More... | |
void | GetAttribute (std::string name, AttributeValue &value) const |
Get the value of an attribute, raising fatal errors if unsuccessful. More... | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising erros. More... | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. More... | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. More... | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. More... | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. More... | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. More... | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. More... | |
Static Public Member Functions | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
![]() | |
static constexpr uint32_t | GetKey (uint32_t x1, uint32_t x2) |
Calculate the channel key using the Cantor function. More... | |
![]() | |
static TypeId | GetTypeId (void) |
Register this type. More... | |
![]() | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Private Member Functions | |
DoubleVector | CalcAttenuationOfBlockage (Ptr< ThreeGppChannelMatrix > params, const DoubleVector &clusterAOA, const DoubleVector &clusterZOA) const |
Applies the blockage model A described in 3GPP TR 38.901. More... | |
bool | ChannelMatrixNeedsUpdate (Ptr< const ThreeGppChannelMatrix > channelMatrix, bool isLos) const |
Check if the channel matrix has to be updated. More... | |
Ptr< ThreeGppChannelMatrix > | GetNewChannel (Vector locUT, bool los, bool o2i, Ptr< const ThreeGppAntennaArrayModel > sAntenna, Ptr< const ThreeGppAntennaArrayModel > uAntenna, Angles &uAngle, Angles &sAngle, double dis2D, double hBS, double hUT) const |
Compute the channel matrix between two devices using the procedure described in 3GPP TR 38.901. More... | |
Ptr< const ParamsTable > | GetThreeGppTable (bool los, bool o2i, double hBS, double hUT, double distance2D) const |
Get the parameters needed to apply the channel generation procedure. More... | |
void | Shuffle (double *first, double *last) const |
Shuffle the elements of a simple sequence container of type double. More... | |
Private Attributes | |
bool | m_blockage |
enables the blockage model A More... | |
double | m_blockerSpeed |
the blocker speed More... | |
Ptr< ChannelConditionModel > | m_channelConditionModel |
the channel condition model More... | |
std::unordered_map< uint32_t, Ptr< ThreeGppChannelMatrix > > | m_channelMap |
map containing the channel realizations More... | |
double | m_frequency |
the operating frequency More... | |
Ptr< NormalRandomVariable > | m_normalRv |
normal random variable More... | |
uint16_t | m_numNonSelfBlocking |
number of non-self-blocking regions More... | |
bool | m_portraitMode |
true if potrait mode, false if landscape More... | |
std::string | m_scenario |
the 3GPP scenario More... | |
Ptr< UniformRandomVariable > | m_uniformRv |
uniform random variable More... | |
Ptr< UniformRandomVariable > | m_uniformRvShuffle |
uniform random variable used to shuffle array in GetNewChannel More... | |
Time | m_updatePeriod |
the channel update period More... | |
Static Private Attributes | |
static const uint8_t | PHI_INDEX = 0 |
index of the PHI value in the m_nonSelfBlocking array More... | |
static const uint8_t | R_INDEX = 4 |
index of the R value in the m_nonSelfBlocking array More... | |
static const uint8_t | THETA_INDEX = 2 |
index of the THETA value in the m_nonSelfBlocking array More... | |
static const uint8_t | X_INDEX = 1 |
index of the X value in the m_nonSelfBlocking array More... | |
static const uint8_t | Y_INDEX = 3 |
index of the Y value in the m_nonSelfBlocking array More... | |
Additional Inherited Members | |
![]() | |
typedef std::vector< ThreeGppAntennaArrayModel::ComplexVector > | Complex2DVector |
type definition for complex matrices More... | |
typedef std::vector< Complex2DVector > | Complex3DVector |
type definition for complex 3D matrices More... | |
typedef std::vector< DoubleVector > | Double2DVector |
type definition for matrices of doubles More... | |
typedef std::vector< Double2DVector > | Double3DVector |
type definition for 3D matrices of doubles More... | |
typedef std::vector< double > | DoubleVector |
type definition for vectors of doubles More... | |
![]() | |
static const uint8_t | AOA_INDEX = 0 |
index of the AOA value in the m_angle array More... | |
static const uint8_t | AOD_INDEX = 2 |
index of the AOD value in the m_angle array More... | |
static const uint8_t | ZOA_INDEX = 1 |
index of the ZOA value in the m_angle array More... | |
static const uint8_t | ZOD_INDEX = 3 |
index of the ZOD value in the m_angle array More... | |
![]() | |
Object (const Object &o) | |
Copy an Object. More... | |
virtual void | DoInitialize (void) |
Initialize() implementation. More... | |
virtual void | NotifyNewAggregate (void) |
Notify all Objects aggregated to this one of a new Object being aggregated. More... | |
![]() | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. More... | |
virtual void | NotifyConstructionCompleted (void) |
Notifier called once the ObjectBase is fully constructed. More... | |
![]() | |
static TypeId | GetObjectIid (void) |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
Channel Matrix Generation following 3GPP TR 38.901.
Introspection did not find any typical Config paths.
The class implements the channel matrix generation procedure described in 3GPP TR 38.901.
No TraceSources are defined for this type.
Size of this type is 160 bytes (on a 64-bit architecture).
Definition at line 48 of file three-gpp-channel-model.h.
ns3::ThreeGppChannelModel::ThreeGppChannelModel | ( | ) |
Constructor.
Definition at line 163 of file three-gpp-channel-model.cc.
References m_normalRv, m_uniformRv, m_uniformRvShuffle, and NS_LOG_FUNCTION.
ns3::ThreeGppChannelModel::~ThreeGppChannelModel | ( | ) |
int64_t ns3::ThreeGppChannelModel::AssignStreams | ( | int64_t | stream | ) |
Assign a fixed random variable stream number to the random variables used by this model.
stream | first stream index to use |
Definition at line 1823 of file three-gpp-channel-model.cc.
References m_normalRv, m_uniformRv, m_uniformRvShuffle, NS_LOG_FUNCTION, and ns3::RandomVariableStream::SetStream().
|
private |
Applies the blockage model A described in 3GPP TR 38.901.
params | the channel matrix |
clusterAOA | vector containing the azimuth angle of arrival for each cluster |
clusterZOA | vector containing the zenith angle of arrival for each cluster |
Definition at line 1593 of file three-gpp-channel-model.cc.
References ns3::UniformRandomVariable::GetValue(), m_blockerSpeed, m_frequency, m_normalRv, m_numNonSelfBlocking, m_portraitMode, m_scenario, m_uniformRv, ns3::Now(), NS_ASSERT_MSG, NS_LOG_FUNCTION, NS_LOG_INFO, PHI_INDEX, R_INDEX, THETA_INDEX, X_INDEX, and Y_INDEX.
Referenced by GetNewChannel().
|
private |
Check if the channel matrix has to be updated.
channelMatrix | channel matrix |
isLos | the current los condition |
Definition at line 720 of file three-gpp-channel-model.cc.
References ns3::Time::As(), ns3::Time::IsZero(), ns3::MatrixBasedChannelModel::ChannelMatrix::m_generatedTime, ns3::ThreeGppChannelModel::ThreeGppChannelMatrix::m_los, m_updatePeriod, ns3::Now(), ns3::Simulator::Now(), ns3::Time::NS, NS_LOG_DEBUG, and NS_LOG_FUNCTION.
Referenced by GetChannel().
|
overridevirtual |
Destructor implementation.
This method is called by Dispose() or by the Object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overridden version of this method and chain up to their parent's implementation once they are done. i.e, for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose() method.
It is safe to call GetObject() from within this method.
Reimplemented from ns3::Object.
Definition at line 180 of file three-gpp-channel-model.cc.
References m_channelConditionModel, and m_channelMap.
|
overridevirtual |
Looks for the channel matrix associated to the aMob and bMob pair in m_channelMap.
If found, it checks if it has to be updated. If not found or if it has to be updated, it generates a new uncorrelated channel matrix using the method GetNewChannel and updates m_channelMap.
aMob | mobility model of the a device |
bMob | mobility model of the b device |
aAntenna | antenna of the a device |
bAntenna | antenna of the b device |
Implements ns3::MatrixBasedChannelModel.
Definition at line 744 of file three-gpp-channel-model.cc.
References ChannelMatrixNeedsUpdate(), ns3::Node::GetId(), ns3::MatrixBasedChannelModel::GetKey(), GetNewChannel(), m_channelConditionModel, m_channelMap, ns3::MatrixBasedChannelModel::ChannelMatrix::m_nodeIds, max, min, NS_LOG_DEBUG, NS_LOG_FUNCTION, and sample-rng-plot::x.
Referenced by ThreeGppChannelMatrixComputationTest::DoComputeNorm(), and ThreeGppChannelMatrixUpdateTest::DoGetChannel().
Ptr< ChannelConditionModel > ns3::ThreeGppChannelModel::GetChannelConditionModel | ( | void | ) | const |
Get the associated channel condition model.
Definition at line 251 of file three-gpp-channel-model.cc.
References m_channelConditionModel, and NS_LOG_FUNCTION.
Referenced by GetTypeId().
double ns3::ThreeGppChannelModel::GetFrequency | ( | void | ) | const |
Returns the center frequency.
Definition at line 266 of file three-gpp-channel-model.cc.
References m_frequency, and NS_LOG_FUNCTION.
Referenced by GetTypeId().
|
private |
Compute the channel matrix between two devices using the procedure described in 3GPP TR 38.901.
locUT | the location of the UT |
los | the LOS/NLOS condition |
o2i | whether if it is an outdoor to indoor transmission |
sAntenna | the s node antenna array |
uAntenna | the u node antenna array |
uAngle | the u node angle |
sAngle | the s node angle |
dis2D | the 2D distance between tx and rx |
hBS | the height of the BS |
hUT | the height of the UT |
Definition at line 815 of file three-gpp-channel-model.cc.
References CalcAttenuationOfBlockage(), GetThreeGppTable(), ns3::UniformRandomVariable::GetValue(), ns3::MatrixBasedChannelModel::ChannelMatrix::m_angle, m_blockage, ns3::ThreeGppChannelModel::ParamsTable::m_cASA, ns3::ThreeGppChannelModel::ParamsTable::m_cASD, ns3::ThreeGppChannelModel::ParamsTable::m_cDS, ns3::MatrixBasedChannelModel::ChannelMatrix::m_channel, ns3::ThreeGppChannelModel::ThreeGppChannelMatrix::m_clusterPhase, ns3::ThreeGppChannelModel::ParamsTable::m_cZSA, ns3::MatrixBasedChannelModel::ChannelMatrix::m_delay, ns3::ThreeGppChannelModel::ThreeGppChannelMatrix::m_DS, m_frequency, ns3::MatrixBasedChannelModel::ChannelMatrix::m_generatedTime, ns3::ThreeGppChannelModel::ThreeGppChannelMatrix::m_K, ns3::ThreeGppChannelModel::ThreeGppChannelMatrix::m_los, m_normalRv, ns3::ThreeGppChannelModel::ThreeGppChannelMatrix::m_numCluster, ns3::ThreeGppChannelModel::ParamsTable::m_numOfCluster, ns3::ThreeGppChannelModel::ThreeGppChannelMatrix::m_o2i, ns3::ThreeGppChannelModel::ParamsTable::m_offsetZOD, ns3::ThreeGppChannelModel::ParamsTable::m_perClusterShadowingStd, ns3::ThreeGppChannelModel::ParamsTable::m_raysPerCluster, ns3::ThreeGppChannelModel::ParamsTable::m_rTau, ns3::ThreeGppChannelModel::ParamsTable::m_sigK, ns3::ThreeGppChannelModel::ParamsTable::m_sigLgASA, ns3::ThreeGppChannelModel::ParamsTable::m_sigLgASD, ns3::ThreeGppChannelModel::ParamsTable::m_sigLgDS, ns3::ThreeGppChannelModel::ParamsTable::m_sigLgZSA, ns3::ThreeGppChannelModel::ParamsTable::m_sigLgZSD, ns3::ThreeGppChannelModel::ParamsTable::m_sigXpr, ns3::ThreeGppChannelModel::ParamsTable::m_sqrtC, ns3::ThreeGppChannelModel::ParamsTable::m_uK, ns3::ThreeGppChannelModel::ParamsTable::m_uLgASA, ns3::ThreeGppChannelModel::ParamsTable::m_uLgASD, ns3::ThreeGppChannelModel::ParamsTable::m_uLgDS, ns3::ThreeGppChannelModel::ParamsTable::m_uLgZSA, ns3::ThreeGppChannelModel::ParamsTable::m_uLgZSD, m_uniformRv, ns3::ThreeGppChannelModel::ParamsTable::m_uXpr, ns3::max(), min, ns3::min(), ns3::Simulator::Now(), NS_ASSERT, NS_ASSERT_MSG, NS_FATAL_ERROR, NS_LOG_FUNCTION, NS_LOG_INFO, ns3::offSetAlpha, ns3::Angles::phi, Shuffle(), and ns3::Angles::theta.
Referenced by GetChannel().
std::string ns3::ThreeGppChannelModel::GetScenario | ( | void | ) | const |
Returns the propagation scenario.
Definition at line 283 of file three-gpp-channel-model.cc.
References m_scenario, and NS_LOG_FUNCTION.
Referenced by GetTypeId().
|
private |
Get the parameters needed to apply the channel generation procedure.
los | the LOS/NLOS condition |
o2i | whether if it is an outdoor to indoor transmission |
hBS | the height of the BS |
hUT | the height of the UT |
distance2D | the 2D distance between tx and rx |
Definition at line 290 of file three-gpp-channel-model.cc.
References ns3::ThreeGppChannelModel::ParamsTable::m_cASA, ns3::ThreeGppChannelModel::ParamsTable::m_cASD, ns3::ThreeGppChannelModel::ParamsTable::m_cDS, ns3::ThreeGppChannelModel::ParamsTable::m_cZSA, m_frequency, ns3::ThreeGppChannelModel::ParamsTable::m_numOfCluster, ns3::ThreeGppChannelModel::ParamsTable::m_offsetZOD, ns3::ThreeGppChannelModel::ParamsTable::m_perClusterShadowingStd, ns3::ThreeGppChannelModel::ParamsTable::m_raysPerCluster, ns3::ThreeGppChannelModel::ParamsTable::m_rTau, m_scenario, ns3::ThreeGppChannelModel::ParamsTable::m_sigK, ns3::ThreeGppChannelModel::ParamsTable::m_sigLgASA, ns3::ThreeGppChannelModel::ParamsTable::m_sigLgASD, ns3::ThreeGppChannelModel::ParamsTable::m_sigLgDS, ns3::ThreeGppChannelModel::ParamsTable::m_sigLgZSA, ns3::ThreeGppChannelModel::ParamsTable::m_sigLgZSD, ns3::ThreeGppChannelModel::ParamsTable::m_sigXpr, ns3::ThreeGppChannelModel::ParamsTable::m_sqrtC, ns3::ThreeGppChannelModel::ParamsTable::m_uK, ns3::ThreeGppChannelModel::ParamsTable::m_uLgASA, ns3::ThreeGppChannelModel::ParamsTable::m_uLgASD, ns3::ThreeGppChannelModel::ParamsTable::m_uLgDS, ns3::ThreeGppChannelModel::ParamsTable::m_uLgZSA, ns3::ThreeGppChannelModel::ParamsTable::m_uLgZSD, ns3::ThreeGppChannelModel::ParamsTable::m_uXpr, max, NS_ASSERT_MSG, NS_FATAL_ERROR, NS_LOG_FUNCTION, ns3::sqrtC_office_LOS, ns3::sqrtC_office_NLOS, ns3::sqrtC_RMa_LOS, ns3::sqrtC_RMa_NLOS, ns3::sqrtC_RMa_O2I, ns3::sqrtC_UMa_LOS, ns3::sqrtC_UMa_NLOS, ns3::sqrtC_UMa_O2I, ns3::sqrtC_UMi_LOS, ns3::sqrtC_UMi_NLOS, and ns3::sqrtC_UMi_O2I.
Referenced by GetNewChannel().
|
static |
Get the type ID.
Definition at line 188 of file three-gpp-channel-model.cc.
References GetChannelConditionModel(), GetFrequency(), GetScenario(), m_blockage, m_blockerSpeed, m_numNonSelfBlocking, m_portraitMode, m_updatePeriod, ns3::MakeBooleanAccessor(), ns3::MakeBooleanChecker(), ns3::MakeDoubleAccessor(), ns3::MakeIntegerAccessor(), ns3::MakePointerAccessor(), ns3::MakeStringAccessor(), ns3::MakeStringChecker(), ns3::MakeTimeAccessor(), ns3::MakeTimeChecker(), ns3::MilliSeconds(), SetChannelConditionModel(), SetFrequency(), ns3::TypeId::SetParent(), and SetScenario().
void ns3::ThreeGppChannelModel::SetChannelConditionModel | ( | Ptr< ChannelConditionModel > | model | ) |
Set the channel condition model.
a | pointer to the ChannelConditionModel object |
Definition at line 244 of file three-gpp-channel-model.cc.
References m_channelConditionModel, and NS_LOG_FUNCTION.
Referenced by GetTypeId().
void ns3::ThreeGppChannelModel::SetFrequency | ( | double | f | ) |
Sets the center frequency of the model.
f | the center frequency in Hz |
Definition at line 258 of file three-gpp-channel-model.cc.
References f(), m_frequency, NS_ASSERT_MSG, and NS_LOG_FUNCTION.
Referenced by GetTypeId().
void ns3::ThreeGppChannelModel::SetScenario | ( | const std::string & | scenario | ) |
Sets the propagation scenario.
scenario | the propagation scenario |
Definition at line 273 of file three-gpp-channel-model.cc.
References m_scenario, NS_ASSERT_MSG, and NS_LOG_FUNCTION.
Referenced by GetTypeId().
|
private |
Shuffle the elements of a simple sequence container of type double.
first | Pointer to the first element among the elements to be shuffled |
last | Pointer to the last element among the elements to be shuffled |
Definition at line 1814 of file three-gpp-channel-model.cc.
References ns3::UniformRandomVariable::GetInteger(), and m_uniformRvShuffle.
Referenced by GetNewChannel().
|
private |
enables the blockage model A
Definition at line 257 of file three-gpp-channel-model.h.
Referenced by GetNewChannel(), and GetTypeId().
|
private |
the blocker speed
Definition at line 260 of file three-gpp-channel-model.h.
Referenced by CalcAttenuationOfBlockage(), and GetTypeId().
|
private |
the channel condition model
Definition at line 251 of file three-gpp-channel-model.h.
Referenced by DoDispose(), GetChannel(), GetChannelConditionModel(), and SetChannelConditionModel().
|
private |
map containing the channel realizations
Definition at line 247 of file three-gpp-channel-model.h.
Referenced by DoDispose(), and GetChannel().
|
private |
the operating frequency
Definition at line 249 of file three-gpp-channel-model.h.
Referenced by CalcAttenuationOfBlockage(), GetFrequency(), GetNewChannel(), GetThreeGppTable(), and SetFrequency().
|
private |
normal random variable
Definition at line 253 of file three-gpp-channel-model.h.
Referenced by AssignStreams(), CalcAttenuationOfBlockage(), GetNewChannel(), and ThreeGppChannelModel().
|
private |
number of non-self-blocking regions
Definition at line 258 of file three-gpp-channel-model.h.
Referenced by CalcAttenuationOfBlockage(), and GetTypeId().
|
private |
true if potrait mode, false if landscape
Definition at line 259 of file three-gpp-channel-model.h.
Referenced by CalcAttenuationOfBlockage(), and GetTypeId().
|
private |
the 3GPP scenario
Definition at line 250 of file three-gpp-channel-model.h.
Referenced by CalcAttenuationOfBlockage(), GetScenario(), GetThreeGppTable(), and SetScenario().
|
private |
uniform random variable
Definition at line 252 of file three-gpp-channel-model.h.
Referenced by AssignStreams(), CalcAttenuationOfBlockage(), GetNewChannel(), and ThreeGppChannelModel().
|
private |
uniform random variable used to shuffle array in GetNewChannel
Definition at line 254 of file three-gpp-channel-model.h.
Referenced by AssignStreams(), Shuffle(), and ThreeGppChannelModel().
|
private |
the channel update period
Definition at line 248 of file three-gpp-channel-model.h.
Referenced by ChannelMatrixNeedsUpdate(), and GetTypeId().
|
staticprivate |
index of the PHI value in the m_nonSelfBlocking array
Definition at line 262 of file three-gpp-channel-model.h.
Referenced by CalcAttenuationOfBlockage().
|
staticprivate |
index of the R value in the m_nonSelfBlocking array
Definition at line 266 of file three-gpp-channel-model.h.
Referenced by CalcAttenuationOfBlockage().
|
staticprivate |
index of the THETA value in the m_nonSelfBlocking array
Definition at line 264 of file three-gpp-channel-model.h.
Referenced by CalcAttenuationOfBlockage().
|
staticprivate |
index of the X value in the m_nonSelfBlocking array
Definition at line 263 of file three-gpp-channel-model.h.
Referenced by CalcAttenuationOfBlockage().
|
staticprivate |
index of the Y value in the m_nonSelfBlocking array
Definition at line 265 of file three-gpp-channel-model.h.
Referenced by CalcAttenuationOfBlockage().