Store the last pathloss value for each TX-RX pair. More...
#include "lte-global-pathloss-database.h"
Public Member Functions | |
virtual | ~LteGlobalPathlossDatabase (void) |
double | GetPathloss (uint16_t cellId, uint64_t imsi) |
void | Print () |
print the stored pathloss values to standard output More... | |
virtual void | UpdatePathloss (std::string context, Ptr< const SpectrumPhy > txPhy, Ptr< const SpectrumPhy > rxPhy, double lossDb)=0 |
update the pathloss value More... | |
Protected Attributes | |
std::map< uint16_t, std::map< uint64_t, double > > | m_pathlossMap |
List of the last pathloss value for each UE by CellId. More... | |
Store the last pathloss value for each TX-RX pair.
This is an example of how the PathlossTrace (provided by some SpectrumChannel implementations) work.
Definition at line 42 of file lte-global-pathloss-database.h.
|
virtual |
Definition at line 33 of file lte-global-pathloss-database.cc.
double ns3::LteGlobalPathlossDatabase::GetPathloss | ( | uint16_t | cellId, |
uint64_t | imsi | ||
) |
cellId | the id of the eNB |
imsi | the id of the UE |
Definition at line 56 of file lte-global-pathloss-database.cc.
References m_pathlossMap, and NS_LOG_FUNCTION.
Referenced by LteEnbAntennaTestCase::DoRun().
void ns3::LteGlobalPathlossDatabase::Print | ( | void | ) |
print the stored pathloss values to standard output
Definition at line 38 of file lte-global-pathloss-database.cc.
References m_pathlossMap, and NS_LOG_FUNCTION.
|
pure virtual |
update the pathloss value
context | |
txPhy | the transmitting PHY |
rxPhy | the receiving PHY |
lossDb | the loss in dB |
Implemented in ns3::UplinkLteGlobalPathlossDatabase, and ns3::DownlinkLteGlobalPathlossDatabase.
|
protected |
List of the last pathloss value for each UE by CellId.
( CELL ID, ( IMSI,PATHLOSS ))
Definition at line 79 of file lte-global-pathloss-database.h.
Referenced by GetPathloss(), Print(), ns3::DownlinkLteGlobalPathlossDatabase::UpdatePathloss(), and ns3::UplinkLteGlobalPathlossDatabase::UpdatePathloss().