23 #include "ns3/core-module.h" 
   24 #include "ns3/network-module.h" 
   25 #include "ns3/mobility-module.h" 
   26 #include "ns3/lte-module.h" 
   27 #include "ns3/config-store.h" 
   28 #include "ns3/radio-bearer-stats-calculator.h" 
   29 #include "ns3/lte-global-pathloss-database.h" 
   43 int main (
int argc, 
char *argv[])
 
   45   double enbDist = 20.0;
 
   51   cmd.
AddValue (
"enbDist", 
"distance between the two eNBs", enbDist);
 
   52   cmd.
AddValue (
"radius", 
"the radius of the disc where UEs are placed around an eNB", radius);
 
   53   cmd.
AddValue (
"numUes", 
"how many UEs are attached to each eNB", numUes);
 
   54   cmd.
Parse (argc, argv);
 
   60   cmd.
Parse (argc, argv);
 
   68   std::ostringstream tag;
 
   69   tag  << 
"_enbDist" << std::setw (3) << std::setfill (
'0') << std::fixed << std::setprecision (0) << enbDist
 
   70        << 
"_radius"  << std::setw (3) << std::setfill (
'0') << std::fixed << std::setprecision (0) << radius
 
   71        << 
"_numUes"  << std::setw (3) << std::setfill (
'0')  << numUes
 
   72        << 
"_rngRun"  << std::setw (3) << std::setfill (
'0')  << runValue.
Get () ;
 
  102   positionAlloc->
Add (
Vector (0.0, 0.0, 0.0));
 
  103   positionAlloc->
Add (
Vector (enbDist, 0.0, 0.0));
 
  107   enbMobility.
Install (enbNodes);
 
  116   ue1mobility.
Install (ueNodes1);
 
  125   ue2mobility.
Install (ueNodes2);
 
  136   lteHelper->
Attach (ueDevs1, enbDevs.
Get (0));
 
  137   lteHelper->
Attach (ueDevs2, enbDevs.
Get (1));
 
  148   std::string dlOutFname = 
"DlRlcStats";
 
  149   dlOutFname.append (tag.str ());
 
  150   std::string ulOutFname = 
"UlRlcStats";
 
  151   ulOutFname.append (tag.str ());
 
  172   std::cout << std::endl << 
"Downlink pathloss:" << std::endl;
 
  173   dlPathlossDb.
Print ();
 
  174   std::cout << std::endl << 
"Uplink pathloss:" << std::endl;
 
  175   ulPathlossDb.
Print ();
 
void Print()
print the stored pathloss values to standard output 
Doxygen introspection did not find any typical Config paths. 
NetDeviceContainer InstallEnbDevice(NodeContainer c)
create a set of eNB devices 
hold variables of type string 
Ptr< NetDevice > Get(uint32_t i) const 
Get the Ptr stored in this container at a given index. 
static void Run(void)
Run the simulation until one of: 
Hold a signed integer type. 
void Attach(NetDeviceContainer ueDevices)
Enables automatic attachment of a set of UE devices to a suitable cell using Idle mode initial cell s...
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name. 
void EnableRlcTraces(void)
Enable trace sinks for RLC layer. 
void Connect(std::string path, const CallbackBase &cb)
void ActivateDataRadioBearer(NetDeviceContainer ueDevices, EpsBearer bearer)
Call ActivateDataRadioBearer (ueDevice, bearer) for each UE device in a given set. 
virtual void UpdatePathloss(std::string context, Ptr< SpectrumPhy > txPhy, Ptr< SpectrumPhy > rxPhy, double lossDb)
update the pathloss value 
This class contains the specification of EPS Bearers. 
void Install(Ptr< Node > node) const 
"Layout" a single node according to the current position allocator type. 
holds a vector of ns3::NetDevice pointers 
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
Parse command-line arguments. 
static void Destroy(void)
Every event scheduled by the Simulator::insertAtDestroy method is invoked. 
void ConfigureDefaults(void)
keep track of a set of node pointers. 
void SetMobilityModel(std::string type, std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue(), std::string n8="", const AttributeValue &v8=EmptyAttributeValue(), std::string n9="", const AttributeValue &v9=EmptyAttributeValue())
NetDeviceContainer InstallUeDevice(NodeContainer c)
create a set of UE devices 
Helper class used to assign positions and mobility models to nodes. 
void AddValue(const std::string &name, const std::string &help, T &value)
Add a program argument, assigning to POD. 
static void Stop(void)
If an event invokes this method, it will be the last event scheduled by the Simulator::run method bef...
int main(int argc, char *argv[])
static void GetValueByName(std::string name, AttributeValue &value)
finds the GlobalValue with the given name and returns its value. 
void Parse(int argc, char *argv[])
Parse the program arguments. 
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer. 
void EnableMacTraces(void)
Enable trace sinks for MAC layer. 
void SetPositionAllocator(Ptr< PositionAllocator > allocator)
Set the position allocator which will be used to allocate the initial position of every node initiali...
Hold a floating point type. 
void SetAttribute(std::string name, const AttributeValue &value)
virtual void UpdatePathloss(std::string context, Ptr< SpectrumPhy > txPhy, Ptr< SpectrumPhy > rxPhy, double lossDb)
update the pathloss value