22 #include <ns3/core-module.h>
23 #include <ns3/network-module.h>
24 #include <ns3/mobility-module.h>
25 #include <ns3/lte-module.h>
26 #include <ns3/internet-module.h>
27 #include <ns3/applications-module.h>
28 #include <ns3/point-to-point-module.h>
43 : checkStartTime (start),
45 checkInterval (interval),
46 ueDeviceIndex (ueIndex),
47 enbDeviceIndex (enbIndex)
73 std::list<CheckPointEvent> checkPointEventList,
74 std::string checkPointEventListName,
75 bool useUdp, std::string schedulerType,
76 std::string handoverAlgorithmType,
bool admitHo,
80 static std::string BuildNameString (uint32_t nEnbs, uint32_t nUes, uint32_t nDedicatedBearers,
81 std::string checkPointEventListName,
82 bool useUdp, std::string schedulerType,
83 std::string handoverAlgorithmType,
bool admitHo,
85 virtual void DoRun (
void);
117 void SaveStats (uint32_t ueIndex);
118 void CheckStats (uint32_t ueIndex);
131 std::string checkPointEventListName,
132 bool useUdp, std::string schedulerType,
133 std::string handoverAlgorithmType,
bool admitHo,
136 std::ostringstream oss;
137 oss <<
"nEnbs=" << nEnbs
139 <<
" nDedicatedBearers=" << nDedicatedBearers
141 <<
" " << schedulerType
142 <<
" " << handoverAlgorithmType
143 <<
" admitHo=" << admitHo
144 <<
" hoList: " << checkPointEventListName;
147 oss <<
", ideal RRC";
157 std::list<CheckPointEvent> checkPointEventList,
158 std::string checkPointEventListName,
159 bool useUdp, std::string schedulerType,
160 std::string handoverAlgorithmType,
bool admitHo,
162 :
TestCase (BuildNameString (nEnbs, nUes, nDedicatedBearers,
163 checkPointEventListName, useUdp, schedulerType,
164 handoverAlgorithmType, admitHo, useIdealRrc)),
167 m_nDedicatedBearers (nDedicatedBearers),
168 m_checkPointEventList (checkPointEventList),
169 m_checkPointEventListName (checkPointEventListName),
172 m_schedulerType (schedulerType),
173 m_handoverAlgorithmType (handoverAlgorithmType),
175 m_useIdealRrc (useIdealRrc),
176 m_maxHoDuration (
Seconds (0.1)),
177 m_statsDuration (
Seconds (0.5)),
178 m_udpClientInterval (
Seconds (0.01)),
179 m_udpClientPktSize (100)
230 double distance = 1000.0;
240 m_epcHelper = CreateObject<PointToPointEpcHelper> ();
247 for (uint16_t i = 0; i <
m_nEnbs; i++)
249 Vector enbPosition (distance * (i + 1), 0, 0);
250 enbPositionAlloc->
Add (enbPosition);
255 enbMobility.
Install (enbNodes);
262 for (uint16_t i = 0; i <
m_nUes; i++)
272 it != enbDevices.
End ();
291 remoteHostContainer.
Create (1);
292 remoteHost = remoteHostContainer.
Get (0);
294 internet.
Install (remoteHostContainer);
304 ipv4h.
SetBase (
"1.0.0.0",
"255.0.0.0");
307 remoteHostAddr = internetIpIfaces.
GetAddress (1);
330 uint16_t dlPort = 10000;
331 uint16_t ulPort = 20000;
341 for (uint32_t u = 0; u < ueNodes.
GetN (); ++u)
364 clientApps.
Add (dlClientHelper.Install (remoteHost));
369 serverApps.
Add (sinkContainer);
380 serverApps.
Add (sinkContainer);
390 clientApps.
Add (dlClientHelper.
Install (remoteHost));
395 serverApps.
Add (sinkContainer);
407 serverApps.
Add (sinkContainer);
429 EpsBearer bearer (EpsBearer::NGBR_VIDEO_TCP_DEFAULT);
433 serverApps.
Start (startTime);
434 clientApps.
Start (startTime);
447 for (uint32_t u = 0; u < ueDevices.
GetN (); ++u)
463 const Time maxRrcConnectionEstablishmentDuration =
Seconds (0.080);
467 Simulator::Schedule (maxRrcConnectionEstablishmentDuration,
469 this, *it, enbDevices.
Get (0));
479 for (
Time checkPointTime = checkPointEventIt->checkStartTime;
480 checkPointTime < checkPointEventIt->checkStopTime;
481 checkPointTime += checkPointEventIt->checkInterval)
484 this, ueDevices.
Get (checkPointEventIt->ueDeviceIndex),
485 enbDevices.
Get (checkPointEventIt->enbDeviceIndex));
487 Time saveStatsTime = checkPointTime;
489 this, checkPointEventIt->ueDeviceIndex);
493 this, checkPointEventIt->ueDeviceIndex);
495 if (stopTime <= checkStats)
497 stopTime = checkStats +
Seconds (1);
502 Simulator::Stop (stopTime);
504 Simulator::Destroy ();
519 uint16_t rnti = ueRrc->GetRnti ();
525 NS_ASSERT_MSG (ueManagerState == UeManager::CONNECTED_NORMALLY,
"Wrong UeManager state!");
527 uint16_t ueCellId = ueRrc->GetCellId ();
528 uint16_t enbCellId = enbLteDevice->GetCellId ();
529 uint8_t ueDlBandwidth = ueRrc->GetDlBandwidth ();
530 uint8_t enbDlBandwidth = enbLteDevice->GetDlBandwidth ();
531 uint8_t ueUlBandwidth = ueRrc->GetUlBandwidth ();
532 uint8_t enbUlBandwidth = enbLteDevice->GetUlBandwidth ();
533 uint8_t ueDlEarfcn = ueRrc->GetDlEarfcn ();
534 uint8_t enbDlEarfcn = enbLteDevice->GetDlEarfcn ();
535 uint8_t ueUlEarfcn = ueRrc->GetUlEarfcn ();
536 uint8_t enbUlEarfcn = enbLteDevice->GetUlEarfcn ();
537 uint64_t ueImsi = ueLteDevice->
GetImsi ();
538 uint64_t enbImsi = ueManager->
GetImsi ();
548 ueManager->
GetAttribute (
"DataRadioBearerMap", enbDataRadioBearerMapValue);
552 ueRrc->GetAttribute (
"DataRadioBearerMap", ueDataRadioBearerMapValue);
557 while (enbBearerIt != enbDataRadioBearerMapValue.
End ()
558 && ueBearerIt != ueDataRadioBearerMapValue.End ())
572 NS_ASSERT_MSG (enbBearerIt == enbDataRadioBearerMapValue.
End (),
"too many bearers at eNB");
573 NS_ASSERT_MSG (ueBearerIt == ueDataRadioBearerMapValue.End (),
"too many bearers at UE");
580 for (std::list<BearerData>::iterator it =
m_ueDataVector.at (ueIndex).bearerDataList.begin ();
586 it->dlOldTotalRx = it->dlSink->GetTotalRx ();
590 it->ulOldTotalRx = it->ulSink->GetTotalRx ();
600 for (std::list<BearerData>::iterator it =
m_ueDataVector.at (ueIndex).bearerDataList.begin ();
609 dlRx = it->dlSink->GetTotalRx () - it->dlOldTotalRx;
614 ulRx = it->ulSink->GetTotalRx () - it->ulOldTotalRx;
618 NS_LOG_LOGIC (
"expBytes " << expectedBytes <<
" dlRx " << dlRx <<
" ulRx " << ulRx);
623 NS_TEST_ASSERT_MSG_GT (dlRx, 0.500 * expectedBytes,
"too few RX bytes in DL, ue=" << ueIndex <<
", b=" << b);
627 NS_TEST_ASSERT_MSG_GT (ulRx, 0.500 * expectedBytes,
"too few RX bytes in UL, ue=" << ueIndex <<
", b=" << b);
642 :
TestSuite (
"lte-x2-handover-measures", SYSTEM)
646 std::string cel1name (
"ho: 0 -> 1");
647 std::list<CheckPointEvent> cel1;
651 std::string cel2name (
"ho: 0 -> 1 -> 2");
652 std::list<CheckPointEvent> cel2;
657 std::string cel3name (
"ho: 0 -> 1 -> 2 -> 3");
658 std::list<CheckPointEvent> cel3;
666 std::string sched =
"ns3::PfFfMacScheduler";
667 std::string ho =
"ns3::A2A4RsrqHandoverAlgorithm";
668 for (useIdealRrc = 1; useIdealRrc >= 0; --useIdealRrc)
671 AddTestCase (
new LteX2HandoverMeasuresTestCase (2, 1, 0, cel1, cel1name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
672 AddTestCase (
new LteX2HandoverMeasuresTestCase (2, 1, 1, cel1, cel1name,
true, sched, ho,
true, useIdealRrc), TestCase::QUICK);
673 AddTestCase (
new LteX2HandoverMeasuresTestCase (2, 1, 2, cel1, cel1name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
674 AddTestCase (
new LteX2HandoverMeasuresTestCase (3, 1, 0, cel2, cel2name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
675 AddTestCase (
new LteX2HandoverMeasuresTestCase (3, 1, 1, cel2, cel2name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
676 AddTestCase (
new LteX2HandoverMeasuresTestCase (3, 1, 2, cel2, cel2name,
true, sched, ho,
true, useIdealRrc), TestCase::EXTENSIVE);
677 AddTestCase (
new LteX2HandoverMeasuresTestCase (4, 1, 0, cel3, cel3name,
true, sched, ho,
true, useIdealRrc), TestCase::EXTENSIVE);
678 AddTestCase (
new LteX2HandoverMeasuresTestCase (4, 1, 1, cel3, cel3name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
679 AddTestCase (
new LteX2HandoverMeasuresTestCase (4, 1, 2, cel3, cel3name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
682 sched =
"ns3::RrFfMacScheduler";
683 for (useIdealRrc = 1; useIdealRrc >= 0; --useIdealRrc)
686 AddTestCase (
new LteX2HandoverMeasuresTestCase (2, 1, 0, cel1, cel1name,
true, sched, ho,
true, useIdealRrc), TestCase::EXTENSIVE);
687 AddTestCase (
new LteX2HandoverMeasuresTestCase (3, 1, 0, cel2, cel2name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
688 AddTestCase (
new LteX2HandoverMeasuresTestCase (4, 1, 0, cel3, cel3name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
691 ho =
"ns3::A3RsrpHandoverAlgorithm";
692 sched =
"ns3::PfFfMacScheduler";
693 for (useIdealRrc = 1; useIdealRrc >= 0; --useIdealRrc)
696 AddTestCase (
new LteX2HandoverMeasuresTestCase (2, 1, 0, cel1, cel1name,
true, sched, ho,
true, useIdealRrc), TestCase::EXTENSIVE);
697 AddTestCase (
new LteX2HandoverMeasuresTestCase (3, 1, 0, cel2, cel2name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
698 AddTestCase (
new LteX2HandoverMeasuresTestCase (4, 1, 0, cel3, cel3name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
701 sched =
"ns3::RrFfMacScheduler";
702 for (useIdealRrc = 1; useIdealRrc >= 0; --useIdealRrc)
705 AddTestCase (
new LteX2HandoverMeasuresTestCase (2, 1, 0, cel1, cel1name,
true, sched, ho,
true, useIdealRrc), TestCase::QUICK);
706 AddTestCase (
new LteX2HandoverMeasuresTestCase (3, 1, 0, cel2, cel2name,
true, sched, ho,
true, useIdealRrc), TestCase::TAKES_FOREVER);
707 AddTestCase (
new LteX2HandoverMeasuresTestCase (4, 1, 0, cel3, cel3name,
true, sched, ho,
true, useIdealRrc), TestCase::EXTENSIVE);
holds a vector of ns3::Application pointers.
void CheckStats(uint32_t ueIndex)
Iterator Begin(void) const
Get an iterator which refers to the first NetDevice in the container.
uint8_t Add(PacketFilter f)
add a PacketFilter to the Traffic Flow Template
Simulation virtual time values and global simulation resolution.
Smart pointer class similar to boost::intrusive_ptr.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
void SetStream(int64_t stream)
Specifies the stream number for this RNG stream.
AttributeValue implementation for Boolean.
NetDeviceContainer InstallEnbDevice(NodeContainer c)
Create a set of eNodeB devices.
A helper to make it easier to instantiate an ns3::BulkSendApplication on a set of nodes...
Ptr< PointToPointEpcHelper > m_epcHelper
holds a vector of std::pair of Ptr and interface index.
void SetDefaultRoute(Ipv4Address nextHop, uint32_t interface, uint32_t metric=0)
Add a default route to the static routing table.
Hold variables of type string.
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
NetDeviceContainer Install(NodeContainer c)
a class to represent an Ipv4 address mask
void Add(ApplicationContainer other)
Append the contents of another ApplicationContainer to the end of this container. ...
const uint32_t m_udpClientPktSize
virtual Ptr< Node > GetPgwNode()
Ptr< LteUeRrc > GetRrc() const
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.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
aggregate IP/TCP/UDP functionality to existing Nodes.
uint16_t localPortEnd
end of the port number range of the UE
const Time m_statsDuration
#define NS_FATAL_ERROR(msg)
Fatal error handling.
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes...
Build a set of PointToPointNetDevice objects.
int64_t AssignStreams(NetDeviceContainer c, int64_t stream)
Assign a fixed random variable stream number to the random variables used.
void ActivateDataRadioBearer(NetDeviceContainer ueDevices, EpsBearer bearer)
Activate a Data Radio Bearer on a given UE devices (for LTE-only simulation).
void SetDeviceAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each NetDevice created by the helper.
uint8_t ActivateDedicatedEpsBearer(NetDeviceContainer ueDevices, EpsBearer bearer, Ptr< EpcTft > tft)
Activate a dedicated EPS bearer on a given set of UE devices.
void SetHandoverAlgorithmType(std::string type)
Set the type of handover algorithm to be used by eNodeB devices.
ApplicationContainer Install(NodeContainer c)
static void SetPosition(Ptr< Node > node, Vector position)
std::map< uint32_t, Ptr< Object > >::const_iterator Iterator
Iterator type for traversing this container.
void SetSchedulerType(std::string type)
Set the type of scheduler to be used by eNodeB devices.
uint32_t GetN(void) const
Get the number of Ptr stored in this container.
uint32_t GetN(void) const
Get the number of Ptr stored in this container.
Class for representing data rates.
Keep track of the current position and velocity of an object.
double GetSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
ApplicationContainer Install(NodeContainer c) const
Install an ns3::BulkSendApplication on each node of the input container configured with all the attri...
This class contains the specification of EPS Bearers.
LteX2HandoverMeasuresTestCase(uint32_t nEnbs, uint32_t nUes, uint32_t nDedicatedBearers, std::list< CheckPointEvent > checkPointEventList, std::string checkPointEventListName, bool useUdp, std::string schedulerType, std::string handoverAlgorithmType, bool admitHo, bool useIdealRrc)
void Install(Ptr< Node > node) const
"Layout" a single node according to the current position allocator type.
store information on active data radio bearer instance
void SetHandoverAlgorithmAttribute(std::string n, const AttributeValue &v)
Set an attribute for the handover algorithm to be created.
uint8_t m_logicalChannelIdentity
void AddTestCase(TestCase *testCase, enum TestDuration duration)
Add an individual child TestCase to this test suite.
Create a client application which sends UDP packets carrying a 32bit sequence number and a 64 bit tim...
AttributeValue implementation for Time.
std::list< CheckPointEvent > m_checkPointEventList
Hold an unsigned integer type.
#define NS_TEST_ASSERT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report and abort if not.
holds a vector of ns3::NetDevice pointers
virtual void DoRun(void)
Implementation to actually run this TestCase.
std::string m_checkPointEventListName
void Start(Time start)
Arrange for all of the Applications in this container to Start() at the Time given as a parameter...
LteX2HandoverMeasuresTestSuite()
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
std::string m_handoverAlgorithmType
void SaveStats(uint32_t ueIndex)
Access to the Ipv4 forwarding table, interfaces, and configuration.
uint16_t remotePortEnd
end of the port number range of the remote host
std::string m_schedulerType
virtual Ipv4Address GetUeDefaultGatewayAddress()
static LteX2HandoverMeasuresTestSuite g_lteX2HandoverMeasuresTestSuiteInstance
Every class exported by the ns3 library is enclosed in the ns3 namespace.
keep track of a set of node pointers.
Ptr< Application > Get(uint32_t i) const
Get the Ptr
stored in this container at a given index.
State
The state of the UeManager at the eNB RRC.
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())
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
void AddX2Interface(NodeContainer enbNodes)
Create an X2 interface between all the eNBs in a given set.
Iterator Begin(void) const
Get an iterator to the first Object.
void GetAttribute(std::string name, AttributeValue &value) const
Get the value of an attribute, raising fatal errors if unsuccessful.
uint64_t GetImsi(void) const
void Reset(void)
Reset the initial value of every attribute as well as the value of every global to what they were bef...
static std::string BuildNameString(uint32_t nEnbs, uint32_t nUes, uint32_t nDedicatedBearers, std::string checkPointEventListName, bool useUdp, std::string schedulerType, std::string handoverAlgorithmType, bool admitHo, bool useIdealRrc)
std::list< BearerData > bearerDataList
void SetChannelAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each Channel created by the helper.
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
NetDeviceContainer InstallUeDevice(NodeContainer c)
Create a set of UE devices.
virtual Ipv4InterfaceContainer AssignUeIpv4Address(NetDeviceContainer ueDevices)
Assign IPv4 addresses to UE devices.
Helper class used to assign positions and mobility models to nodes.
void AddNetworkRouteTo(Ipv4Address network, Ipv4Mask networkMask, Ipv4Address nextHop, uint32_t interface, uint32_t metric=0)
Add a network route to the static routing table.
Ipv4 addresses are stored in host order in this class.
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
Ptr< Ipv4StaticRouting > GetStaticRouting(Ptr< Ipv4 > ipv4) const
Try and find the static routing protocol as either the main routing protocol or in the list of routin...
void SetEpcHelper(Ptr< EpcHelper > h)
Set the EpcHelper to be used to setup the EPC network in conjunction with the setup of the LTE radio ...
#define NS_TEST_ASSERT_MSG_NE(actual, limit, msg)
Test that an actual and expected (limit) value are not equal and report and abort if not...
static void SetVelocity(Ptr< Node > node, Vector vel)
Helper class that adds ns3::Ipv4StaticRouting objects.
AttributeValue implementation for DataRate.
std::vector< UeData > m_ueDataVector
Ptr< Node > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
Iterator End(void) const
Get an iterator to the past-the-end Object.
uint32_t m_nDedicatedBearers
std::vector< Ptr< NetDevice > >::const_iterator Iterator
NetDevice container iterator.
Time Seconds(double value)
Construct a Time in the indicated unit.
void SetDefault(std::string name, const AttributeValue &value)
void Add(Vector v)
Add a position to the list of positions.
CheckPointEvent(Time start, Time stop, Time interval, uint32_t ueIndex, uint32_t enbIndex)
Mobility model for which the current speed does not change once it has been set and until it is set a...
ApplicationContainer Install(NodeContainer c) const
Install an ns3::PacketSinkApplication on each node of the input container configured with all the att...
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
const Time m_udpClientInterval
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
void SetAttribute(std::string name, const AttributeValue &value)
Helper function used to set the underlying application attributes, not the socket attributes...
uint32_t GetN(void) const
Get the number of Objects.
Container for a set of ns3::Object pointers.
Ptr< LteHelper > m_lteHelper
Receive and consume traffic generated to an IP address and port.
void SetPositionAllocator(Ptr< PositionAllocator > allocator)
Set the position allocator which will be used to allocate the initial position of every node initiali...
Iterator End(void) const
Get an iterator which indicates past-the-last NetDevice in the container.
#define NS_TEST_ASSERT_MSG_GT(actual, limit, msg)
Test that an actual value is greater than a limit and report and abort if not.
This class can be used to hold variables of floating point type such as 'double' or 'float'...
void SetAttribute(std::string name, const AttributeValue &value)
Set a single attribute, raising fatal errors if unsuccessful.
The eNodeB device implementation.
const Time m_maxHoDuration
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
uint16_t remotePortStart
start of the port number range of the remote host
void CheckConnected(Ptr< NetDevice > ueDevice, Ptr< NetDevice > enbDevice)
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
Implement the data structure representing a TrafficFlowTemplate Packet Filter.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
uint16_t localPortStart
start of the port number range of the UE
uint8_t m_epsBearerIdentity
The LteUeNetDevice class implements the UE net device.