21 #include "ns3/simulator.h"
25 #include "ns3/spectrum-test.h"
27 #include "ns3/lte-phy-tag.h"
28 #include "ns3/lte-sinr-chunk-processor.h"
31 #include <ns3/hybrid-buildings-propagation-loss-model.h>
32 #include <ns3/node-container.h>
33 #include <ns3/mobility-helper.h>
34 #include <ns3/buildings-helper.h>
35 #include <ns3/lte-helper.h>
36 #include <ns3/single-model-spectrum-channel.h>
37 #include "ns3/string.h"
38 #include "ns3/double.h"
39 #include <ns3/building.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/lte-enb-phy.h>
47 #include <ns3/lte-ue-phy.h>
70 uint32_t frameNo, uint32_t subframeNo, uint16_t rnti,
71 uint8_t mcsTb1, uint16_t sizeTb1, uint8_t mcsTb2, uint16_t sizeTb2)
73 testcase->
DlScheduling (frameNo, subframeNo, rnti, mcsTb1, sizeTb1, mcsTb2, sizeTb2);
79 :
TestSuite (
"lte-pathloss-model", SYSTEM)
91 struct SnrEfficiencyMcs
102 SnrEfficiencyMcs snrEfficiencyMcs[] = {
103 { -5.00000, 0.08024, -1},
104 { -4.00000, 0.10030, -1},
105 { -3.00000, 0.12518, -1},
106 { -2.00000, 0.15589, 0},
107 { -1.00000, 0.19365, 0},
108 { 0.00000, 0.23983, 2},
109 { 1.00000, 0.29593, 2},
110 { 2.00000, 0.36360, 2},
111 { 3.00000, 0.44451, 4},
112 { 4.00000, 0.54031, 4},
113 { 5.00000, 0.65251, 6},
114 { 6.00000, 0.78240, 6},
115 { 7.00000, 0.93086, 8},
116 { 8.00000, 1.09835, 8},
117 { 9.00000, 1.28485, 10},
118 { 10.00000, 1.48981, 12},
119 { 11.00000, 1.71229, 12},
120 { 12.00000, 1.95096, 14},
121 { 13.00000, 2.20429, 14},
122 { 14.00000, 2.47062, 16},
123 { 15.00000, 2.74826, 18},
124 { 16.00000, 3.03560, 18},
125 { 17.00000, 3.33115, 20},
126 { 18.00000, 3.63355, 20},
127 { 19.00000, 3.94163, 22},
128 { 20.00000, 4.25439, 22},
129 { 21.00000, 4.57095, 24},
130 { 22.00000, 4.89060, 24},
131 { 23.00000, 5.21276, 26},
132 { 24.00000, 5.53693, 26},
133 { 25.00000, 5.86271, 28},
134 { 26.00000, 6.18980, 28},
135 { 27.00000, 6.51792, 28},
136 { 28.00000, 6.84687, 28},
137 { 29.00000, 7.17649, 28},
138 { 30.00000, 7.50663, 28},
142 double txPowerDbm = 30;
143 double txPowerLin = std::pow (10, (txPowerDbm - 30)/10);
145 double noisePowerDbm = ktDbm + 10 * std::log10 (25 * 180000);
146 double receiverNoiseFigureDb = 9.0;
147 double noiseLin = std::pow (10, (noisePowerDbm-30+receiverNoiseFigureDb)/10);
151 double loss[] = {81.062444, 134.078605, 144.259958};
152 double dist[] = {100.0, 500.0, 1500};
154 int numOfTests =
sizeof (loss) /
sizeof (
double);
155 for (
int i = 0 ; i < numOfTests; i++ )
158 double sinrLin = (txPowerLin/(pow(10, loss[i]/10))) / noiseLin;
160 double sinrDb = 10 * std::log10 (sinrLin);
161 NS_LOG_INFO (
" Ptx " << txPowerDbm <<
" Pn " << noisePowerDbm <<
" Fn " << receiverNoiseFigureDb <<
" Pl " << loss[i] <<
" dist " << dist[i]);
164 int numSnrEfficiencyMcsEntries =
sizeof (snrEfficiencyMcs) /
sizeof (SnrEfficiencyMcs);
165 for (
int j = 0; j < numSnrEfficiencyMcsEntries && snrEfficiencyMcs[j].snrDb < sinrDb; ++j)
167 mcs = snrEfficiencyMcs[j].mcsIndex;
170 std::ostringstream name;
171 name <<
" snr= " << sinrDb <<
" dB, "
172 <<
" mcs= " << snrEfficiencyMcs[i].mcsIndex;
191 m_mcsIndex (mcsIndex)
193 std::ostringstream sstream1, sstream2;
194 sstream1 <<
" snr=" << snrDb
195 <<
" mcs=" << mcsIndex <<
" distance=" << dist;
197 NS_LOG_INFO (
"Creating LtePathlossModelSystemTestCase: " + sstream1.str ());
255 enbPhy->SetAttribute (
"NoiseFigure",
DoubleValue (5.0));
259 uePhy->SetAttribute (
"TxPower",
DoubleValue (23.0));
260 uePhy->SetAttribute (
"NoiseFigure",
DoubleValue (9.0));
264 lteHelper->
Attach (ueDevs, enbDevs.
Get (0));
276 uePhy->GetDownlinkSpectrumPhy ()->AddCtrlSinrChunkProcessor (testSinr);
284 double calculatedSinrDb = 10.0 * std::log10 (testSinr->GetSinr ()->operator[] (0));
293 uint8_t mcsTb1, uint16_t sizeTb1, uint8_t mcsTb2, uint16_t sizeTb2)
295 static bool firstTime =
true;