21 #include "ns3/core-module.h"
22 #include "ns3/network-module.h"
23 #include "ns3/mobility-module.h"
24 #include "ns3/lte-module.h"
25 #include "ns3/config-store.h"
26 #include <ns3/buildings-propagation-loss-model.h>
27 #include <ns3/buildings-helper.h>
28 #include <ns3/radio-environment-map-helper.h>
38 main (
int argc,
char *argv[])
41 cmd.
Parse (argc, argv);
46 cmd.
Parse (argc, argv);
50 double nodeHeight = 1.5;
51 double roomHeight = 3;
52 double roomLength = 500;
55 uint32_t nEnb = nRooms*nRooms + 4;
66 vector < NodeContainer > ueNodes;
68 oneSectorNodes.
Create (nEnb-3);
69 threeSectorNodes.
Create (3);
71 enbNodes.
Add (oneSectorNodes);
72 enbNodes.
Add (threeSectorNodes);
74 for (uint32_t i = 0; i < nEnb; i++)
78 ueNodes.push_back (ueNode);
82 vector<Vector> enbPosition;
85 building = Create<Building> ();
87 0.0, nRooms * roomLength,
91 building->SetNFloors (1);
92 building->SetNRoomsX (nRooms);
93 building->SetNRoomsY (nRooms);
97 uint32_t plantedEnb = 0;
98 for (uint32_t row = 0; row < nRooms; row++)
100 for (uint32_t column = 0; column < nRooms; column++, plantedEnb++)
102 Vector v (roomLength * (column + 0.5),
103 roomLength * (row + 0.5),
105 positionAlloc->
Add (v);
106 enbPosition.push_back (v);
113 Vector v (500, 3000, nodeHeight);
114 positionAlloc->
Add (v);
115 enbPosition.push_back (v);
116 mobility.
Install (ueNodes.at(plantedEnb));
120 for (uint32_t index = 0; index < 3; index++, plantedEnb++)
122 Vector v (500, 2000, nodeHeight);
123 positionAlloc->
Add (v);
124 enbPosition.push_back (v);
125 mobility.
Install (ueNodes.at(plantedEnb));
133 for (uint32_t i = 0; i < nEnb; i++)
141 positionAlloc = CreateObject<ListPositionAllocator> ();
142 for (uint32_t j = 0; j < nUe; j++)
146 positionAlloc->
Add (
Vector (enbPosition.at(i).x + 10, enbPosition.at(i).y, nodeHeight));
148 else if ( i == nEnb - 2 )
150 positionAlloc->
Add (
Vector (enbPosition.at(i).x - std::sqrt (10), enbPosition.at(i).y + std::sqrt (10), nodeHeight));
152 else if ( i == nEnb - 1 )
154 positionAlloc->
Add (
Vector (enbPosition.at(i).x - std::sqrt (10), enbPosition.at(i).y - std::sqrt (10), nodeHeight));
162 mobility.
Install (ueNodes.at(i));
168 vector < NetDeviceContainer > ueDevs;
197 for (uint32_t i = 0; i < nEnb; i++)
200 ueDevs.push_back (ueDev);
201 lteHelper->
Attach (ueDev, enbDevs.
Get (i));