21 #include "ns3/config.h"
22 #include "ns3/simulator.h"
23 #include "ns3/pointer.h"
25 #include "ns3/packet.h"
26 #include "ns3/node-container.h"
27 #include "ns3/net-device-container.h"
28 #include "ns3/error-model.h"
29 #include "ns3/rng-seed-manager.h"
30 #include "ns3/radio-bearer-stats-calculator.h"
31 #include "ns3/lte-rlc-header.h"
32 #include "ns3/lte-rlc-um.h"
33 #include "ns3/config-store.h"
58 double losses[] = {0.0, 0.10, 0.25, 0.50, 0.75, 0.90, 0.95};
59 uint32_t seeds[] = {1111, 2222, 3333, 4444, 5555, 6666, 7777, 8888, 9999, 10101};
61 for ( uint32_t l = 0 ; l < (
sizeof (losses) /
sizeof (
double)) ; l++ )
63 for ( uint32_t
s = 0 ;
s < (
sizeof (seeds) /
sizeof (uint32_t)) ;
s++ )
65 std::ostringstream name;
66 name <<
" Losses = " << losses[l] * 100 <<
"%. Seed = " << seeds[
s];
122 uint16_t numberOfNodes = 1;
143 lteSimpleHelper->SetAttribute (
"RlcEntity",
StringValue (
"RlcAm"));
148 enbNodes.
Create (numberOfNodes);
149 ueNodes.
Create (numberOfNodes);
169 dlEm->SetAttribute (
"ErrorUnit",
StringValue (
"ERROR_UNIT_PACKET"));
176 ueLteDevs.
Get (0)->SetAttribute (
"ReceiveErrorModel",
PointerValue (dlEm));
182 lteSimpleHelper->m_enbRrc->SetArrivalTime (Seconds (0.010));
183 lteSimpleHelper->m_enbRrc->SetPduSize (100);
186 lteSimpleHelper->m_enbMac->SetTxOppSize (150);
187 lteSimpleHelper->m_enbMac->SetTxOppTime (Seconds (0.005));
191 lteSimpleHelper->m_ueMac->SetTxOppSize (140);
192 lteSimpleHelper->m_ueMac->SetTxOppTime (Seconds (0.015));
203 uint32_t txEnbRrcPdus = lteSimpleHelper->m_enbRrc->GetTxPdus ();
204 uint32_t rxUeRrcPdus = lteSimpleHelper->m_ueRrc->GetRxPdus ();
220 "TX PDUs (" << txEnbRrcPdus <<
") != RX PDUs (" << rxUeRrcPdus <<
")");
void DlDropEvent(Ptr< const Packet > p)
NS_LOG_COMPONENT_DEFINE("LteRlcAmE2eTest")
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:
static EventId Schedule(Time const &time, MEM mem_ptr, OBJ obj)
Schedule an event to expire at the relative time "time" is reached.
LteRlcAmE2eTestSuite()
Test x.x.x RLC AM: End-to-end flow.
virtual void DoRun(void)
Implementation to actually run this TestCase.
virtual ~LteRlcAmE2eTestCase()
holds a vector of ns3::NetDevice pointers
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
static void Destroy(void)
Every event scheduled by the Simulator::insertAtDestroy method is invoked.
Test x.x.x RLC AM: End-to-end flow.
TestDuration
How long the test takes to execute.
keep track of a set of node pointers.
void AddTestCase(TestCase *testCase) NS_DEPRECATED
Add an individual child TestCase case to this TestCase.
static void SetSeed(uint32_t seed)
set the seed it will duplicate the seed value 6 times
static void Stop(void)
If an event invokes this method, it will be the last event scheduled by the Simulator::run method bef...
void UlDropEvent(Ptr< const Packet > p)
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
static LteRlcAmE2eTestSuite lteRlcAmE2eTestSuite
Hold a floating point 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.