27 #include <ns3/object.h>
28 #include <ns3/spectrum-interference.h>
29 #include <ns3/spectrum-error-model.h>
32 #include <ns3/simulator.h>
33 #include <ns3/packet.h>
35 #include "ns3/radio-bearer-stats-calculator.h"
36 #include <ns3/constant-position-mobility-model.h>
37 #include <ns3/eps-bearer.h>
38 #include <ns3/node-container.h>
39 #include <ns3/mobility-helper.h>
40 #include <ns3/net-device-container.h>
41 #include <ns3/lte-ue-net-device.h>
42 #include <ns3/lte-enb-net-device.h>
43 #include <ns3/lte-ue-rrc.h>
44 #include <ns3/lte-helper.h>
45 #include "ns3/string.h"
46 #include "ns3/double.h"
47 #include <ns3/lte-enb-phy.h>
48 #include <ns3/lte-ue-phy.h>
49 #include <ns3/boolean.h>
59 :
TestSuite (
"lte-tdbet-ff-mac-scheduler", SYSTEM)
61 NS_LOG_INFO (
"creating LenaTestTdBetFfMacSchedulerSuite");
63 bool errorModel =
false;
150 std::vector<uint16_t> dist;
152 dist.push_back (4800);
153 dist.push_back (6000);
154 dist.push_back (10000);
155 dist.push_back (20000);
156 std::vector<uint32_t> estAchievableRateDl;
157 estAchievableRateDl.push_back (2196000);
158 estAchievableRateDl.push_back (1383000);
159 estAchievableRateDl.push_back (775000);
160 estAchievableRateDl.push_back (421000);
161 estAchievableRateDl.push_back (421000);
162 std::vector<uint32_t> estThrTdBetUl;
163 estThrTdBetUl.push_back (469000);
164 estThrTdBetUl.push_back (157000);
165 estThrTdBetUl.push_back (125000);
166 estThrTdBetUl.push_back (85000);
167 estThrTdBetUl.push_back (26000);
180 std::ostringstream oss;
181 oss << nUser <<
" UEs, distance " << dist <<
" m";
186 :
TestCase (BuildNameString (nUser, dist)),
190 m_thrRefDl (thrRefDl),
191 m_thrRefUl (thrRefUl),
192 m_errorModelEnabled (errorModelEnabled)
240 lteHelper->
Attach (ueDevs, enbDevs.
Get (0));
250 enbPhy->SetAttribute (
"NoiseFigure",
DoubleValue (5.0));
253 for (
int i = 0; i <
m_nUser; i++)
259 uePhy->SetAttribute (
"TxPower",
DoubleValue (23.0));
260 uePhy->SetAttribute (
"NoiseFigure",
DoubleValue (9.0));
263 double statsStartTime = 0.300;
264 double statsDuration = 0.6;
265 double tolerance = 0.1;
282 std::vector <uint64_t> dlDataRxed;
283 for (
int i = 0; i <
m_nUser; i++)
289 dlDataRxed.push_back (rlcStats->
GetDlRxData (imsi, lcId));
290 NS_LOG_INFO (
"\tUser " << i <<
" imsi " << imsi <<
" bytes rxed " << (
double)dlDataRxed.at (i) <<
" thr " << (double)dlDataRxed.at (i) / statsDuration <<
" ref " <<
m_thrRefDl);
298 for (
int i = 0; i <
m_nUser; i++)
307 std::vector <uint64_t> ulDataRxed;
308 for (
int i = 0; i <
m_nUser; i++)
314 ulDataRxed.push_back (rlcStats->
GetUlRxData (imsi, lcId));
315 NS_LOG_INFO (
"\tUser " << i <<
" imsi " << imsi <<
" bytes rxed " << (
double)ulDataRxed.at (i) <<
" thr " << (double)ulDataRxed.at (i) / statsDuration <<
" ref " <<
m_thrRefUl);
323 for (
int i = 0; i <
m_nUser; i++)
339 std::ostringstream oss;
340 oss <<
"distances (m) = [ " ;
341 for (std::vector<uint16_t>::iterator it = dist.begin (); it != dist.end (); ++it)
351 :
TestCase (BuildNameString (dist.size (), dist)),
352 m_nUser (dist.size ()),
354 m_achievableRateDl (estAchievableRateDl),
355 m_estThrTdBetUl (estThrTdBetUl),
356 m_errorModelEnabled (errorModelEnabled)
406 lteHelper->
Attach (ueDevs, enbDevs.
Get (0));
416 enbPhy->SetAttribute (
"NoiseFigure",
DoubleValue (5.0));
419 for (
int i = 0; i <
m_nUser; i++)
425 uePhy->SetAttribute (
"TxPower",
DoubleValue (23.0));
426 uePhy->SetAttribute (
"NoiseFigure",
DoubleValue (9.0));
430 double statsStartTime = 0.300;
431 double statsDuration = 0.4;
432 double tolerance = 0.1;
443 NS_LOG_INFO (
"DL - Test with " << m_nUser <<
" user(s)");
444 std::vector <uint64_t> dlDataRxed;
445 double totalData = 0;
446 double estTotalThr = 0;
448 for (
int i = 0; i <
m_nUser; i++)
454 dlDataRxed.push_back (rlcStats->
GetDlRxData (imsi, lcId));
455 totalData += (double)dlDataRxed.at (i);
457 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_nUser);
460 estTotalThr = m_nUser * (1 / estTotalThr);
461 estUeThr = estTotalThr /
m_nUser;
466 for (
int i = 0; i <
m_nUser; i++)
468 double thrRatio = (double) 1 / m_nUser;
469 double estThrRatio = (double)dlDataRxed.at (i) / totalData;
470 NS_LOG_INFO (
"\tUser " << i <<
" thrRatio " << thrRatio <<
" estThrRatio " << estThrRatio);
472 NS_TEST_ASSERT_MSG_EQ_TOL ((
double)dlDataRxed.at (i) / statsDuration, estUeThr, estUeThr * tolerance,
" Unfair Throughput!");
481 std::vector <uint64_t> ulDataRxed;
482 for (
int i = 0; i <
m_nUser; i++)
488 ulDataRxed.push_back (rlcStats->
GetUlRxData (imsi, lcId));
489 NS_LOG_INFO (
"\tUser " << i <<
" dist " <<
m_dist.at (i) <<
" bytes rxed " << (double)ulDataRxed.at (i) <<
" thr " << (double)ulDataRxed.at (i) / statsDuration <<
" ref " << (double)
m_estThrTdBetUl.at (i));