21 #include <ns3/core-module.h>
22 #include <ns3/network-module.h>
23 #include <ns3/mobility-module.h>
24 #include <ns3/internet-module.h>
25 #include <ns3/lte-module.h>
26 #include <ns3/config-store-module.h>
27 #include <ns3/buildings-module.h>
28 #include <ns3/point-to-point-helper.h>
29 #include <ns3/applications-module.h>
60 bool OverlapsWithAnyPrevious (
Box);
74 m_nApartmentsX (nApartmentsX),
76 m_xSize (nApartmentsX*10 + 20),
79 m_xMinVar = CreateObject<UniformRandomVariable> ();
82 m_yMinVar = CreateObject<UniformRandomVariable> ();
90 for (uint32_t i = 0; i < n; ++i)
100 uint32_t attempt = 0;
103 NS_ASSERT_MSG (attempt < 100,
"Too many failed attemtps to position apartment block. Too many blocks? Too small area?");
112 NS_LOG_LOGIC (
"allocated non overlapping block " << box);
115 gridBuildingAllocator = CreateObject<GridBuildingAllocator> ();
127 gridBuildingAllocator->
Create (2);
146 std::ofstream outFile;
147 outFile.open (filename.c_str (), std::ios_base::out | std::ios_base::trunc);
148 if (!outFile.is_open ())
157 Box box = (*it)->GetBoundaries ();
158 outFile <<
"set object " << index
159 <<
" rect from " << box.
xMin <<
"," << box.
yMin
160 <<
" to " << box.
xMax <<
"," << box.
yMax
161 <<
" front fs empty "
169 std::ofstream outFile;
170 outFile.open (filename.c_str (), std::ios_base::out | std::ios_base::trunc);
171 if (!outFile.is_open ())
180 for (
int j = 0; j < nDevs; j++)
186 outFile <<
"set label \"" << uedev->
GetImsi ()
187 <<
"\" at "<< pos.
x <<
"," << pos.
y <<
" left font \"Helvetica,4\" textcolor rgb \"grey\" front point pt 1 ps 0.3 lc rgb \"grey\" offset 0,0"
197 std::ofstream outFile;
198 outFile.open (filename.c_str (), std::ios_base::out | std::ios_base::trunc);
199 if (!outFile.is_open ())
208 for (
int j = 0; j < nDevs; j++)
214 outFile <<
"set label \"" << enbdev->
GetCellId ()
215 <<
"\" at "<< pos.
x <<
"," << pos.
y <<
" left font \"Helvetica,4\" textcolor rgb \"white\" front point pt 2 ps 0.3 lc rgb \"white\" offset 0,0"
224 "Number of femtocell blocks",
226 ns3::MakeUintegerChecker<uint32_t> ());
228 "Number of apartments along the X axis in a femtocell block",
230 ns3::MakeUintegerChecker<uint32_t> ());
234 ns3::MakeUintegerChecker<uint32_t> ());
236 "How many macro sites there are",
238 ns3::MakeUintegerChecker<uint32_t> ());
240 "(minimum) number of sites along the X-axis of the hex grid",
242 ns3::MakeUintegerChecker<uint32_t> ());
244 "min distance between two nearby macro cell sites",
246 ns3::MakeDoubleChecker<double> ());
248 "how much the UE area extends outside the macrocell grid, "
249 "expressed as fraction of the interSiteDistance",
251 ns3::MakeDoubleChecker<double> ());
253 "How many macrocell UEs there are per square meter",
255 ns3::MakeDoubleChecker<double> ());
257 "The HeNB deployment ratio as per 3GPP R4-092042",
259 ns3::MakeDoubleChecker<double> ());
261 "The HeNB activation ratio as per 3GPP R4-092042",
263 ns3::MakeDoubleChecker<double> ());
265 "How many (on average) home UEs per HeNB there are in the simulation",
267 ns3::MakeDoubleChecker<double> ());
269 "TX power [dBm] used by macro eNBs",
271 ns3::MakeDoubleChecker<double> ());
273 "TX power [dBm] used by HeNBs",
275 ns3::MakeDoubleChecker<double> ());
277 "DL EARFCN used by macro eNBs",
279 ns3::MakeUintegerChecker<uint16_t> ());
281 "DL EARFCN used by HeNBs",
283 ns3::MakeUintegerChecker<uint16_t> ());
285 "bandwidth [num RBs] used by macro eNBs",
287 ns3::MakeUintegerChecker<uint16_t> ());
289 "bandwidth [num RBs] used by HeNBs",
291 ns3::MakeUintegerChecker<uint16_t> ());
293 "Total duration of the simulation [s]",
295 ns3::MakeDoubleChecker<double> ());
297 "if true, will generate a REM and then abort the simulation;"
298 "if false, will run the simulation normally (without generating any REM)",
300 ns3::MakeBooleanChecker ());
302 "If true, will setup the EPC to simulate an end-to-end topology, "
303 "with real IP applications over PDCP and RLC UM (or RLC AM by changing "
304 "the default value of EpsBearerToRlcMapping e.g. to RLC_AM_ALWAYS). "
305 "If false, only the LTE radio access will be simulated with RLC SM. ",
307 ns3::MakeBooleanChecker ());
309 "if true, will activate data flows in the downlink when EPC is being used. "
310 "If false, downlink flows won't be activated. "
311 "If EPC is not used, this parameter will be ignored.",
313 ns3::MakeBooleanChecker ());
315 "if true, will activate data flows in the uplink when EPC is being used. "
316 "If false, uplink flows won't be activated. "
317 "If EPC is not used, this parameter will be ignored.",
319 ns3::MakeBooleanChecker ());
321 "if true, the UdpClient application will be used. "
322 "Otherwise, the BulkSend application will be used over a TCP connection. "
323 "If EPC is not used, this parameter will be ignored.",
325 ns3::MakeBooleanChecker ());
327 "The path of the fading trace (by default no fading trace "
328 "is loaded, i.e., fading is not considered)",
330 ns3::MakeStringChecker ());
332 "How many bearers per UE there are in the simulation",
334 ns3::MakeUintegerChecker<uint16_t> ());
337 "SRS Periodicity (has to be at least greater than the number of UEs per eNB)",
339 ns3::MakeUintegerChecker<uint16_t> ());
351 cmd.
Parse (argc, argv);
355 cmd.
Parse (argc, argv);
362 GlobalValue::GetValueByName (
"nBlocks", uintegerValue);
363 uint32_t nBlocks = uintegerValue.
Get ();
364 GlobalValue::GetValueByName (
"nApartmentsX", uintegerValue);
365 uint32_t nApartmentsX = uintegerValue.
Get ();
366 GlobalValue::GetValueByName (
"nFloors", uintegerValue);
367 uint32_t nFloors = uintegerValue.
Get ();
368 GlobalValue::GetValueByName (
"nMacroEnbSites", uintegerValue);
369 uint32_t nMacroEnbSites = uintegerValue.
Get ();
370 GlobalValue::GetValueByName (
"nMacroEnbSitesX", uintegerValue);
371 uint32_t nMacroEnbSitesX = uintegerValue.
Get ();
372 GlobalValue::GetValueByName (
"interSiteDistance", doubleValue);
373 double interSiteDistance = doubleValue.
Get ();
374 GlobalValue::GetValueByName (
"areaMarginFactor", doubleValue);
375 double areaMarginFactor = doubleValue.
Get ();
376 GlobalValue::GetValueByName (
"macroUeDensity", doubleValue);
377 double macroUeDensity = doubleValue.
Get ();
378 GlobalValue::GetValueByName (
"homeEnbDeploymentRatio", doubleValue);
379 double homeEnbDeploymentRatio = doubleValue.
Get ();
380 GlobalValue::GetValueByName (
"homeEnbActivationRatio", doubleValue);
381 double homeEnbActivationRatio = doubleValue.
Get ();
382 GlobalValue::GetValueByName (
"homeUesHomeEnbRatio", doubleValue);
383 double homeUesHomeEnbRatio = doubleValue.
Get ();
384 GlobalValue::GetValueByName (
"macroEnbTxPowerDbm", doubleValue);
385 double macroEnbTxPowerDbm = doubleValue.
Get ();
386 GlobalValue::GetValueByName (
"homeEnbTxPowerDbm", doubleValue);
387 double homeEnbTxPowerDbm = doubleValue.
Get ();
388 GlobalValue::GetValueByName (
"macroEnbDlEarfcn", uintegerValue);
389 uint16_t macroEnbDlEarfcn = uintegerValue.
Get ();
390 GlobalValue::GetValueByName (
"homeEnbDlEarfcn", uintegerValue);
391 uint16_t homeEnbDlEarfcn = uintegerValue.
Get ();
392 GlobalValue::GetValueByName (
"macroEnbBandwidth", uintegerValue);
393 uint16_t macroEnbBandwidth = uintegerValue.
Get ();
394 GlobalValue::GetValueByName (
"homeEnbBandwidth", uintegerValue);
395 uint16_t homeEnbBandwidth = uintegerValue.
Get ();
396 GlobalValue::GetValueByName (
"simTime", doubleValue);
397 double simTime = doubleValue.
Get ();
398 GlobalValue::GetValueByName (
"epc", booleanValue);
399 bool epc = booleanValue.
Get ();
400 GlobalValue::GetValueByName (
"epcDl", booleanValue);
401 bool epcDl = booleanValue.
Get ();
402 GlobalValue::GetValueByName (
"epcUl", booleanValue);
403 bool epcUl = booleanValue.
Get ();
404 GlobalValue::GetValueByName (
"useUdp", booleanValue);
405 bool useUdp = booleanValue.
Get ();
406 GlobalValue::GetValueByName (
"generateRem", booleanValue);
407 bool generateRem = booleanValue.
Get ();
408 GlobalValue::GetValueByName (
"fadingTrace", stringValue);
409 std::string fadingTrace = stringValue.
Get ();
410 GlobalValue::GetValueByName (
"numBearersPerUe", uintegerValue);
411 uint16_t numBearersPerUe = uintegerValue.
Get ();
412 GlobalValue::GetValueByName (
"srsPeriodicity", uintegerValue);
413 uint16_t srsPeriodicity = uintegerValue.
Get ();
419 if (nMacroEnbSites > 0)
421 uint32_t currentSite = nMacroEnbSites -1;
422 uint32_t biRowIndex = (currentSite / (nMacroEnbSitesX + nMacroEnbSitesX + 1));
423 uint32_t biRowRemainder = currentSite % (nMacroEnbSitesX + nMacroEnbSitesX + 1);
424 uint32_t rowIndex = biRowIndex*2 + 1;
425 if (biRowRemainder >= nMacroEnbSitesX)
429 uint32_t nMacroEnbSitesY = rowIndex;
432 macroUeBox =
Box (-areaMarginFactor*interSiteDistance,
433 (nMacroEnbSitesX + areaMarginFactor)*interSiteDistance,
434 -areaMarginFactor*interSiteDistance,
435 (nMacroEnbSitesY -1)*interSiteDistance*sqrt(0.75) + areaMarginFactor*interSiteDistance,
441 macroUeBox =
Box (0, 150, 0, 150, 1.0, 2.0);
445 blockAllocator.
Create (nBlocks);
448 uint32_t nHomeEnbs = round (4 * nApartmentsX * nBlocks * nFloors * homeEnbDeploymentRatio * homeEnbActivationRatio);
450 uint32_t nHomeUes = round (nHomeEnbs * homeUesHomeEnbRatio);
452 double macroUeAreaSize = (macroUeBox.
xMax - macroUeBox.
xMin) * (macroUeBox.
yMax - macroUeBox.
yMin);
453 uint32_t nMacroUes = round (macroUeAreaSize * macroUeDensity) ;
454 NS_LOG_LOGIC (
"nMacroUes = " << nMacroUes <<
" (density=" << macroUeDensity <<
")");
457 homeEnbs.
Create (nHomeEnbs);
459 macroEnbs.
Create (3 * nMacroEnbSites);
461 homeUes.
Create (nHomeUes);
463 macroUes.
Create (nMacroUes);
481 if (!fadingTrace.empty ())
491 epcHelper = CreateObject<EpcHelper> ();
529 NS_LOG_LOGIC (
"randomly allocating macro UEs in " << macroUeBox);
530 positionAlloc = CreateObject<RandomBoxPositionAllocator> ();
549 positionAlloc = CreateObject<SameRoomPositionAllocator> (homeEnbs);
566 remoteHostContainer.
Create (1);
567 remoteHost = remoteHostContainer.
Get (0);
569 internet.
Install (remoteHostContainer);
579 ipv4h.
SetBase (
"1.0.0.0",
"255.0.0.0");
582 remoteHostAddr = internetIpIfaces.
GetAddress (1);
591 ueDevs.
Add (homeUeDevs);
592 ueDevs.
Add (macroUeDevs);
606 for (ueDevIt = homeUeDevs.
Begin ();
607 ueDevIt != homeUeDevs.
End ();
608 ++ueDevIt, ++enbDevIt)
612 if (enbDevIt == homeEnbDevs.
End ())
614 enbDevIt = homeEnbDevs.
Begin ();
616 lteHelper->
Attach (*ueDevIt, *enbDevIt);
626 uint16_t dlPort = 10000;
627 uint16_t ulPort = 20000;
647 for (uint32_t u = 0; u < ues.
GetN (); ++u)
654 for (uint32_t b = 0; b < numBearersPerUe; ++b)
668 clientApps.
Add (dlClientHelper.Install (remoteHost));
671 serverApps.
Add (dlPacketSinkHelper.
Install (ue));
680 serverApps.
Add (ulPacketSinkHelper.
Install (remoteHost));
691 clientApps.
Add (dlClientHelper.
Install (remoteHost));
694 serverApps.
Add (dlPacketSinkHelper.
Install (ue));
705 serverApps.
Add (ulPacketSinkHelper.
Install (remoteHost));
727 EpsBearer bearer (EpsBearer::NGBR_VIDEO_TCP_DEFAULT);
731 serverApps.
Start (startTime);
732 clientApps.
Start (startTime);
742 ueDevs.
Add (homeUeDevs);
743 ueDevs.
Add (macroUeDevs);
744 for (uint32_t u = 0; u < ueDevs.
GetN (); ++u)
747 for (uint32_t b = 0; b < numBearersPerUe; ++b)
756 BuildingsHelper::MakeMobilityModelConsistent ();
765 remHelper = CreateObject<RadioEnvironmentMapHelper> ();
780 Simulator::Stop (
Seconds (simTime));
796 Simulator::Destroy ();