A Discrete-Event Network Simulator
API
lte-test-pss-ff-mac-scheduler.cc
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Marco Miozzo <marco.miozzo@cttc.es>,
19  * Nicola Baldo <nbaldo@cttc.es>
20  * Dizhi Zhou <dizhi.zhou@gmail.com>
21  */
22 
23 #include <iostream>
24 #include <sstream>
25 #include <string>
26 
27 #include <ns3/object.h>
28 #include <ns3/spectrum-interference.h>
29 #include <ns3/spectrum-error-model.h>
30 #include <ns3/log.h>
31 #include <ns3/test.h>
32 #include <ns3/simulator.h>
33 #include <ns3/packet.h>
34 #include <ns3/ptr.h>
35 #include "ns3/radio-bearer-stats-calculator.h"
36 #include <ns3/constant-position-mobility-model.h>
37 #include <ns3/ff-mac-scheduler.h>
38 #include <ns3/eps-bearer.h>
39 #include <ns3/node-container.h>
40 #include <ns3/mobility-helper.h>
41 #include <ns3/net-device-container.h>
42 #include <ns3/lte-ue-net-device.h>
43 #include <ns3/lte-enb-net-device.h>
44 #include <ns3/lte-ue-rrc.h>
45 #include <ns3/lte-helper.h>
46 #include "ns3/string.h"
47 #include "ns3/double.h"
48 #include <ns3/lte-enb-phy.h>
49 #include <ns3/lte-ue-phy.h>
50 #include <ns3/boolean.h>
51 #include <ns3/enum.h>
52 
53 #include "ns3/point-to-point-epc-helper.h"
54 #include "ns3/network-module.h"
55 #include "ns3/ipv4-global-routing-helper.h"
56 #include "ns3/internet-module.h"
57 #include "ns3/applications-module.h"
58 #include "ns3/point-to-point-helper.h"
59 
61 
62 using namespace ns3;
63 
64 NS_LOG_COMPONENT_DEFINE ("LenaTestPssFfMacScheduler");
65 
67  : TestSuite ("lte-pss-ff-mac-scheduler", SYSTEM)
68 {
69  NS_LOG_INFO ("creating LenaTestPssFfMacSchedulerSuite");
70 
71  bool errorModel = false;
72 
73  // General config
74  // Traffic: UDP traffic with fixed rate
75  // Token generation rate = traffic rate
76  // RLC header length = 2 bytes, PDCP header = 2 bytes
77  // Simulation time = 1.0 sec
78  // Throughput in this file is calculated in RLC layer
79 
80  //Test Case 1: homogeneous flow test in PSS (same distance)
81  // DOWNLINK -> DISTANCE 0 -> MCS 28 -> Itbs 26 (from table 7.1.7.2.1-1 of 36.2 13)
82  // Traffic info
83  // UDP traffic: payload size = 200 bytes, interval = 1 ms
84  // UDP rate in scheduler: (payload + RLC header + PDCP header + IP header + UDP header) * 1000 byte/sec -> 232000 byte/rate
85  // Totol bandwidth: 24 PRB at Itbs 26 -> 2196 -> 2196000 byte/sec
86  // 1 user -> 232000 * 1 = 232000 < 2196000 -> throughput = 232000 byte/sec
87  // 3 user -> 232000 * 3 = 696000 < 2196000 -> througphut = 232000 byte/sec
88  // 6 user -> 232000 * 6 = 139200 < 2196000 -> throughput = 232000 byte/sec
89  // 12 user -> 232000 * 12 = 2784000 > 2196000 -> throughput = 2196000 / 12 = 183000 byte/sec
90  // UPLINK -> DISTANCE 0 -> MCS 28 -> Itbs 26 (from table 7.1.7.2.1-1 of 36.2 13)
91  // 1 user -> 25 PRB at Itbs 26 -> 2292 -> 2292000 > 232000 -> throughput = 232000 bytes/sec
92  // 3 users -> 8 PRB at Itbs 26 -> 749 -> 749000 > 232000 -> throughput = 232000 bytes/sec
93  // 6 users -> 4 PRB at Itbs 26 -> 373 -> 373000 > 232000 -> throughput = 232000 bytes/sec
94  // 12 users -> 2 PRB at Itbs 26 -> 185 -> 185000 < 232000 -> throughput = 185000 bytes/sec
95  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (1,0,232000,232000,200,1,errorModel), TestCase::EXTENSIVE);
96  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (3,0,232000,232000,200,1,errorModel), TestCase::EXTENSIVE);
97  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (6,0,232000,232000,200,1,errorModel), TestCase::EXTENSIVE);
98 
99  //AddTestCase (new LenaPssFfMacSchedulerTestCase1 (12,0,183000,185000,200,1,errorModel));// simulation time = 1.5, otherwise, ul test will fail
100 
101  // DOWNLINK - DISTANCE 4800 -> MCS 22 -> Itbs 20 (from table 7.1.7.2.1-1 of 36.213)
102  // Traffic info
103  // UDP traffic: payload size = 200 bytes, interval = 1 ms
104  // UDP rate in scheduler: (payload + RLC header + PDCP header + IP header + UDP header) * 1000 byte/sec -> 232000 byte/rate
105  // Totol bandwidth: 24 PRB at Itbs 20 -> 1383 -> 1383000 byte/sec
106  // 1 user -> 903000 * 1 = 232000 < 1383000 -> throughput = 232000 byte/sec
107  // 3 user -> 232000 * 3 = 696000 < 1383000 -> througphut = 232000 byte/sec
108  // 6 user -> 232000 * 6 = 139200 > 1383000 -> throughput = 1383000 / 6 = 230500 byte/sec
109  // 12 user -> 232000 * 12 = 2784000 > 1383000 -> throughput = 1383000 / 12 = 115250 byte/sec
110  // UPLINK - DISTANCE 4800 -> MCS 14 -> Itbs 13 (from table 7.1.7.2.1-1 of 36.213)
111  // 1 user -> 25 PRB at Itbs 13 -> 807 -> 807000 > 232000 -> throughput = 232000 bytes/sec
112  // 3 users -> 8 PRB at Itbs 13 -> 253 -> 253000 > 232000 -> throughput = 232000 bytes/sec
113  // 6 users -> 4 PRB at Itbs 13 -> 125 -> 125000 < 232000 -> throughput = 125000 bytes/sec
114  // after the patch enforcing min 3 PRBs per UE:
115  // 12 users -> 3 PRB at Itbs 13 -> 93 bytes * 8/12 UE/TTI -> 62000 < 232000 -> throughput = 62000 bytes/sec
116  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (1,4800,232000,232000,200,1,errorModel), TestCase::EXTENSIVE);
117  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (3,4800,232000,232000,200,1,errorModel), TestCase::EXTENSIVE);
118  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (6,4800,230500,125000,200,1,errorModel), TestCase::EXTENSIVE);
119  //AddTestCase (new LenaPssFfMacSchedulerTestCase1 (12,4800,115250,62000,200,1,errorModel)); // simulation time = 1.5, otherwise, ul test will fail
120 
121  // DOWNLINK - DISTANCE 6000 -> MCS 20 -> Itbs 18 (from table 7.1.7.2.1-1 of 36.213)
122  // Traffic info
123  // UDP traffic: payload size = 200 bytes, interval = 1 ms
124  // UDP rate in scheduler: (payload + RLC header + PDCP header + IP header + UDP header) * 1000 byte/sec -> 232000 byte/rate
125  // Totol bandwidth: 24 PRB at Itbs 18 -> 1191 -> 1191000 byte/sec
126  // 1 user -> 903000 * 1 = 232000 < 1191000 -> throughput = 232000 byte/sec
127  // 3 user -> 232000 * 3 = 696000 < 1191000 -> througphut = 232000 byte/sec
128  // 6 user -> 232000 * 6 = 1392000 > 1191000 -> throughput = 1191000 / 6 = 198500 byte/sec
129  // 12 user -> 232000 * 12 = 2784000 > 1191000 -> throughput = 1191000 / 12 = 99250 byte/sec
130 
131  // UPLINK - DISTANCE 6000 -> MCS 12 -> Itbs 11 (from table 7.1.7.2.1-1 of 36.213)
132  // 1 user -> 25 PRB at Itbs 11 -> 621 -> 621000 > 232000 -> throughput = 232000 bytes/sec
133  // 3 users -> 8 PRB at Itbs 11 -> 201 -> 201000 < 232000 -> throughput = 201000 bytes/sec
134  // 6 users -> 4 PRB at Itbs 11 -> 97 -> 97000 < 232000 -> throughput = 97000 bytes/sec
135  // after the patch enforcing min 3 PRBs per UE:
136  // 12 users -> 3 PRB at Itbs 11 -> 73 bytes * 8/12 UE/TTI -> 48667 < 232000 -> throughput = 48667 bytes/sec
137  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (1,6000,232000,232000,200,1,errorModel), TestCase::EXTENSIVE);
138  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (3,6000,232000,201000,200,1,errorModel), TestCase::EXTENSIVE);
139  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (6,6000,198500,97000,200,1,errorModel), TestCase::EXTENSIVE);
140  //AddTestCase (new LenaPssFfMacSchedulerTestCase1 (12,6000,99250,48667,200,1, errorModel)); // simulation time = 1.5, otherwise, ul test will fail
141 
142  // DOWNLINK - DISTANCE 10000 -> MCS 14 -> Itbs 13 (from table 7.1.7.2.1-1 of 36.213)
143  // Traffic info
144  // UDP traffic: payload size = 200 bytes, interval = 1 ms
145  // UDP rate in scheduler: (payload + RLC header + PDCP header + IP header + UDP header) * 1000 byte/sec -> 232000 byte/rate
146  // Totol bandwidth: 24 PRB at Itbs 13 -> 775 -> 775000 byte/sec
147  // 1 user -> 903000 * 1 = 232000 < 775000 -> throughput = 232000 byte/sec
148  // 3 user -> 232000 * 3 = 696000 > 775000 -> througphut = 232000 byte/sec
149  // 6 user -> 232000 * 6 = 139200 > 775000 -> throughput = 775000 / 6 = 129166 byte/sec
150  // 12 user -> 232000 * 12 = 2784000 > 775000 -> throughput = 775000 / 12 = 64583 byte/sec
151  // UPLINK - DISTANCE 10000 -> MCS 8 -> Itbs 8 (from table 7.1.7.2.1-1 of 36.213)
152  // 1 user -> 24 PRB at Itbs 8 -> 437 -> 437000 > 232000 -> throughput = 232000 bytes/sec
153  // 3 users -> 8 PRB at Itbs 8 -> 137 -> 137000 < 232000 -> throughput = 137000 bytes/sec
154  // 6 users -> 4 PRB at Itbs 8 -> 67 -> 67000 < 232000 -> throughput = 67000 bytes/sec
155  // after the patch enforcing min 3 PRBs per UE:
156  // 12 users -> 3 PRB at Itbs 8 -> 49 bytes * 8/12 UE/TTI -> 32667 < 232000 -> throughput = 32667 bytes/sec
157  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (1,10000,232000,232000,200,1,errorModel), TestCase::EXTENSIVE);
158  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (3,10000,232000,137000,200,1,errorModel), TestCase::EXTENSIVE);
159  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (6,10000,129166,67000,200,1,errorModel), TestCase::EXTENSIVE);
160  //AddTestCase (new LenaPssFfMacSchedulerTestCase1 (12,10000,64583,32667,200,1,errorModel));// simulation time = 1.5, otherwise, ul test will fail
161 
162  // DOWNLINK - DISTANCE 100000 -> CQI == 0 -> out of range -> 0 bytes/sec
163  // UPLINK - DISTANCE 100000 -> CQI == 0 -> out of range -> 0 bytes/sec
164  AddTestCase (new LenaPssFfMacSchedulerTestCase1 (1,100000,0,0,200,1,errorModel), TestCase::QUICK);
165 
166  // Test Case 2: homogeneous flow test in PSS (different distance)
167  // Traffic1 info
168  // UDP traffic: payload size = 100 bytes, interval = 1 ms
169  // UDP rate in scheduler: (payload + RLC header + PDCP header + IP header + UDP header) * 1000 byte/sec -> 132000 byte/rate
170  // Maximum throughput = 4 / ( 1/2196000 + 1/1191000 + 1/1383000 + 1/775000 ) = 1209046 byte/s
171  // 132000 * 4 = 528000 < 1209046 -> estimated throughput in downlink = 132000 byte/sec
172  std::vector<double> dist1;
173  dist1.push_back (0); // User 0 distance --> MCS 28
174  dist1.push_back (4800); // User 1 distance --> MCS 22
175  dist1.push_back (6000); // User 2 distance --> MCS 20
176  dist1.push_back (10000); // User 3 distance --> MCS 14
177  std::vector<uint16_t> packetSize1;
178  packetSize1.push_back (100);
179  packetSize1.push_back (100);
180  packetSize1.push_back (100);
181  packetSize1.push_back (100);
182  std::vector<uint32_t> estThrPssDl1;
183  estThrPssDl1.push_back (132000); // User 0 estimated TTI throughput from PSS
184  estThrPssDl1.push_back (132000); // User 1 estimated TTI throughput from PSS
185  estThrPssDl1.push_back (132000); // User 2 estimated TTI throughput from PSS
186  estThrPssDl1.push_back (132000); // User 3 estimated TTI throughput from PSS
187  AddTestCase (new LenaPssFfMacSchedulerTestCase2 (dist1,estThrPssDl1,packetSize1,1,errorModel), TestCase::QUICK);
188 
189  // Traffic2 info
190  // UDP traffic: payload size = 200 bytes, interval = 1 ms
191  // UDP rate in scheduler: (payload + RLC header + PDCP header + IP header + UDP header) * 1000 byte/sec -> 232000 byte/rate
192  // Maximum throughput = 4 / ( 1/2196000 + 1/1191000 + 1/1383000 + 1/775000 ) = 1209046 byte/s
193  // 232000 * 4 = 928000 < 1209046 -> estimated throughput in downlink = 928000 / 4 = 230000 byte/sec
194  std::vector<double> dist2;
195  dist2.push_back (0); // User 0 distance --> MCS 28
196  dist2.push_back (4800); // User 1 distance --> MCS 22
197  dist2.push_back (6000); // User 2 distance --> MCS 20
198  dist2.push_back (10000); // User 3 distance --> MCS 14
199  std::vector<uint16_t> packetSize2;
200  packetSize2.push_back (200);
201  packetSize2.push_back (200);
202  packetSize2.push_back (200);
203  packetSize2.push_back (200);
204  std::vector<uint32_t> estThrPssDl2;
205  estThrPssDl2.push_back (230000); // User 0 estimated TTI throughput from PSS
206  estThrPssDl2.push_back (230000); // User 1 estimated TTI throughput from PSS
207  estThrPssDl2.push_back (230000); // User 2 estimated TTI throughput from PSS
208  estThrPssDl2.push_back (230000); // User 3 estimated TTI throughput from PSS
209  AddTestCase (new LenaPssFfMacSchedulerTestCase2 (dist2,estThrPssDl2,packetSize2,1,errorModel), TestCase::QUICK);
210 
211  // Test Case 3: heterogeneous flow test in PSS
212  // UDP traffic: payload size = [100,200,300] bytes, interval = 1 ms
213  // UDP rate in scheduler: (payload + RLC header + PDCP header + IP header + UDP header) * 1000 byte/sec -> [132000, 232000, 332000] byte/rate
214  // Maximum throughput = 3 / ( 1/2196000 + 1/1191000 + 1/1383000) = 1486569 byte/s
215  // 132000 + 232000 + 332000 = 696000 < 1486569 -> estimated throughput in downlink = [132000, 232000, 332000] byte/sec
216  std::vector<double> dist3;
217  dist3.push_back (0); // User 0 distance --> MCS 28
218  dist3.push_back (4800); // User 1 distance --> MCS 22
219  dist3.push_back (6000); // User 2 distance --> MCS 20
220  std::vector<uint16_t> packetSize3;
221  packetSize3.push_back (100);
222  packetSize3.push_back (200);
223  packetSize3.push_back (300);
224  std::vector<uint32_t> estThrPssDl3;
225  estThrPssDl3.push_back (132000); // User 0 estimated TTI throughput from PSS
226  estThrPssDl3.push_back (232000); // User 1 estimated TTI throughput from PSS
227  estThrPssDl3.push_back (332000); // User 2 estimated TTI throughput from PSS
228  AddTestCase (new LenaPssFfMacSchedulerTestCase2 (dist3,estThrPssDl3,packetSize3,1,errorModel), TestCase::QUICK);
229 
230 }
231 
233 
234 // --------------- T E S T - C A S E # 1 ------------------------------
235 
236 
237 std::string
239 {
240  std::ostringstream oss;
241  oss << nUser << " UEs, distance " << dist << " m";
242  return oss.str ();
243 }
244 
245 
246 LenaPssFfMacSchedulerTestCase1::LenaPssFfMacSchedulerTestCase1 (uint16_t nUser, double dist, double thrRefDl, double thrRefUl, uint16_t packetSize, uint16_t interval,bool errorModelEnabled)
247  : TestCase (BuildNameString (nUser, dist)),
248  m_nUser (nUser),
249  m_dist (dist),
250  m_packetSize (packetSize),
251  m_interval (interval),
252  m_thrRefDl (thrRefDl),
253  m_thrRefUl (thrRefUl),
254  m_errorModelEnabled (errorModelEnabled)
255 {
256 }
257 
259 {
260 }
261 
262 void
264 {
265  NS_LOG_FUNCTION (this << GetName ());
266 
267  if (!m_errorModelEnabled)
268  {
269  Config::SetDefault ("ns3::LteSpectrumPhy::CtrlErrorModelEnabled", BooleanValue (false));
270  Config::SetDefault ("ns3::LteSpectrumPhy::DataErrorModelEnabled", BooleanValue (false));
271  }
272 
273  Config::SetDefault ("ns3::LteHelper::UseIdealRrc", BooleanValue (true));
274 
275  Ptr<LteHelper> lteHelper = CreateObject<LteHelper> ();
276  Ptr<PointToPointEpcHelper> epcHelper = CreateObject<PointToPointEpcHelper> ();
277  lteHelper->SetEpcHelper (epcHelper);
278 
279  //LogComponentEnable ("PssFfMacScheduler", LOG_DEBUG);
280 
281  Ptr<Node> pgw = epcHelper->GetPgwNode ();
282 
283  // Create a single RemoteHost
284  NodeContainer remoteHostContainer;
285  remoteHostContainer.Create (1);
286  Ptr<Node> remoteHost = remoteHostContainer.Get (0);
287  InternetStackHelper internet;
288  internet.Install (remoteHostContainer);
289 
290  // Create the Internet
291  PointToPointHelper p2ph;
292  p2ph.SetDeviceAttribute ("DataRate", DataRateValue (DataRate ("100Gb/s")));
293  p2ph.SetDeviceAttribute ("Mtu", UintegerValue (1500));
294  p2ph.SetChannelAttribute ("Delay", TimeValue (Seconds (0.001)));
295  NetDeviceContainer internetDevices = p2ph.Install (pgw, remoteHost);
296  Ipv4AddressHelper ipv4h;
297  ipv4h.SetBase ("1.0.0.0", "255.0.0.0");
298  Ipv4InterfaceContainer internetIpIfaces = ipv4h.Assign (internetDevices);
299  // interface 0 is localhost, 1 is the p2p device
300  Ipv4Address remoteHostAddr = internetIpIfaces.GetAddress (1);
301 
302  Ipv4StaticRoutingHelper ipv4RoutingHelper;
303  Ptr<Ipv4StaticRouting> remoteHostStaticRouting = ipv4RoutingHelper.GetStaticRouting (remoteHost->GetObject<Ipv4> ());
304  remoteHostStaticRouting->AddNetworkRouteTo (Ipv4Address ("7.0.0.0"), Ipv4Mask ("255.0.0.0"), 1);
305 
306  //Config::SetDefault ("ns3::LteAmc::AmcModel", EnumValue (LteAmc::PiroEW2010));
307  //Config::SetDefault ("ns3::LteAmc::Ber", DoubleValue (0.00005));
308  //Config::SetDefault ("ns3::LteSpectrumPhy::CtrlErrorModelEnabled", BooleanValue (false));
309  //Config::SetDefault ("ns3::LteSpectrumPhy::DataErrorModelEnabled", BooleanValue (false));
310 
311  //Config::SetDefault ("ns3::LteEnbRrc::EpsBearerToRlcMapping", EnumValue (LteHelper::RLC_UM_ALWAYS));
312 
313 // LogComponentDisableAll (LOG_LEVEL_ALL);
314  //LogComponentEnable ("LenaTestPssFfMacScheduler", LOG_LEVEL_ALL);
315 
316  lteHelper->SetAttribute ("PathlossModel", StringValue ("ns3::FriisSpectrumPropagationLossModel"));
317 
318  // Create Nodes: eNodeB and UE
319  NodeContainer enbNodes;
320  NodeContainer ueNodes;
321  enbNodes.Create (1);
322  ueNodes.Create (m_nUser);
323 
324  // Install Mobility Model
326  mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
327  mobility.Install (enbNodes);
328  mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
329  mobility.Install (ueNodes);
330 
331  // Create Devices and install them in the Nodes (eNB and UE)
332  NetDeviceContainer enbDevs;
333  NetDeviceContainer ueDevs;
334  lteHelper->SetSchedulerType ("ns3::PssFfMacScheduler");
335  lteHelper->SetSchedulerAttribute ("UlCqiFilter", EnumValue (FfMacScheduler::SRS_UL_CQI));
336  enbDevs = lteHelper->InstallEnbDevice (enbNodes);
337  ueDevs = lteHelper->InstallUeDevice (ueNodes);
338 
339 
340  Ptr<LteEnbNetDevice> lteEnbDev = enbDevs.Get (0)->GetObject<LteEnbNetDevice> ();
341  Ptr<LteEnbPhy> enbPhy = lteEnbDev->GetPhy ();
342  enbPhy->SetAttribute ("TxPower", DoubleValue (30.0));
343  enbPhy->SetAttribute ("NoiseFigure", DoubleValue (5.0));
344 
345  // Set UEs' position and power
346  for (int i = 0; i < m_nUser; i++)
347  {
349  mm->SetPosition (Vector (m_dist, 0.0, 0.0));
350  Ptr<LteUeNetDevice> lteUeDev = ueDevs.Get (i)->GetObject<LteUeNetDevice> ();
351  Ptr<LteUePhy> uePhy = lteUeDev->GetPhy ();
352  uePhy->SetAttribute ("TxPower", DoubleValue (23.0));
353  uePhy->SetAttribute ("NoiseFigure", DoubleValue (9.0));
354  }
355 
356  // Install the IP stack on the UEs
357  internet.Install (ueNodes);
358  Ipv4InterfaceContainer ueIpIface;
359  ueIpIface = epcHelper->AssignUeIpv4Address (NetDeviceContainer (ueDevs));
360 
361  // Assign IP address to UEs
362  for (uint32_t u = 0; u < ueNodes.GetN (); ++u)
363  {
364  Ptr<Node> ueNode = ueNodes.Get (u);
365  // Set the default gateway for the UE
366  Ptr<Ipv4StaticRouting> ueStaticRouting = ipv4RoutingHelper.GetStaticRouting (ueNode->GetObject<Ipv4> ());
367  ueStaticRouting->SetDefaultRoute (epcHelper->GetUeDefaultGatewayAddress (), 1);
368  }
369 
370  // Attach a UE to a eNB
371  lteHelper->Attach (ueDevs, enbDevs.Get (0));
372 
373  // Activate an EPS bearer on all UEs
374  for (uint32_t u = 0; u < ueNodes.GetN (); ++u)
375  {
376  Ptr<NetDevice> ueDevice = ueDevs.Get (u);
377  GbrQosInformation qos;
378  qos.gbrDl = (m_packetSize + 32) * (1000 / m_interval) * 8; // bit/s, considering IP, UDP, RLC, PDCP header size
379  qos.gbrUl = (m_packetSize + 32) * (1000 / m_interval) * 8;
380  qos.mbrDl = 0;
381  qos.mbrUl = 0;
382 
383  enum EpsBearer::Qci q = EpsBearer::GBR_CONV_VOICE;
384  EpsBearer bearer (q, qos);
385  lteHelper->ActivateDedicatedEpsBearer (ueDevice, bearer, EpcTft::Default ());
386  }
387 
388  // Install downlink and uplink applications
389  uint16_t dlPort = 1234;
390  uint16_t ulPort = 2000;
393  PacketSinkHelper dlPacketSinkHelper ("ns3::UdpSocketFactory", InetSocketAddress (Ipv4Address::GetAny (), dlPort));
394 
395  for (uint32_t u = 0; u < ueNodes.GetN (); ++u)
396  {
397  ++ulPort;
398  PacketSinkHelper ulPacketSinkHelper ("ns3::UdpSocketFactory", InetSocketAddress (Ipv4Address::GetAny (), ulPort));
399  serverApps.Add (ulPacketSinkHelper.Install (remoteHost)); // receive packets from UEs
400  serverApps.Add (dlPacketSinkHelper.Install (ueNodes.Get (u))); // receive packets from remotehost
401 
402  UdpClientHelper dlClient (ueIpIface.GetAddress (u), dlPort); // downlink packets generator
403  dlClient.SetAttribute ("Interval", TimeValue (MilliSeconds (m_interval)));
404  dlClient.SetAttribute ("MaxPackets", UintegerValue (1000000));
405  dlClient.SetAttribute ("PacketSize", UintegerValue (m_packetSize));
406 
407  UdpClientHelper ulClient (remoteHostAddr, ulPort); // uplink packets generator
408  ulClient.SetAttribute ("Interval", TimeValue (MilliSeconds (m_interval)));
409  ulClient.SetAttribute ("MaxPackets", UintegerValue (1000000));
410  ulClient.SetAttribute ("PacketSize", UintegerValue (m_packetSize));
411 
412  clientApps.Add (dlClient.Install (remoteHost));
413  clientApps.Add (ulClient.Install (ueNodes.Get (u)));
414  }
415 
416  serverApps.Start (Seconds (0.030));
417  clientApps.Start (Seconds (0.030));
418 
419  double statsStartTime = 0.300; // need to allow for RRC connection establishment + SRS
420  double statsDuration = 0.6;
421  double tolerance = 0.1;
422  Simulator::Stop (Seconds (statsStartTime + statsDuration - 0.0001));
423 
424  lteHelper->EnableRlcTraces ();
425  lteHelper->EnableMacTraces ();
426  Ptr<RadioBearerStatsCalculator> rlcStats = lteHelper->GetRlcStats ();
427  rlcStats->SetAttribute ("StartTime", TimeValue (Seconds (statsStartTime)));
428  rlcStats->SetAttribute ("EpochDuration", TimeValue (Seconds (statsDuration)));
429 
430  Simulator::Run ();
431 
436  NS_LOG_INFO ("DL - Test with " << m_nUser << " user(s) at distance " << m_dist);
437  std::vector <uint64_t> dlDataRxed;
438  for (int i = 0; i < m_nUser; i++)
439  {
440  // get the imsi
441  uint64_t imsi = ueDevs.Get (i)->GetObject<LteUeNetDevice> ()->GetImsi ();
442  // get the lcId
443  uint8_t lcId = 4;
444  uint64_t data = rlcStats->GetDlRxData (imsi, lcId);
445  dlDataRxed.push_back (data);
446  NS_LOG_INFO ("\tUser " << i << " imsi " << imsi << " bytes rxed " << (double)dlDataRxed.at (i) << " thr " << (double)dlDataRxed.at (i) / statsDuration << " ref " << m_thrRefDl);
447  }
448 
449  for (int i = 0; i < m_nUser; i++)
450  {
451  NS_TEST_ASSERT_MSG_EQ_TOL ((double)dlDataRxed.at (i) / statsDuration, m_thrRefDl, m_thrRefDl * tolerance, " Unfair Throughput!");
452  }
453 
458  NS_LOG_INFO ("UL - Test with " << m_nUser << " user(s) at distance " << m_dist);
459  std::vector <uint64_t> ulDataRxed;
460  for (int i = 0; i < m_nUser; i++)
461  {
462  // get the imsi
463  uint64_t imsi = ueDevs.Get (i)->GetObject<LteUeNetDevice> ()->GetImsi ();
464  // get the lcId
465  uint8_t lcId = 4;
466  ulDataRxed.push_back (rlcStats->GetUlRxData (imsi, lcId));
467  NS_LOG_INFO ("\tUser " << i << " imsi " << imsi << " bytes rxed " << (double)ulDataRxed.at (i) << " thr " << (double)ulDataRxed.at (i) / statsDuration << " ref " << m_thrRefUl);
468  }
469 
470  for (int i = 0; i < m_nUser; i++)
471  {
472  NS_TEST_ASSERT_MSG_EQ_TOL ((double)ulDataRxed.at (i) / statsDuration, m_thrRefUl, m_thrRefUl * tolerance, " Unfair Throughput!");
473  }
474  Simulator::Destroy ();
475 
476 }
477 
478 
479 
480 // --------------- T E S T - C A S E # 2 ------------------------------
481 
482 
483 std::string
484 LenaPssFfMacSchedulerTestCase2::BuildNameString (uint16_t nUser, std::vector<double> dist)
485 {
486  std::ostringstream oss;
487  oss << "distances (m) = [ " ;
488  for (std::vector<double>::iterator it = dist.begin (); it != dist.end (); ++it)
489  {
490  oss << *it << " ";
491  }
492  oss << "]";
493  return oss.str ();
494 }
495 
496 
497 LenaPssFfMacSchedulerTestCase2::LenaPssFfMacSchedulerTestCase2 (std::vector<double> dist, std::vector<uint32_t> estThrPssDl, std::vector<uint16_t> packetSize, uint16_t interval,bool errorModelEnabled)
498  : TestCase (BuildNameString (dist.size (), dist)),
499  m_nUser (dist.size ()),
500  m_dist (dist),
501  m_packetSize (packetSize),
502  m_interval (interval),
503  m_estThrPssDl (estThrPssDl),
504  m_errorModelEnabled (errorModelEnabled)
505 {
506 }
507 
509 {
510 }
511 
512 void
514 {
515 
516  if (!m_errorModelEnabled)
517  {
518  Config::SetDefault ("ns3::LteSpectrumPhy::CtrlErrorModelEnabled", BooleanValue (false));
519  Config::SetDefault ("ns3::LteSpectrumPhy::DataErrorModelEnabled", BooleanValue (false));
520  }
521 
522  Config::SetDefault ("ns3::LteHelper::UseIdealRrc", BooleanValue (true));
523 
524 
525  Ptr<LteHelper> lteHelper = CreateObject<LteHelper> ();
526  Ptr<PointToPointEpcHelper> epcHelper = CreateObject<PointToPointEpcHelper> ();
527  lteHelper->SetEpcHelper (epcHelper);
528 
529  Ptr<Node> pgw = epcHelper->GetPgwNode ();
530 
531  // Create a single RemoteHost
532  NodeContainer remoteHostContainer;
533  remoteHostContainer.Create (1);
534  Ptr<Node> remoteHost = remoteHostContainer.Get (0);
535  InternetStackHelper internet;
536  internet.Install (remoteHostContainer);
537 
538  // Create the Internet
539  PointToPointHelper p2ph;
540  p2ph.SetDeviceAttribute ("DataRate", DataRateValue (DataRate ("100Gb/s")));
541  p2ph.SetDeviceAttribute ("Mtu", UintegerValue (1500));
542  p2ph.SetChannelAttribute ("Delay", TimeValue (Seconds (0.001)));
543  NetDeviceContainer internetDevices = p2ph.Install (pgw, remoteHost);
544  Ipv4AddressHelper ipv4h;
545  ipv4h.SetBase ("1.0.0.0", "255.0.0.0");
546  Ipv4InterfaceContainer internetIpIfaces = ipv4h.Assign (internetDevices);
547  // interface 0 is localhost, 1 is the p2p device
548  Ipv4Address remoteHostAddr = internetIpIfaces.GetAddress (1);
549 
550  Ipv4StaticRoutingHelper ipv4RoutingHelper;
551  Ptr<Ipv4StaticRouting> remoteHostStaticRouting = ipv4RoutingHelper.GetStaticRouting (remoteHost->GetObject<Ipv4> ());
552  remoteHostStaticRouting->AddNetworkRouteTo (Ipv4Address ("7.0.0.0"), Ipv4Mask ("255.0.0.0"), 1);
553 
554 
555 // LogComponentDisableAll (LOG_LEVEL_ALL);
556  //LogComponentEnable ("LenaTestPssFfMacScheduler", LOG_LEVEL_ALL);
557 
558  lteHelper->SetAttribute ("PathlossModel", StringValue ("ns3::FriisSpectrumPropagationLossModel"));
559 
560  // Create Nodes: eNodeB and UE
561  NodeContainer enbNodes;
562  NodeContainer ueNodes;
563  enbNodes.Create (1);
564  ueNodes.Create (m_nUser);
565 
566  // Install Mobility Model
568  mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
569  mobility.Install (enbNodes);
570  mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
571  mobility.Install (ueNodes);
572 
573  // Create Devices and install them in the Nodes (eNB and UE)
574  NetDeviceContainer enbDevs;
575  NetDeviceContainer ueDevs;
576  lteHelper->SetSchedulerType ("ns3::PssFfMacScheduler");
577  lteHelper->SetSchedulerAttribute ("UlCqiFilter", EnumValue (FfMacScheduler::SRS_UL_CQI));
578  enbDevs = lteHelper->InstallEnbDevice (enbNodes);
579  ueDevs = lteHelper->InstallUeDevice (ueNodes);
580 
581  Ptr<LteEnbNetDevice> lteEnbDev = enbDevs.Get (0)->GetObject<LteEnbNetDevice> ();
582  Ptr<LteEnbPhy> enbPhy = lteEnbDev->GetPhy ();
583  enbPhy->SetAttribute ("TxPower", DoubleValue (30.0));
584  enbPhy->SetAttribute ("NoiseFigure", DoubleValue (5.0));
585 
586  // Set UEs' position and power
587  for (int i = 0; i < m_nUser; i++)
588  {
590  mm->SetPosition (Vector (m_dist.at (i), 0.0, 0.0));
591  Ptr<LteUeNetDevice> lteUeDev = ueDevs.Get (i)->GetObject<LteUeNetDevice> ();
592  Ptr<LteUePhy> uePhy = lteUeDev->GetPhy ();
593  uePhy->SetAttribute ("TxPower", DoubleValue (23.0));
594  uePhy->SetAttribute ("NoiseFigure", DoubleValue (9.0));
595  }
596 
597  // Install the IP stack on the UEs
598  internet.Install (ueNodes);
599  Ipv4InterfaceContainer ueIpIface;
600  ueIpIface = epcHelper->AssignUeIpv4Address (NetDeviceContainer (ueDevs));
601 
602  // Assign IP address to UEs
603  for (uint32_t u = 0; u < ueNodes.GetN (); ++u)
604  {
605  Ptr<Node> ueNode = ueNodes.Get (u);
606  // Set the default gateway for the UE
607  Ptr<Ipv4StaticRouting> ueStaticRouting = ipv4RoutingHelper.GetStaticRouting (ueNode->GetObject<Ipv4> ());
608  ueStaticRouting->SetDefaultRoute (epcHelper->GetUeDefaultGatewayAddress (), 1);
609  }
610 
611  // Attach a UE to a eNB
612  lteHelper->Attach (ueDevs, enbDevs.Get (0));
613 
614  // Activate an EPS bearer on all UEs
615 
616  for (uint32_t u = 0; u < ueNodes.GetN (); ++u)
617  {
618  Ptr<NetDevice> ueDevice = ueDevs.Get (u);
619  GbrQosInformation qos;
620  qos.gbrDl = (m_packetSize.at (u) + 32) * (1000 / m_interval) * 8; // bit/s, considering IP, UDP, RLC, PDCP header size
621  qos.gbrUl = (m_packetSize.at (u) + 32) * (1000 / m_interval) * 8;
622  qos.mbrDl = qos.gbrDl;
623  qos.mbrUl = qos.gbrUl;
624 
625  enum EpsBearer::Qci q = EpsBearer::GBR_CONV_VOICE;
626  EpsBearer bearer (q, qos);
627  lteHelper->ActivateDedicatedEpsBearer (ueDevice, bearer, EpcTft::Default ());
628  }
629 
630 
631  // Install downlink and uplink applications
632  uint16_t dlPort = 1234;
633  uint16_t ulPort = 2000;
636  PacketSinkHelper dlPacketSinkHelper ("ns3::UdpSocketFactory", InetSocketAddress (Ipv4Address::GetAny (), dlPort));
637 
638  for (uint32_t u = 0; u < ueNodes.GetN (); ++u)
639  {
640  ++ulPort;
641  PacketSinkHelper ulPacketSinkHelper ("ns3::UdpSocketFactory", InetSocketAddress (Ipv4Address::GetAny (), ulPort));
642  serverApps.Add (ulPacketSinkHelper.Install (remoteHost)); // receive packets from UEs
643  serverApps.Add (dlPacketSinkHelper.Install (ueNodes.Get (u))); // receive packets from remotehost
644 
645  UdpClientHelper dlClient (ueIpIface.GetAddress (u), dlPort); // downlink packets generator
646  dlClient.SetAttribute ("Interval", TimeValue (MilliSeconds (m_interval)));
647  dlClient.SetAttribute ("MaxPackets", UintegerValue (1000000));
648  dlClient.SetAttribute ("PacketSize", UintegerValue (m_packetSize.at (u)));
649 
650  UdpClientHelper ulClient (remoteHostAddr, ulPort); // uplink packets generator
651  ulClient.SetAttribute ("Interval", TimeValue (MilliSeconds (m_interval)));
652  ulClient.SetAttribute ("MaxPackets", UintegerValue (1000000));
653  ulClient.SetAttribute ("PacketSize", UintegerValue (m_packetSize.at (u)));
654 
655  clientApps.Add (dlClient.Install (remoteHost));
656  clientApps.Add (ulClient.Install (ueNodes.Get (u)));
657  }
658 
659  serverApps.Start (Seconds (0.030));
660  clientApps.Start (Seconds (0.030));
661 
662  double statsStartTime = 0.04; // need to allow for RRC connection establishment + SRS
663  double statsDuration = 0.5;
664  double tolerance = 0.1;
665  Simulator::Stop (Seconds (statsStartTime + statsDuration - 0.0001));
666 
667  lteHelper->EnableRlcTraces ();
668  Ptr<RadioBearerStatsCalculator> rlcStats = lteHelper->GetRlcStats ();
669  rlcStats->SetAttribute ("StartTime", TimeValue (Seconds (statsStartTime)));
670  rlcStats->SetAttribute ("EpochDuration", TimeValue (Seconds (statsDuration)));
671 
672 
673  Simulator::Run ();
674 
679  NS_LOG_INFO ("DL - Test with " << m_nUser << " user(s)");
680  std::vector <uint64_t> dlDataRxed;
681  for (int i = 0; i < m_nUser; i++)
682  {
683  // get the imsi
684  uint64_t imsi = ueDevs.Get (i)->GetObject<LteUeNetDevice> ()->GetImsi ();
685  // get the lcId
686  uint8_t lcId = 4;
687  dlDataRxed.push_back (rlcStats->GetDlRxData (imsi, lcId));
688  NS_LOG_INFO ("\tUser " << i << " dist " << m_dist.at (i) << " imsi " << imsi << " bytes rxed " << (double)dlDataRxed.at (i) << " thr " << (double)dlDataRxed.at (i) / statsDuration << " ref " << m_estThrPssDl.at (i));
689  }
690 
691  for (int i = 0; i < m_nUser; i++)
692  {
693  NS_TEST_ASSERT_MSG_EQ_TOL ((double)dlDataRxed.at (i) / statsDuration, m_estThrPssDl.at (i), m_estThrPssDl.at (i) * tolerance, " Unfair Throughput!");
694  }
695 
696  Simulator::Destroy ();
697 
698 }
holds a vector of ns3::Application pointers.
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
double m_thrRefUl
the UL throughput reference value
an Inet address class
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
AttributeValue implementation for Boolean.
Definition: boolean.h:36
NetDeviceContainer InstallEnbDevice(NodeContainer c)
Create a set of eNodeB devices.
Definition: lte-helper.cc:474
holds a vector of std::pair of Ptr<Ipv4> 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.
Definition: string.h:41
NetDeviceContainer Install(NodeContainer c)
a class to represent an Ipv4 address mask
Definition: ipv4-address.h:258
A suite of tests to run.
Definition: test.h:1342
virtual void DoRun(void)
Implementation to actually run this TestCase.
Simillar to the LenaPssFfMacSchedulerTestCase1 with the difference that UEs are places in such a way ...
LenaPssFfMacSchedulerTestCase1(uint16_t nUser, double dist, double thrRefDl, double thrRefUl, uint16_t packetSize, uint16_t interval, bool errorModelEnabled)
Constructor.
Mobility model for which the current position does not change once it has been set and until it is se...
serverApps
Definition: first.py:45
std::vector< uint16_t > m_packetSize
the packet size in bytes
std::vector< uint32_t > m_estThrPssDl
the DL estimated throughput PSS
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:961
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:204
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
Definition: nstime.h:1070
void EnableRlcTraces(void)
Enable trace sinks for RLC layer.
Definition: lte-helper.cc:1435
ApplicationContainer Install(NodeContainer c) const
Install an ns3::PacketSinkApplication on each node of the input container configured with all the att...
aggregate IP/TCP/UDP functionality to existing Nodes.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:280
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes...
Build a set of PointToPointNetDevice objects.
encapsulates test code
Definition: test.h:1155
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.
Definition: lte-helper.cc:1069
ApplicationContainer Install(NodeContainer c)
void SetSchedulerType(std::string type)
Set the type of scheduler to be used by eNodeB devices.
Definition: lte-helper.cc:279
mobility
Definition: third.py:101
uint64_t gbrUl
Guaranteed Bit Rate (bit/s) in uplink.
Definition: eps-bearer.h:43
Class for representing data rates.
Definition: data-rate.h:88
This system test program creates different test cases with a single eNB and several UEs...
static std::string BuildNameString(uint16_t nUser, std::vector< double > dist)
Builds the test name string based on provided parameter values.
Hold variables of type enum.
Definition: enum.h:54
Create a client application which sends UDP packets carrying a 32bit sequence number and a 64 bit tim...
AttributeValue implementation for Time.
Definition: nstime.h:1124
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
Definition: test.cc:299
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
uint16_t m_packetSize
the packet size in bytes
uint64_t GetDlRxData(uint64_t imsi, uint8_t lcid)
Gets the number of received downlink data bytes.
Hold an unsigned integer type.
Definition: uinteger.h:44
static LenaTestPssFfMacSchedulerSuite lenaTestPssFfMacSchedulerSuite
void SetSchedulerAttribute(std::string n, const AttributeValue &v)
Set an attribute for the scheduler to be created.
Definition: lte-helper.cc:293
uint8_t data[writeSize]
holds a vector of ns3::NetDevice pointers
uint64_t gbrDl
Guaranteed Bit Rate (bit/s) in downlink.
Definition: eps-bearer.h:42
Ptr< LteEnbPhy > GetPhy(void) const
#define NS_TEST_ASSERT_MSG_EQ_TOL(actual, limit, tol, msg)
Test that actual and expected (limit) values are equal to plus or minus some tolerance and report and...
Definition: test.h:380
double m_dist
the distance between nodes
uint32_t GetN(void) const
Get the number of Ptr<Node> stored in this container.
Access to the IPv4 forwarding table, interfaces, and configuration.
Definition: ipv4.h:76
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
Definition: object.h:459
void SetAttribute(std::string name, const AttributeValue &value)
Record an attribute to be set in each Application after it is is created.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::vector< double > m_dist
the distance between nodes
keep track of a set of node pointers.
virtual void DoRun(void)
Implementation to actually run this TestCase.
double m_thrRefDl
the DL throughput reference value
uint64_t mbrUl
Maximum Bit Rate (bit/s) in uplink.
Definition: eps-bearer.h:45
Ptr< LteUePhy > GetPhy(void) const
Get the Phy.
static std::string BuildNameString(uint16_t nUser, double dist)
Builds the test name string based on provided parameter values.
This class contains the specification of EPS Bearers.
Definition: eps-bearer.h:91
bool m_errorModelEnabled
indicates whether the error model is enabled
void SetPosition(const Vector &position)
uint16_t m_interval
the interval time in ms
void SetChannelAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each Channel created by the helper.
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
Ptr< RadioBearerStatsCalculator > GetRlcStats(void)
Definition: lte-helper.cc:1572
NetDeviceContainer InstallUeDevice(NodeContainer c)
Create a set of UE devices.
Definition: lte-helper.cc:489
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.
uint64_t GetUlRxData(uint64_t imsi, uint8_t lcid)
Gets the number of received uplink data bytes.
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:40
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
std::string GetName(void) const
Definition: test.cc:370
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:272
Lena Pss Ff Mac Scheduler Test Suite.
Helper class that adds ns3::Ipv4StaticRouting objects.
AttributeValue implementation for DataRate.
Definition: data-rate.h:242
bool m_errorModelEnabled
indicates whether the error model is enabled
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1062
void SetDefault(std::string name, const AttributeValue &value)
Definition: config.cc:810
uint16_t m_interval
the interval time in ms
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
clientApps
Definition: first.py:54
Qci
QoS Class Indicator.
Definition: eps-bearer.h:106
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
static const uint32_t packetSize
void EnableMacTraces(void)
Enable trace sinks for MAC layer.
Definition: lte-helper.cc:1529
uint64_t mbrDl
Maximum Bit Rate (bit/s) in downlink.
Definition: eps-bearer.h:44
3GPP TS 36.413 9.2.1.18 GBR QoS Information
Definition: eps-bearer.h:35
This class can be used to hold variables of floating point type such as &#39;double&#39; or &#39;float&#39;...
Definition: double.h:41
LenaPssFfMacSchedulerTestCase2(std::vector< double > dist, std::vector< uint32_t > estThrPssDl, std::vector< uint16_t > packetSize, uint16_t interval, bool errorModelEnabled)
Constructor.
void SetAttribute(std::string name, const AttributeValue &value)
Set a single attribute, raising fatal errors if unsuccessful.
Definition: object-base.cc:185
The eNodeB device implementation.
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 SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
The LteUeNetDevice class implements the UE net device.