A Discrete-Event Network Simulator
API
lte-test-cell-selection.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2013 Budiarto Herman
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Budiarto Herman <budiarto.herman@magister.fi>
18 *
19 */
20
22
23#include <ns3/boolean.h>
24#include <ns3/double.h>
25#include <ns3/integer.h>
26#include <ns3/internet-stack-helper.h>
27#include <ns3/ipv4-address-helper.h>
28#include <ns3/ipv4-interface-container.h>
29#include <ns3/ipv4-static-routing-helper.h>
30#include <ns3/log.h>
31#include <ns3/lte-enb-net-device.h>
32#include <ns3/lte-helper.h>
33#include <ns3/lte-ue-net-device.h>
34#include <ns3/lte-ue-rrc.h>
35#include <ns3/mobility-helper.h>
36#include <ns3/net-device-container.h>
37#include <ns3/node-container.h>
38#include <ns3/point-to-point-epc-helper.h>
39#include <ns3/point-to-point-helper.h>
40#include <ns3/rng-seed-manager.h>
41#include <ns3/simulator.h>
42
43using namespace ns3;
44
45NS_LOG_COMPONENT_DEFINE("LteCellSelectionTest");
46
47/*
48 * This test suite sets up four cells (four eNBs) and six UEs. Two of the
49 * cells are CSG and two are non-CSG. The six UEs associate with cells
50 * based on their positions and random access procedures. The test checks
51 * that the UEs, at specirfic simulation times, are associated to expected
52 * cells. See the header Doxygen for more specific descriptions.
53 *
54 * The test conditions that are checked rely on the RA preamble values
55 * (randomly selected) being unique for the six UEs. For most values of
56 * random seed and run number, this will be the case, but certain values
57 * will cause a collision (same RA preamble drawn for two UEs). Therefore,
58 * this test fixes the RngSeed and RngRun values, and uses AssignStreams,
59 * to ensure that an RA preamble collision does not occur.
60 */
61
63 : TestSuite("lte-cell-selection", SYSTEM)
64{
65 std::vector<LteCellSelectionTestCase::UeSetup_t> w;
66
67 // REAL RRC PROTOCOL
68
69 w = {
70 // x, y, csgMember, checkPoint, cell1, cell2
71 LteCellSelectionTestCase::UeSetup_t(0.0, 0.55, false, MilliSeconds(283), 1, 0),
72 LteCellSelectionTestCase::UeSetup_t(0.0, 0.45, false, MilliSeconds(283), 1, 0),
73 LteCellSelectionTestCase::UeSetup_t(0.5, 0.45, false, MilliSeconds(363), 1, 3),
74 LteCellSelectionTestCase::UeSetup_t(0.5, 0.0, true, MilliSeconds(283), 2, 4),
75 LteCellSelectionTestCase::UeSetup_t(1.0, 0.55, true, MilliSeconds(283), 3, 0),
76 LteCellSelectionTestCase::UeSetup_t(1.0, 0.45, true, MilliSeconds(283), 4, 0),
77 };
78
79 AddTestCase(new LteCellSelectionTestCase("EPC, real RRC", true, false, 60.0 /* isd */, w),
80 TestCase::QUICK);
81
82 // IDEAL RRC PROTOCOL
83
84 w = {
85 // x, y, csgMember, checkPoint, cell1, cell2
86 LteCellSelectionTestCase::UeSetup_t(0.0, 0.55, false, MilliSeconds(266), 1, 0),
87 LteCellSelectionTestCase::UeSetup_t(0.0, 0.45, false, MilliSeconds(266), 1, 0),
88 LteCellSelectionTestCase::UeSetup_t(0.5, 0.45, false, MilliSeconds(346), 1, 3),
89 LteCellSelectionTestCase::UeSetup_t(0.5, 0.0, true, MilliSeconds(266), 2, 4),
90 LteCellSelectionTestCase::UeSetup_t(1.0, 0.55, true, MilliSeconds(266), 3, 0),
91 LteCellSelectionTestCase::UeSetup_t(1.0, 0.45, true, MilliSeconds(266), 4, 0),
92 };
93
94 AddTestCase(new LteCellSelectionTestCase("EPC, ideal RRC", true, true, 60.0 /* isd */, w),
95 TestCase::QUICK);
96
97} // end of LteCellSelectionTestSuite::LteCellSelectionTestSuite ()
98
100
101/*
102 * Test Case
103 */
104
106 double relPosY,
107 bool isCsgMember,
108 Time checkPoint,
109 uint16_t expectedCellId1,
110 uint16_t expectedCellId2)
111 : position(Vector(relPosX, relPosY, 0.0)),
112 isCsgMember(isCsgMember),
113 checkPoint(checkPoint),
114 expectedCellId1(expectedCellId1),
115 expectedCellId2(expectedCellId2)
116{
117}
118
120 bool isEpcMode,
121 bool isIdealRrc,
122 double interSiteDistance,
123 std::vector<UeSetup_t> ueSetupList)
124 : TestCase(name),
125 m_isEpcMode(isEpcMode),
126 m_isIdealRrc(isIdealRrc),
127 m_interSiteDistance(interSiteDistance),
128 m_ueSetupList(ueSetupList)
129{
130 NS_LOG_FUNCTION(this << GetName());
131 m_lastState.resize(m_ueSetupList.size(), LteUeRrc::NUM_STATES);
132}
133
135{
136 NS_LOG_FUNCTION(this << GetName());
137}
138
139void
141{
142 NS_LOG_FUNCTION(this << GetName());
143
144 // In ns-3 test suite operation, static variables persist across all
145 // tests (all test suites execute within a single ns-3 process).
146 // Therefore, to fix a seed and run number for a specific test, the
147 // current values of seed and run number should be saved and restored
148 // after the test is run.
149 uint32_t previousSeed = RngSeedManager::GetSeed();
150 uint64_t previousRun = RngSeedManager::GetRun();
151 // Values of 1 and 2 here will prevent RA preamble collisions
152 Config::SetGlobal("RngSeed", UintegerValue(1));
153 Config::SetGlobal("RngRun", UintegerValue(2));
154
155 Ptr<LteHelper> lteHelper = CreateObject<LteHelper>();
156 lteHelper->SetAttribute("PathlossModel", StringValue("ns3::FriisSpectrumPropagationLossModel"));
157 lteHelper->SetAttribute("UseIdealRrc", BooleanValue(m_isIdealRrc));
158
160
161 if (m_isEpcMode)
162 {
163 epcHelper = CreateObject<PointToPointEpcHelper>();
164 lteHelper->SetEpcHelper(epcHelper);
165 }
166
167 /*
168 * The topology is the following (the number on the node indicate the cell ID)
169 *
170 * [1] [3]
171 * non-CSG -- non-CSG
172 * | |
173 * | | 60 m
174 * | |
175 * [2] [4]
176 * CSG ------ CSG
177 * 60 m
178 */
179
180 // Create Nodes
181 NodeContainer enbNodes;
182 enbNodes.Create(4);
183 NodeContainer ueNodes;
184 uint16_t nUe = static_cast<uint16_t>(m_ueSetupList.size());
185 ueNodes.Create(nUe);
186
187 // Assign nodes to position
188 Ptr<ListPositionAllocator> positionAlloc = CreateObject<ListPositionAllocator>();
189 // eNodeB
190 positionAlloc->Add(Vector(0.0, m_interSiteDistance, 0.0));
191 positionAlloc->Add(Vector(0.0, 0.0, 0.0));
192 positionAlloc->Add(Vector(m_interSiteDistance, m_interSiteDistance, 0.0));
193 positionAlloc->Add(Vector(m_interSiteDistance, 0.0, 0.0));
194 // UE
195 std::vector<UeSetup_t>::const_iterator itSetup;
196 for (itSetup = m_ueSetupList.begin(); itSetup != m_ueSetupList.end(); itSetup++)
197 {
198 Vector uePos(m_interSiteDistance * itSetup->position.x,
199 m_interSiteDistance * itSetup->position.y,
200 m_interSiteDistance * itSetup->position.z);
201 NS_LOG_INFO("UE position " << uePos);
202 positionAlloc->Add(uePos);
203 }
204
206 mobility.SetMobilityModel("ns3::ConstantPositionMobilityModel");
207 mobility.SetPositionAllocator(positionAlloc);
208 mobility.Install(enbNodes);
209 mobility.Install(ueNodes);
210
211 // Create Devices and install them in the Nodes (eNB and UE)
212 int64_t stream = 1;
213 NetDeviceContainer enbDevs;
214
215 // cell ID 1 is a non-CSG cell
216 lteHelper->SetEnbDeviceAttribute("CsgId", UintegerValue(0));
217 lteHelper->SetEnbDeviceAttribute("CsgIndication", BooleanValue(false));
218 enbDevs.Add(lteHelper->InstallEnbDevice(enbNodes.Get(0)));
219
220 // cell ID 2 is a CSG cell
221 lteHelper->SetEnbDeviceAttribute("CsgId", UintegerValue(1));
222 lteHelper->SetEnbDeviceAttribute("CsgIndication", BooleanValue(true));
223 enbDevs.Add(lteHelper->InstallEnbDevice(enbNodes.Get(1)));
224
225 // cell ID 3 is a non-CSG cell
226 lteHelper->SetEnbDeviceAttribute("CsgId", UintegerValue(0));
227 lteHelper->SetEnbDeviceAttribute("CsgIndication", BooleanValue(false));
228 enbDevs.Add(lteHelper->InstallEnbDevice(enbNodes.Get(2)));
229
230 // cell ID 4 is a CSG cell
231 lteHelper->SetEnbDeviceAttribute("CsgId", UintegerValue(1));
232 lteHelper->SetEnbDeviceAttribute("CsgIndication", BooleanValue(true));
233 enbDevs.Add(lteHelper->InstallEnbDevice(enbNodes.Get(3)));
234
235 NetDeviceContainer ueDevs;
236 Time lastCheckPoint = MilliSeconds(0);
237 NS_ASSERT(m_ueSetupList.size() == ueNodes.GetN());
239 for (itSetup = m_ueSetupList.begin(), itNode = ueNodes.Begin();
240 itSetup != m_ueSetupList.end() || itNode != ueNodes.End();
241 itSetup++, itNode++)
242 {
243 if (itSetup->isCsgMember)
244 {
245 lteHelper->SetUeDeviceAttribute("CsgId", UintegerValue(1));
246 }
247 else
248 {
249 lteHelper->SetUeDeviceAttribute("CsgId", UintegerValue(0));
250 }
251
252 NetDeviceContainer devs = lteHelper->InstallUeDevice(*itNode);
253 Ptr<LteUeNetDevice> ueDev = devs.Get(0)->GetObject<LteUeNetDevice>();
254 NS_ASSERT(ueDev);
255 ueDevs.Add(devs);
256 Simulator::Schedule(itSetup->checkPoint,
258 this,
259 ueDev,
260 itSetup->expectedCellId1,
261 itSetup->expectedCellId2);
262
263 if (lastCheckPoint < itSetup->checkPoint)
264 {
265 lastCheckPoint = itSetup->checkPoint;
266 }
267 }
268
269 stream += lteHelper->AssignStreams(enbDevs, stream);
270 stream += lteHelper->AssignStreams(ueDevs, stream);
271
272 // Tests
273 NS_ASSERT(m_ueSetupList.size() == ueDevs.GetN());
275 for (itSetup = m_ueSetupList.begin(), itDev = ueDevs.Begin();
276 itSetup != m_ueSetupList.end() || itDev != ueDevs.End();
277 itSetup++, itDev++)
278 {
279 Ptr<LteUeNetDevice> ueDev = (*itDev)->GetObject<LteUeNetDevice>();
280 }
281
282 if (m_isEpcMode)
283 {
284 // Create P-GW node
285 Ptr<Node> pgw = epcHelper->GetPgwNode();
286
287 // Create a single RemoteHost
288 NodeContainer remoteHostContainer;
289 remoteHostContainer.Create(1);
290 Ptr<Node> remoteHost = remoteHostContainer.Get(0);
291 InternetStackHelper internet;
292 internet.Install(remoteHostContainer);
293
294 // Create the Internet
296 p2ph.SetDeviceAttribute("DataRate", DataRateValue(DataRate("100Gb/s")));
297 p2ph.SetDeviceAttribute("Mtu", UintegerValue(1500));
298 p2ph.SetChannelAttribute("Delay", TimeValue(Seconds(0.010)));
299 NetDeviceContainer internetDevices = p2ph.Install(pgw, remoteHost);
300 Ipv4AddressHelper ipv4h;
301 ipv4h.SetBase("1.0.0.0", "255.0.0.0");
302 Ipv4InterfaceContainer internetIpIfaces = ipv4h.Assign(internetDevices);
303
304 // Routing of the Internet Host (towards the LTE network)
305 Ipv4StaticRoutingHelper ipv4RoutingHelper;
306 Ptr<Ipv4StaticRouting> remoteHostStaticRouting =
307 ipv4RoutingHelper.GetStaticRouting(remoteHost->GetObject<Ipv4>());
308 remoteHostStaticRouting->AddNetworkRouteTo(Ipv4Address("7.0.0.0"),
309 Ipv4Mask("255.0.0.0"),
310 1);
311
312 // Install the IP stack on the UEs
313 internet.Install(ueNodes);
314 Ipv4InterfaceContainer ueIpIfaces;
315 ueIpIfaces = epcHelper->AssignUeIpv4Address(NetDeviceContainer(ueDevs));
316
317 // Assign IP address to UEs
318 for (uint32_t u = 0; u < ueNodes.GetN(); ++u)
319 {
320 Ptr<Node> ueNode = ueNodes.Get(u);
321 // Set the default gateway for the UE
322 Ptr<Ipv4StaticRouting> ueStaticRouting =
323 ipv4RoutingHelper.GetStaticRouting(ueNode->GetObject<Ipv4>());
324 ueStaticRouting->SetDefaultRoute(epcHelper->GetUeDefaultGatewayAddress(), 1);
325 }
326
327 } // end of if (m_isEpcMode)
328 else
329 {
330 NS_FATAL_ERROR("No support yet for LTE-only simulations");
331 }
332
333 // Connect to trace sources in UEs
334 Config::Connect("/NodeList/*/DeviceList/*/LteUeRrc/StateTransition",
337 "/NodeList/*/DeviceList/*/LteUeRrc/InitialCellSelectionEndOk",
340 "/NodeList/*/DeviceList/*/LteUeRrc/InitialCellSelectionEndError",
342 Config::Connect("/NodeList/*/DeviceList/*/LteUeRrc/ConnectionEstablished",
344
345 // Enable Idle mode cell selection
346 lteHelper->Attach(ueDevs);
347
348 // Run simulation
349 Simulator::Stop(lastCheckPoint);
350 Simulator::Run();
351
352 NS_LOG_INFO("Simulation ends");
353 Simulator::Destroy();
354
355 // Restore the seed and run number that were in effect before this test
356 Config::SetGlobal("RngSeed", UintegerValue(previousSeed));
357 Config::SetGlobal("RngRun", UintegerValue(previousRun));
358
359} // end of void LteCellSelectionTestCase::DoRun ()
360
361void
363 uint16_t expectedCellId1,
364 uint16_t expectedCellId2)
365{
366 uint16_t actualCellId = ueDev->GetRrc()->GetCellId();
367
368 if (expectedCellId2 == 0)
369 {
370 NS_TEST_ASSERT_MSG_EQ(actualCellId,
371 expectedCellId1,
372 "IMSI " << ueDev->GetImsi() << " has attached to an unexpected cell");
373 }
374 else
375 {
376 bool pass = (actualCellId == expectedCellId1) || (actualCellId == expectedCellId2);
378 true,
379 "IMSI " << ueDev->GetImsi() << " has attached to an unexpected cell"
380 << " (actual: " << actualCellId << ","
381 << " expected: " << expectedCellId1 << " or "
382 << expectedCellId2 << ")");
383 }
384
385 if (expectedCellId1 > 0)
386 {
387 NS_TEST_ASSERT_MSG_EQ(m_lastState.at(static_cast<unsigned int>(ueDev->GetImsi() - 1)),
388 LteUeRrc::CONNECTED_NORMALLY,
389 "UE " << ueDev->GetImsi() << " is not at CONNECTED_NORMALLY state");
390 }
391}
392
393void
395 uint64_t imsi,
396 uint16_t cellId,
397 uint16_t rnti,
398 LteUeRrc::State oldState,
399 LteUeRrc::State newState)
400{
401 NS_LOG_FUNCTION(this << imsi << cellId << rnti << oldState << newState);
402 m_lastState.at(static_cast<unsigned int>(imsi - 1)) = newState;
403}
404
405void
407 uint64_t imsi,
408 uint16_t cellId)
409{
410 NS_LOG_FUNCTION(this << imsi << cellId);
411}
412
413void
415 uint64_t imsi,
416 uint16_t cellId)
417{
418 NS_LOG_FUNCTION(this << imsi << cellId);
419}
420
421void
423 uint64_t imsi,
424 uint16_t cellId,
425 uint16_t rnti)
426{
427 NS_LOG_FUNCTION(this << imsi << cellId << rnti);
428}
Testing the initial cell selection procedure by UE at IDLE state in the beginning of simulation.
std::vector< UeSetup_t > m_ueSetupList
UE setup list.
void CheckPoint(Ptr< LteUeNetDevice > ueDev, uint16_t expectedCellId1, uint16_t expectedCellId2)
Verifies if the given UE is attached to either of the given two cells and in a CONNECTED_NORMALLY sta...
void InitialCellSelectionEndOkCallback(std::string context, uint64_t imsi, uint16_t cellId)
Initial cell selection end ok callback function.
std::vector< LteUeRrc::State > m_lastState
The current UE RRC state.
LteCellSelectionTestCase(std::string name, bool isEpcMode, bool isIdealRrc, double interSiteDistance, std::vector< UeSetup_t > ueSetupList)
Creates an instance of the initial cell selection test case.
void DoRun() override
Setup the simulation according to the configuration set by the class constructor, run it,...
bool m_isEpcMode
whether the LTE configuration in test is using EPC
double m_interSiteDistance
inter site distance
void ConnectionEstablishedCallback(std::string context, uint64_t imsi, uint16_t cellId, uint16_t rnti)
Connection established callback function.
void InitialCellSelectionEndErrorCallback(std::string context, uint64_t imsi, uint16_t cellId)
Initial cell selection end error callback function.
bool m_isIdealRrc
whether the LTE is configured to use ideal RRC
void StateTransitionCallback(std::string context, uint64_t imsi, uint16_t cellId, uint16_t rnti, LteUeRrc::State oldState, LteUeRrc::State newState)
State transition callback function.
Test suite for executing the cell selection test cases in without-EPC and with-EPC scenarios.
AttributeValue implementation for Boolean.
Definition: boolean.h:37
AttributeValue implementation for DataRate.
aggregate IP/TCP/UDP functionality to existing Nodes.
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:43
Access to the IPv4 forwarding table, interfaces, and configuration.
Definition: ipv4.h:79
holds a vector of std::pair of Ptr<Ipv4> and interface index.
a class to represent an Ipv4 address mask
Definition: ipv4-address.h:258
Helper class that adds ns3::Ipv4StaticRouting objects.
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 ...
Definition: lte-helper.cc:282
NetDeviceContainer InstallEnbDevice(NodeContainer c)
Create a set of eNodeB devices.
Definition: lte-helper.cc:482
void Attach(NetDeviceContainer ueDevices)
Enables automatic attachment of a set of UE devices to a suitable cell using Idle mode initial cell s...
Definition: lte-helper.cc:1044
void SetEnbDeviceAttribute(std::string n, const AttributeValue &v)
Set an attribute for the eNodeB devices (LteEnbNetDevice) to be created.
Definition: lte-helper.cc:409
NetDeviceContainer InstallUeDevice(NodeContainer c)
Create a set of UE devices.
Definition: lte-helper.cc:497
void SetUeDeviceAttribute(std::string n, const AttributeValue &v)
Set an attribute for the UE devices (LteUeNetDevice) to be created.
Definition: lte-helper.cc:430
int64_t AssignStreams(NetDeviceContainer c, int64_t stream)
Assign a fixed random variable stream number to the random variables used.
Definition: lte-helper.cc:1572
The LteUeNetDevice class implements the UE net device.
State
The states of the UE RRC entity.
Definition: lte-ue-rrc.h:102
Helper class used to assign positions and mobility models to nodes.
holds a vector of ns3::NetDevice pointers
uint32_t GetN() const
Get the number of Ptr<NetDevice> stored in this container.
std::vector< Ptr< NetDevice > >::const_iterator Iterator
NetDevice container iterator.
Iterator Begin() const
Get an iterator which refers to the first NetDevice in the container.
void Add(NetDeviceContainer other)
Append the contents of another NetDeviceContainer to the end of this container.
Iterator End() const
Get an iterator which indicates past-the-last NetDevice in the container.
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
Ptr< Node > GetPgwNode() const override
Get the PGW node.
Ipv4Address GetUeDefaultGatewayAddress() override
Ipv4InterfaceContainer AssignUeIpv4Address(NetDeviceContainer ueDevices) override
Assign IPv4 addresses to UE devices.
keep track of a set of node pointers.
std::vector< Ptr< Node > >::const_iterator Iterator
Node container iterator.
Iterator End() const
Get an iterator which indicates past-the-last Node in the container.
uint32_t GetN() const
Get the number of Ptr<Node> stored in this container.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Iterator Begin() const
Get an iterator which refers to the first Node in the container.
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
void SetAttribute(std::string name, const AttributeValue &value)
Set a single attribute, raising fatal errors if unsuccessful.
Definition: object-base.cc:258
Ptr< T > GetObject() const
Get a pointer to the requested aggregated Object.
Definition: object.h:471
Build a set of PointToPointNetDevice objects.
void SetDeviceAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each NetDevice created by the helper.
void SetChannelAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each Channel created by the helper.
NetDeviceContainer Install(NodeContainer c)
Hold variables of type string.
Definition: string.h:42
encapsulates test code
Definition: test.h:1060
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
Definition: test.cc:305
std::string GetName() const
Definition: test.cc:377
A suite of tests to run.
Definition: test.h:1256
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
AttributeValue implementation for Time.
Definition: nstime.h:1425
Hold an unsigned integer type.
Definition: uinteger.h:45
Vector3D Vector
Vector alias typedef for compatibility with mobility models.
Definition: vector.h:324
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Definition: assert.h:66
void SetGlobal(std::string name, const AttributeValue &value)
Definition: config.cc:937
void Connect(std::string path, const CallbackBase &cb)
Definition: config.cc:975
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Definition: fatal-error.h:160
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:202
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:275
void(* DataRate)(DataRate oldValue, DataRate newValue)
TracedValue callback signature for DataRate.
Definition: data-rate.h:328
#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.
Definition: test.h:144
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1338
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
Definition: nstime.h:1350
static LteCellSelectionTestSuite g_lteCellSelectionTestSuite
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...
Definition: callback.h:691
mobility
Definition: third.py:96
A set of input parameters for setting up a UE in the simulation.
UeSetup_t(double relPosX, double relPosY, bool isCsgMember, Time checkPoint, uint16_t expectedCellId1, uint16_t expectedCellId2)
UE test setup function.