25#include "ns3/config.h"
26#include "ns3/error-model.h"
28#include "ns3/lte-rlc-header.h"
29#include "ns3/lte-rlc-um.h"
30#include "ns3/net-device-container.h"
31#include "ns3/node-container.h"
32#include "ns3/packet.h"
33#include "ns3/pointer.h"
34#include "ns3/radio-bearer-stats-calculator.h"
35#include "ns3/rng-seed-manager.h"
36#include "ns3/simulator.h"
55 double losses[] = {0.0, 0.10, 0.25, 0.50, 0.75, 0.90, 1.00};
56 uint32_t seeds[] = {1111, 2222, 3333, 4444, 5555, 6666, 7777, 8888, 9999, 10101};
58 for (
uint32_t l = 0; l < (
sizeof(losses) /
sizeof(
double)); l++)
62 std::ostringstream name;
63 name <<
" Losses = " << losses[l] <<
"%. Seed = " << seeds[s];
121 uint16_t numberOfNodes = 1;
140 lteSimpleHelper->SetAttribute(
"RlcEntity",
StringValue(
"RlcUm"));
145 enbNodes.
Create(numberOfNodes);
146 ueNodes.
Create(numberOfNodes);
167 dlEm->SetAttribute(
"ErrorUnit",
StringValue(
"ERROR_UNIT_PACKET"));
171 ulEm->SetAttribute(
"ErrorUnit",
StringValue(
"ERROR_UNIT_PACKET"));
174 ueLteDevs.
Get(0)->SetAttribute(
"ReceiveErrorModel",
PointerValue(dlEm));
175 ueLteDevs.
Get(0)->TraceConnectWithoutContext(
178 enbLteDevs.
Get(0)->SetAttribute(
"ReceiveErrorModel",
PointerValue(ulEm));
179 enbLteDevs.
Get(0)->TraceConnectWithoutContext(
184 lteSimpleHelper->m_enbRrc->SetArrivalTime(
Seconds(0.010));
185 lteSimpleHelper->m_enbRrc->SetPduSize(100);
188 lteSimpleHelper->m_enbMac->SetTxOppSize(150);
189 lteSimpleHelper->m_enbMac->SetTxOppTime(
Seconds(0.005));
193 lteSimpleHelper->m_ueRrc->SetArrivalTime(
Seconds(0.010));
194 lteSimpleHelper->m_ueRrc->SetPduSize(100);
197 lteSimpleHelper->m_ueMac->SetTxOppSize(150);
198 lteSimpleHelper->m_ueMac->SetTxOppTime(
Seconds(0.005));
212 uint32_t txEnbRrcPdus = lteSimpleHelper->m_enbRrc->GetTxPdus();
213 uint32_t rxUeRrcPdus = lteSimpleHelper->m_ueRrc->GetRxPdus();
215 uint32_t txUeRrcPdus = lteSimpleHelper->m_ueRrc->GetTxPdus();
216 uint32_t rxEnbRrcPdus = lteSimpleHelper->m_enbRrc->GetRxPdus();
236 "Downlink: TX PDUs (" << txEnbRrcPdus <<
") != RX PDUs (" << rxUeRrcPdus
240 "Uplink: TX PDUs (" << txUeRrcPdus <<
") != RX PDUs (" << rxEnbRrcPdus
Test end-to-end flow when RLC UM is being used.
uint32_t m_dlDrops
number of Dl drops
double m_losses
error rate
void UlDropEvent(Ptr< const Packet > p)
UL drop event.
void DoRun() override
Implementation to actually run this TestCase.
void DlDropEvent(Ptr< const Packet > p)
DL drop event.
uint32_t m_seed
random number seed
uint32_t m_ulDrops
number of UL drops
~LteRlcUmE2eTestCase() override
Test suite for RlcUmE2eTestCase.
LteRlcUmE2eTestSuite()
Test x.x.x RLC UM: End-to-end flow.
This class can be used to hold variables of floating point type such as 'double' or 'float'.
void Stop()
Stop function.
void Start()
Start function.
holds a vector of ns3::NetDevice pointers
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
keep track of a set of node pointers.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Hold objects of type Ptr<T>.
Smart pointer class similar to boost::intrusive_ptr.
static void SetSeed(uint32_t seed)
Set the seed.
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
static void Run()
Run the simulation.
static void Stop()
Tell the Simulator the calling event should be the last one executed.
Hold variables of type string.
TestDuration
How long the test takes to execute.
@ EXTENSIVE
Medium length test.
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
static LteRlcUmE2eTestSuite lteRlcUmE2eTestSuite
Static variable for test initialization.
#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.
Time Seconds(double value)
Construct a Time in the indicated unit.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Callback< R, Args... > MakeCallback(R(T::*memPtr)(Args...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...