26#include <ns3/boolean.h>
27#include <ns3/integer.h>
30#include <ns3/pointer.h>
31#include <ns3/simulator.h>
52 : m_cschedSapUser(nullptr),
53 m_schedSapUser(nullptr),
57 m_amc = CreateObject<LteAmc>();
89 TypeId(
"ns3::TdTbfqFfMacScheduler")
93 .AddAttribute(
"CqiTimerThreshold",
94 "The number of TTIs a CQI is valid (default 1000 - 1 sec.)",
97 MakeUintegerChecker<uint32_t>())
98 .AddAttribute(
"DebtLimit",
99 "Flow debt limit (default -625000 bytes)",
102 MakeIntegerChecker<int>())
103 .AddAttribute(
"CreditLimit",
104 "Flow credit limit (default 625000 bytes)",
107 MakeUintegerChecker<uint32_t>())
108 .AddAttribute(
"TokenPoolSize",
109 "The maximum value of flow token pool (default 1 bytes)",
112 MakeUintegerChecker<uint32_t>())
113 .AddAttribute(
"CreditableThreshold",
114 "Threshold of flow credit (default 0 bytes)",
117 MakeUintegerChecker<uint32_t>())
119 .AddAttribute(
"HarqEnabled",
120 "Activate/Deactivate the HARQ [by default is active].",
124 .AddAttribute(
"UlGrantMcs",
125 "The MCS of the UL grant, must be [0..15] (default 0)",
128 MakeUintegerChecker<uint8_t>());
186 << (uint16_t)params.m_transmissionMode);
187 std::map<uint16_t, uint8_t>::iterator it =
m_uesTxMode.find(params.m_rnti);
190 m_uesTxMode.insert(std::pair<uint16_t, double>(params.m_rnti, params.m_transmissionMode));
194 dlHarqPrcStatus.resize(8, 0);
196 std::pair<uint16_t, DlHarqProcessesStatus_t>(params.m_rnti, dlHarqPrcStatus));
198 dlHarqProcessesTimer.resize(8, 0);
200 std::pair<uint16_t, DlHarqProcessesTimer_t>(params.m_rnti, dlHarqProcessesTimer));
204 std::pair<uint16_t, DlHarqProcessesDciBuffer_t>(params.m_rnti, dlHarqdci));
206 dlHarqRlcPdu.resize(2);
207 dlHarqRlcPdu.at(0).resize(8);
208 dlHarqRlcPdu.at(1).resize(8);
210 std::pair<uint16_t, DlHarqRlcPduListBuffer_t>(params.m_rnti, dlHarqRlcPdu));
213 ulHarqPrcStatus.resize(8, 0);
215 std::pair<uint16_t, UlHarqProcessesStatus_t>(params.m_rnti, ulHarqPrcStatus));
219 std::pair<uint16_t, UlHarqProcessesDciBuffer_t>(params.m_rnti, ulHarqdci));
223 (*it).second = params.m_transmissionMode;
233 std::map<uint16_t, tdtbfqsFlowPerf_t>::iterator it;
234 for (std::size_t i = 0; i < params.m_logicalChannelConfigList.size(); i++)
240 uint64_t mbrDlInBytes =
241 params.m_logicalChannelConfigList.at(i).m_eRabMaximulBitrateDl / 8;
242 uint64_t mbrUlInBytes =
243 params.m_logicalChannelConfigList.at(i).m_eRabMaximulBitrateUl / 8;
256 std::pair<uint16_t, tdtbfqsFlowPerf_t>(params.m_rnti, flowStatsDl));
268 std::pair<uint16_t, tdtbfqsFlowPerf_t>(params.m_rnti, flowStatsUl));
273 uint64_t mbrDlInBytes =
274 params.m_logicalChannelConfigList.at(i).m_eRabMaximulBitrateDl / 8;
275 uint64_t mbrUlInBytes =
276 params.m_logicalChannelConfigList.at(i).m_eRabMaximulBitrateUl / 8;
277 m_flowStatsDl[(*it).first].tokenGenerationRate = mbrDlInBytes;
278 m_flowStatsUl[(*it).first].tokenGenerationRate = mbrUlInBytes;
288 for (std::size_t i = 0; i < params.m_logicalChannelIdentity.size(); i++)
290 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator it =
292 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator temp;
295 if (((*it).first.m_rnti == params.m_rnti) &&
296 ((*it).first.m_lcId == params.m_logicalChannelIdentity.at(i)))
328 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator it =
330 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator temp;
333 if ((*it).first.m_rnti == params.m_rnti)
357 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator it;
359 LteFlowId_t flow(params.m_rnti, params.m_logicalChannelIdentity);
366 std::pair<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>(flow,
371 (*it).second = params;
394 for (
int i = 0; i < 4; i++)
408 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator it;
409 unsigned int lcActive = 0;
412 if (((*it).first.m_rnti == rnti) && (((*it).second.m_rlcTransmissionQueueSize > 0) ||
413 ((*it).second.m_rlcRetransmissionQueueSize > 0) ||
414 ((*it).second.m_rlcStatusPduSize > 0)))
418 if ((*it).first.m_rnti > rnti)
436 std::map<uint16_t, DlHarqProcessesStatus_t>::iterator itStat =
440 NS_FATAL_ERROR(
"No Process Id Statusfound for this RNTI " << rnti);
442 uint8_t i = (*it).second;
446 }
while (((*itStat).second.at(i) != 0) && (i != (*it).second));
448 return (*itStat).second.at(i) == 0;
466 std::map<uint16_t, DlHarqProcessesStatus_t>::iterator itStat =
470 NS_FATAL_ERROR(
"No Process Id Statusfound for this RNTI " << rnti);
472 uint8_t i = (*it).second;
476 }
while (((*itStat).second.at(i) != 0) && (i != (*it).second));
477 if ((*itStat).second.at(i) == 0)
480 (*itStat).second.at(i) = 1;
485 << rnti <<
" check before update with HarqProcessAvailability");
488 return ((*it).second);
496 std::map<uint16_t, DlHarqProcessesTimer_t>::iterator itTimers;
506 NS_LOG_DEBUG(
this <<
" Reset HARQ proc " << i <<
" for RNTI " << (*itTimers).first);
507 std::map<uint16_t, DlHarqProcessesStatus_t>::iterator itStat =
512 << (*itTimers).first);
514 (*itStat).second.at(i) = 0;
515 (*itTimers).second.at(i) = 0;
519 (*itTimers).second.at(i)++;
529 NS_LOG_FUNCTION(
this <<
" Frame no. " << (params.m_sfnSf >> 4) <<
" subframe no. "
530 << (0xF & params.m_sfnSf));
541 std::map<uint16_t, std::vector<uint16_t>> allocationMap;
542 std::vector<bool> rbgMap;
543 uint16_t rbgAllocatedNum = 0;
544 std::set<uint16_t> rntiAllocated;
548 for (std::vector<bool>::iterator it = rbgMap.begin(); it != rbgMap.end(); it++)
559 std::map<uint16_t, uint8_t>::iterator itProcId;
563 (*itProcId).second = ((*itProcId).second + 1) %
HARQ_PROC_NUM;
567 std::vector<bool> ulRbMap;
570 uint8_t maxContinuousUlBandwidth = 0;
571 uint8_t tmpMinBandwidth = 0;
572 uint16_t ffrRbStartOffset = 0;
573 uint16_t tmpFfrRbStartOffset = 0;
576 for (std::vector<bool>::iterator it = ulRbMap.begin(); it != ulRbMap.end(); it++)
580 if (tmpMinBandwidth > maxContinuousUlBandwidth)
582 maxContinuousUlBandwidth = tmpMinBandwidth;
583 ffrRbStartOffset = tmpFfrRbStartOffset;
589 if (tmpMinBandwidth == 0)
591 tmpFfrRbStartOffset = index;
598 if (tmpMinBandwidth > maxContinuousUlBandwidth)
600 maxContinuousUlBandwidth = tmpMinBandwidth;
601 ffrRbStartOffset = tmpFfrRbStartOffset;
605 uint16_t rbStart = 0;
606 rbStart = ffrRbStartOffset;
607 std::vector<RachListElement_s>::iterator itRach;
611 (*itRach).m_estimatedSize,
612 " Default UL Grant MCS does not allow to send RACH messages");
614 newRar.
m_rnti = (*itRach).m_rnti;
621 uint16_t tbSizeBits = 0;
623 while ((tbSizeBits < (*itRach).m_estimatedSize) &&
624 (rbStart + rbLen < (ffrRbStartOffset + maxContinuousUlBandwidth)))
629 if (tbSizeBits < (*itRach).m_estimatedSize)
641 NS_LOG_INFO(
this <<
" UL grant allocated to RNTI " << (*itRach).m_rnti <<
" rbStart "
642 << rbStart <<
" rbLen " << rbLen <<
" MCS " <<
m_ulGrantMcs <<
" tbSize "
644 for (uint16_t i = rbStart; i < rbStart + rbLen; i++)
672 std::map<uint16_t, uint8_t>::iterator itProcId;
678 harqId = (*itProcId).second;
679 std::map<uint16_t, UlHarqProcessesDciBuffer_t>::iterator itDci =
683 NS_FATAL_ERROR(
"Unable to find RNTI entry in UL DCI HARQ buffer for RNTI "
686 (*itDci).second.at(harqId) = uldci;
689 rbStart = rbStart + rbLen;
699 if (!params.m_dlInfoList.empty())
703 params.m_dlInfoList.begin(),
704 params.m_dlInfoList.end());
709 if (!params.m_dlInfoList.empty())
719 std::vector<DlInfoListElement_s> dlInfoListUntxed;
723 if (itRnti != rntiAllocated.end())
729 std::vector<bool> retx;
730 NS_LOG_INFO(
this <<
" Processing DLHARQ feedback");
735 retx.push_back(
false);
744 if (retx.at(0) || retx.at(1))
749 NS_LOG_INFO(
this <<
" HARQ retx RNTI " << rnti <<
" harqId " << (uint16_t)harqId);
750 std::map<uint16_t, DlHarqProcessesDciBuffer_t>::iterator itHarq =
759 if (dci.
m_rv.size() == 1)
771 NS_LOG_INFO(
"Maximum number of retransmissions reached -> drop process");
772 std::map<uint16_t, DlHarqProcessesStatus_t>::iterator it =
776 NS_LOG_ERROR(
"No info find in HARQ buffer for UE (might change eNB) "
779 (*it).second.at(harqId) = 0;
780 std::map<uint16_t, DlHarqRlcPduListBuffer_t>::iterator itRlcPdu =
784 NS_FATAL_ERROR(
"Unable to find RlcPdcList in HARQ buffer for RNTI "
787 for (std::size_t k = 0; k < (*itRlcPdu).second.size(); k++)
789 (*itRlcPdu).second.at(k).at(harqId).clear();
795 std::vector<int> dciRbg;
798 for (
int j = 0; j < 32; j++)
808 for (std::size_t j = 0; j < dciRbg.size(); j++)
810 if (rbgMap.at(dciRbg.at(j)))
820 for (std::size_t j = 0; j < dciRbg.size(); j++)
822 rbgMap.at(dciRbg.at(j)) =
true;
823 NS_LOG_INFO(
"RBG " << dciRbg.at(j) <<
" assigned");
827 NS_LOG_INFO(
this <<
" Send retx in the same RBGs");
833 uint8_t rbgId = (dciRbg.at(dciRbg.size() - 1) + 1) % rbgNum;
834 uint8_t startRbg = dciRbg.at(dciRbg.size() - 1);
835 std::vector<bool> rbgMapCopy = rbgMap;
836 while ((j < dciRbg.size()) && (startRbg != rbgId))
838 if (!rbgMapCopy.at(rbgId))
840 rbgMapCopy.at(rbgId) =
true;
841 dciRbg.at(j) = rbgId;
844 rbgId = (rbgId + 1) % rbgNum;
846 if (j == dciRbg.size())
850 for (std::size_t k = 0; k < dciRbg.size(); k++)
852 rbgMask = rbgMask + (0x1 << dciRbg.at(k));
857 NS_LOG_INFO(
this <<
" Move retx in RBGs " << dciRbg.size());
863 NS_LOG_INFO(
this <<
" No resource for this retx -> buffer it");
868 std::map<uint16_t, DlHarqRlcPduListBuffer_t>::iterator itRlcPdu =
872 NS_FATAL_ERROR(
"Unable to find RlcPdcList in HARQ buffer for RNTI " << rnti);
874 for (std::size_t j = 0; j < nLayers; j++)
878 if (j >= dci.
m_ndi.size())
881 dci.
m_ndi.push_back(0);
882 dci.
m_rv.push_back(0);
883 dci.
m_mcs.push_back(0);
886 <<
" no txed (MIMO transition)");
892 (*itHarq).second.at(harqId).m_rv.at(j)++;
893 NS_LOG_INFO(
this <<
" layer " << (uint16_t)j <<
" RV "
894 << (uint16_t)dci.
m_rv.at(j));
904 NS_LOG_INFO(
this <<
" layer " << (uint16_t)j <<
" no retx");
907 for (std::size_t k = 0; k < (*itRlcPdu).second.at(0).at(dci.
m_harqProcess).size(); k++)
909 std::vector<RlcPduListElement_s> rlcPduListPerLc;
910 for (std::size_t j = 0; j < nLayers; j++)
914 if (j < dci.
m_ndi.size())
916 NS_LOG_INFO(
" layer " << (uint16_t)j <<
" tb size "
918 rlcPduListPerLc.push_back(
931 .m_logicalChannelIdentity;
933 rlcPduListPerLc.push_back(emptyElement);
937 if (!rlcPduListPerLc.empty())
944 (*itHarq).second.at(harqId).
m_rv = dci.
m_rv;
946 std::map<uint16_t, DlHarqProcessesTimer_t>::iterator itHarqTimer =
950 NS_FATAL_ERROR(
"Unable to find HARQ timer for RNTI " << (uint16_t)rnti);
952 (*itHarqTimer).second.at(harqId) = 0;
954 rntiAllocated.insert(rnti);
960 std::map<uint16_t, DlHarqProcessesStatus_t>::iterator it =
968 std::map<uint16_t, DlHarqRlcPduListBuffer_t>::iterator itRlcPdu =
972 NS_FATAL_ERROR(
"Unable to find RlcPdcList in HARQ buffer for RNTI "
975 for (std::size_t k = 0; k < (*itRlcPdu).second.size(); k++)
984 if (rbgAllocatedNum == rbgNum)
995 std::map<uint16_t, tdtbfqsFlowPerf_t>::iterator itStats;
998 if ((*itStats).second.tokenGenerationRate / 1000 + (*itStats).second.tokenPoolSize >
999 (*itStats).second.maxTokenPoolSize)
1001 (*itStats).second.counter +=
1002 (*itStats).second.tokenGenerationRate / 1000 -
1003 ((*itStats).second.maxTokenPoolSize - (*itStats).second.tokenPoolSize);
1004 (*itStats).second.tokenPoolSize = (*itStats).second.maxTokenPoolSize;
1005 bankSize += (*itStats).second.tokenGenerationRate / 1000 -
1006 ((*itStats).second.maxTokenPoolSize - (*itStats).second.tokenPoolSize);
1010 (*itStats).second.tokenPoolSize += (*itStats).second.tokenGenerationRate / 1000;
1015 std::map<uint16_t, tdtbfqsFlowPerf_t>::iterator it;
1016 std::map<uint16_t, tdtbfqsFlowPerf_t>::iterator itMax =
m_flowStatsDl.end();
1017 double metricMax = 0.0;
1018 bool firstRnti =
true;
1021 std::set<uint16_t>::iterator itRnti = rntiAllocated.find((*it).first);
1025 if (itRnti != rntiAllocated.end())
1027 NS_LOG_DEBUG(
this <<
" RNTI discarded for HARQ tx" << (uint16_t)(*it).first);
1031 NS_LOG_DEBUG(
this <<
" RNTI discarded for HARQ id" << (uint16_t)(*it).first);
1037 std::map<uint16_t, SbMeasResult_s>::iterator itCqi;
1039 std::map<uint16_t, uint8_t>::iterator itTxMode;
1043 NS_FATAL_ERROR(
"No Transmission Mode info on user " << (*it).first);
1048 for (
int k = 0; k < rbgNum; k++)
1050 for (uint8_t j = 0; j < nLayer; j++)
1058 cqiSum += (*itCqi).second.m_higherLayerSelected.at(k).m_sbCqi.at(j);
1065 NS_LOG_INFO(
"Skip this flow, CQI==0, rnti:" << (*it).first);
1077 (((
double)(*it).second.counter) / ((
double)(*it).second.tokenGenerationRate));
1086 if (metric > metricMax)
1102 std::vector<uint16_t> tempMap;
1103 for (
int i = 0; i < rbgNum; i++)
1115 tempMap.push_back(i);
1116 rbgMap.at(i) =
true;
1118 if (!tempMap.empty())
1120 allocationMap.insert(
1121 std::pair<uint16_t, std::vector<uint16_t>>((*itMax).first, tempMap));
1127 std::map<uint16_t, std::vector<uint16_t>>::iterator itMap = allocationMap.begin();
1128 while (itMap != allocationMap.end())
1132 newEl.
m_rnti = (*itMap).first;
1135 newDci.
m_rnti = (*itMap).first;
1143 lcActives = (uint16_t)65535;
1145 uint16_t RgbPerRnti = (*itMap).second.size();
1146 std::map<uint16_t, SbMeasResult_s>::iterator itCqi;
1148 std::map<uint16_t, uint8_t>::iterator itTxMode;
1152 NS_FATAL_ERROR(
"No Transmission Mode info on user " << (*itMap).first);
1155 std::vector<uint8_t> worstCqi(2, 15);
1158 for (std::size_t k = 0; k < (*itMap).second.size(); k++)
1160 if ((*itCqi).second.m_higherLayerSelected.size() > (*itMap).second.at(k))
1162 for (uint8_t j = 0; j < nLayer; j++)
1165 .
second.m_higherLayerSelected.at((*itMap).second.at(k))
1166 .m_sbCqi.size() > j)
1169 .
second.m_higherLayerSelected.at((*itMap).second.at(k))
1170 .m_sbCqi.at(j)) < worstCqi.at(j))
1174 .second.m_higherLayerSelected.at((*itMap).second.at(k))
1187 for (uint8_t j = 0; j < nLayer; j++)
1196 for (uint8_t j = 0; j < nLayer; j++)
1202 for (uint8_t j = 0; j < nLayer; j++)
1204 newDci.
m_mcs.push_back(
m_amc->GetMcsFromCqi(worstCqi.at(j)));
1205 int tbSize = (
m_amc->GetDlTbSizeFromMcs(newDci.
m_mcs.at(j), RgbPerRnti * rbgSize) /
1208 bytesTxed += tbSize;
1214 for (std::size_t k = 0; k < (*itMap).second.size(); k++)
1216 rbgMask = rbgMask + (0x1 << (*itMap).second.at(k));
1217 NS_LOG_INFO(
this <<
" Allocated RBG " << (*itMap).second.at(k));
1222 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator
1226 if (((*itBufReq).first.m_rnti == (*itMap).first) &&
1227 (((*itBufReq).second.m_rlcTransmissionQueueSize > 0) ||
1228 ((*itBufReq).second.m_rlcRetransmissionQueueSize > 0) ||
1229 ((*itBufReq).second.m_rlcStatusPduSize > 0)))
1231 std::vector<RlcPduListElement_s> newRlcPduLe;
1232 for (uint8_t j = 0; j < nLayer; j++)
1238 <<
" size " << newRlcEl.
m_size <<
" layer " << (uint16_t)j);
1239 newRlcPduLe.push_back(newRlcEl);
1246 std::map<uint16_t, DlHarqRlcPduListBuffer_t>::iterator itRlcPdu =
1250 NS_FATAL_ERROR(
"Unable to find RlcPdcList in HARQ buffer for RNTI "
1253 (*itRlcPdu).second.at(j).at(newDci.
m_harqProcess).push_back(newRlcEl);
1258 if ((*itBufReq).first.m_rnti > (*itMap).first)
1263 for (uint8_t j = 0; j < nLayer; j++)
1265 newDci.
m_ndi.push_back(1);
1266 newDci.
m_rv.push_back(0);
1271 newEl.
m_dci = newDci;
1276 std::map<uint16_t, DlHarqProcessesDciBuffer_t>::iterator itDci =
1280 NS_FATAL_ERROR(
"Unable to find RNTI entry in DCI HARQ buffer for RNTI "
1285 std::map<uint16_t, DlHarqProcessesTimer_t>::iterator itHarqTimer =
1295 if (bytesTxed <= (*itMax).second.tokenPoolSize)
1297 (*itMax).second.tokenPoolSize -= bytesTxed;
1301 (*itMax).second.counter =
1302 (*itMax).second.counter - (bytesTxed - (*itMax).second.tokenPoolSize);
1303 (*itMax).second.tokenPoolSize = 0;
1304 if (
bankSize <= (bytesTxed - (*itMax).second.tokenPoolSize))
1341 for (
unsigned int i = 0; i < params.m_cqiList.size(); i++)
1347 std::map<uint16_t, uint8_t>::iterator it;
1348 uint16_t rnti = params.m_cqiList.at(i).m_rnti;
1355 params.m_cqiList.at(i).m_wbCqi.at(0)));
1362 (*it).second = params.m_cqiList.at(i).m_wbCqi.at(0);
1364 std::map<uint16_t, uint32_t>::iterator itTimers;
1372 std::map<uint16_t, SbMeasResult_s>::iterator it;
1373 uint16_t rnti = params.m_cqiList.at(i).m_rnti;
1379 std::pair<uint16_t, SbMeasResult_s>(rnti,
1380 params.m_cqiList.at(i).m_sbMeasResult));
1386 (*it).second = params.m_cqiList.at(i).m_sbMeasResult;
1387 std::map<uint16_t, uint32_t>::iterator itTimers;
1402 std::map<uint16_t, std::vector<double>>::iterator itCqi =
m_ueCqi.find(rnti);
1412 unsigned int sinrNum = 0;
1415 double sinr = (*itCqi).second.at(i);
1422 double estimatedSinr = (sinrNum > 0) ? (sinrSum / sinrNum) : DBL_MAX;
1424 (*itCqi).second.at(rb) = estimatedSinr;
1425 return (estimatedSinr);
1433 NS_LOG_FUNCTION(
this <<
" UL - Frame no. " << (params.m_sfnSf >> 4) <<
" subframe no. "
1434 << (0xF & params.m_sfnSf) <<
" size " << params.m_ulInfoList.size());
1441 std::vector<bool> rbMap;
1442 uint16_t rbAllocatedNum = 0;
1443 std::set<uint16_t> rntiAllocated;
1444 std::vector<uint16_t> rbgAllocationMap;
1455 for (std::vector<bool>::iterator it = rbMap.begin(); it != rbMap.end(); it++)
1469 if (rbgAllocationMap.at(i) != 0)
1479 for (std::size_t i = 0; i < params.m_ulInfoList.size(); i++)
1484 uint16_t rnti = params.m_ulInfoList.at(i).m_rnti;
1485 std::map<uint16_t, uint8_t>::iterator itProcId =
1489 NS_LOG_ERROR(
"No info find in HARQ buffer for UE (might change eNB) " << rnti);
1492 NS_LOG_INFO(
this <<
" UL-HARQ retx RNTI " << rnti <<
" harqId " << (uint16_t)harqId
1493 <<
" i " << i <<
" size " << params.m_ulInfoList.size());
1494 std::map<uint16_t, UlHarqProcessesDciBuffer_t>::iterator itHarq =
1498 NS_LOG_ERROR(
"No info find in HARQ buffer for UE (might change eNB) " << rnti);
1502 std::map<uint16_t, UlHarqProcessesStatus_t>::iterator itStat =
1506 NS_LOG_ERROR(
"No info find in HARQ buffer for UE (might change eNB) " << rnti);
1508 if ((*itStat).second.at(harqId) >= 3)
1510 NS_LOG_INFO(
"Max number of retransmissions reached (UL)-> drop process");
1528 rbgAllocationMap.at(j) = dci.
m_rnti;
1534 << (*itStat).second.at(harqId) + 1);
1538 NS_LOG_INFO(
"Cannot allocate retx due to RACH allocations for UE " << rnti);
1543 (*itStat).second.at((*itProcId).second) = (*itStat).second.at(harqId) + 1;
1544 (*itStat).second.at(harqId) = 0;
1545 (*itHarq).second.at((*itProcId).second) = dci;
1547 rntiAllocated.insert(dci.
m_rnti);
1551 NS_LOG_INFO(
this <<
" HARQ-ACK feedback from RNTI "
1552 << params.m_ulInfoList.at(i).m_rnti);
1557 std::map<uint16_t, uint32_t>::iterator it;
1562 std::set<uint16_t>::iterator itRnti = rntiAllocated.find((*it).first);
1564 if (((*it).second > 0) && (itRnti == rntiAllocated.end()))
1575 std::pair<uint16_t, std::vector<uint16_t>>(params.m_sfnSf, rbgAllocationMap));
1584 uint16_t tempRbPerFlow = (ffrUlBandwidth) / (nflows + rntiAllocated.size());
1585 uint16_t rbPerFlow =
1586 (minContinuousUlBandwidth < tempRbPerFlow) ? minContinuousUlBandwidth : tempRbPerFlow;
1593 int rbAllocated = 0;
1595 std::map<uint16_t, tdtbfqsFlowPerf_t>::iterator itStats;
1617 std::set<uint16_t>::iterator itRnti = rntiAllocated.find((*it).first);
1618 if ((itRnti != rntiAllocated.end()) || ((*it).second == 0))
1621 NS_LOG_DEBUG(
this <<
" UE already allocated in HARQ -> discarded, RNTI "
1645 uldci.
m_rnti = (*it).first;
1647 bool allocated =
false;
1648 NS_LOG_INFO(
this <<
" RB Allocated " << rbAllocated <<
" rbPerFlow " << rbPerFlow
1649 <<
" flows " << nflows);
1655 for (
int j = rbAllocated; j < rbAllocated + rbPerFlow; j++)
1670 NS_LOG_INFO(
this <<
"RNTI: " << (*it).first <<
" RB Allocated " << rbAllocated
1671 <<
" rbPerFlow " << rbPerFlow <<
" flows " << nflows);
1674 for (
int j = rbAllocated; j < rbAllocated + rbPerFlow; j++)
1678 rbgAllocationMap.at(j) = (*it).first;
1680 rbAllocated += rbPerFlow;
1710 std::map<uint16_t, std::vector<double>>::iterator itCqi =
m_ueCqi.find((*it).first);
1721 "CQI of RNTI = " << (*it).first <<
" has expired");
1722 double minSinr = (*itCqi).second.at(uldci.
m_rbStart);
1729 double sinr = (*itCqi).second.at(i);
1741 double s = log2(1 + (std::pow(10, minSinr / 10) / ((-std::log(5.0 * 0.00005)) / 1.5)));
1742 cqi =
m_amc->GetCqiFromSpectralEfficiency(s);
1755 rbgAllocationMap.at(i) = 0;
1781 std::map<uint16_t, uint8_t>::iterator itProcId;
1787 harqId = (*itProcId).second;
1788 std::map<uint16_t, UlHarqProcessesDciBuffer_t>::iterator itDci =
1792 NS_FATAL_ERROR(
"Unable to find RNTI entry in UL DCI HARQ buffer for RNTI "
1795 (*itDci).second.at(harqId) = uldci;
1797 std::map<uint16_t, UlHarqProcessesStatus_t>::iterator itStat =
1801 NS_LOG_ERROR(
"No info find in HARQ buffer for UE (might change eNB) "
1804 (*itStat).second.at(harqId) = 0;
1807 NS_LOG_INFO(
this <<
" UE Allocation RNTI " << (*it).first <<
" startPRB "
1809 <<
" CQI " << cqi <<
" MCS " << (
uint32_t)uldci.
m_mcs <<
" TBsize "
1810 << uldci.
m_tbSize <<
" RbAlloc " << rbAllocated <<
" harqId "
1811 << (uint16_t)harqId);
1825 }
while (((*it).first !=
m_nextRntiUl) && (rbPerFlow != 0));
1828 std::pair<uint16_t, std::vector<uint16_t>>(params.m_sfnSf, rbgAllocationMap));
1852 std::map<uint16_t, uint32_t>::iterator it;
1854 for (
unsigned int i = 0; i < params.m_macCeList.size(); i++)
1866 for (uint8_t lcg = 0; lcg < 4; ++lcg)
1868 uint8_t bsrId = params.m_macCeList.at(i).m_macCeValue.m_bufferStatus.at(lcg);
1872 uint16_t rnti = params.m_macCeList.at(i).m_rnti;
1873 NS_LOG_LOGIC(
this <<
"RNTI=" << rnti <<
" buffer=" << buffer);
1878 m_ceBsrRxed.insert(std::pair<uint16_t, uint32_t>(rnti, buffer));
1883 (*it).second = buffer;
1917 switch (params.m_ulCqi.m_type)
1920 std::map<uint16_t, std::vector<uint16_t>>::iterator itMap;
1921 std::map<uint16_t, std::vector<double>>::iterator itCqi;
1922 NS_LOG_DEBUG(
this <<
" Collect PUSCH CQIs of Frame no. " << (params.m_sfnSf >> 4)
1923 <<
" subframe no. " << (0xF & params.m_sfnSf));
1929 for (
uint32_t i = 0; i < (*itMap).second.size(); i++)
1933 itCqi =
m_ueCqi.find((*itMap).second.at(i));
1937 std::vector<double> newCqi;
1942 newCqi.push_back(sinr);
1951 std::pair<uint16_t, std::vector<double>>((*itMap).second.at(i), newCqi));
1959 (*itCqi).second.at(i) = sinr;
1960 NS_LOG_DEBUG(
this <<
" RNTI " << (*itMap).second.at(i) <<
" RB " << i <<
" SINR "
1963 std::map<uint16_t, uint32_t>::iterator itTimers;
1975 NS_ASSERT(!params.m_vendorSpecificList.empty());
1976 for (std::size_t i = 0; i < params.m_vendorSpecificList.size(); i++)
1981 DynamicCast<SrsCqiRntiVsp>(params.m_vendorSpecificList.at(i).m_value);
1982 rnti = vsp->GetRnti();
1985 std::map<uint16_t, std::vector<double>>::iterator itCqi;
1990 std::vector<double> newCqi;
1994 newCqi.push_back(sinr);
1995 NS_LOG_INFO(
this <<
" RNTI " << rnti <<
" new SRS-CQI for RB " << j <<
" value "
1998 m_ueCqi.insert(std::pair<uint16_t, std::vector<double>>(rnti, newCqi));
2008 (*itCqi).second.at(j) = sinr;
2009 NS_LOG_INFO(
this <<
" RNTI " << rnti <<
" update SRS-CQI for RB " << j <<
" value "
2013 std::map<uint16_t, uint32_t>::iterator itTimers;
2022 NS_FATAL_ERROR(
"TdTbfqFfMacScheduler supports only PUSCH and SRS UL-CQIs");
2034 std::map<uint16_t, uint32_t>::iterator itP10 =
m_p10CqiTimers.begin();
2037 NS_LOG_INFO(
this <<
" P10-CQI for user " << (*itP10).first <<
" is "
2039 if ((*itP10).second == 0)
2042 std::map<uint16_t, uint8_t>::iterator itMap =
m_p10CqiRxed.find((*itP10).first);
2044 " Does not find CQI report for user " << (*itP10).first);
2045 NS_LOG_INFO(
this <<
" P10-CQI expired for user " << (*itP10).first);
2047 std::map<uint16_t, uint32_t>::iterator temp = itP10;
2059 std::map<uint16_t, uint32_t>::iterator itA30 =
m_a30CqiTimers.begin();
2062 NS_LOG_INFO(
this <<
" A30-CQI for user " << (*itA30).first <<
" is "
2064 if ((*itA30).second == 0)
2067 std::map<uint16_t, SbMeasResult_s>::iterator itMap =
m_a30CqiRxed.find((*itA30).first);
2069 " Does not find CQI report for user " << (*itA30).first);
2070 NS_LOG_INFO(
this <<
" A30-CQI expired for user " << (*itA30).first);
2072 std::map<uint16_t, uint32_t>::iterator temp = itA30;
2088 std::map<uint16_t, uint32_t>::iterator itUl =
m_ueCqiTimers.begin();
2091 NS_LOG_INFO(
this <<
" UL-CQI for user " << (*itUl).first <<
" is "
2093 if ((*itUl).second == 0)
2096 std::map<uint16_t, std::vector<double>>::iterator itMap =
m_ueCqi.find((*itUl).first);
2098 " Does not find CQI report for user " << (*itUl).first);
2099 NS_LOG_INFO(
this <<
" UL-CQI exired for user " << (*itUl).first);
2100 (*itMap).second.clear();
2102 std::map<uint16_t, uint32_t>::iterator temp = itUl;
2117 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator it;
2122 NS_LOG_INFO(
this <<
" UE " << rnti <<
" LC " << (uint16_t)lcid <<
" txqueue "
2123 << (*it).second.m_rlcTransmissionQueueSize <<
" retxqueue "
2124 << (*it).second.m_rlcRetransmissionQueueSize <<
" status "
2125 << (*it).second.m_rlcStatusPduSize <<
" decrease " << size);
2128 if (((*it).second.m_rlcStatusPduSize > 0) && (size >= (*it).second.m_rlcStatusPduSize))
2130 (*it).second.m_rlcStatusPduSize = 0;
2132 else if (((*it).second.m_rlcRetransmissionQueueSize > 0) &&
2133 (size >= (*it).second.m_rlcRetransmissionQueueSize))
2135 (*it).second.m_rlcRetransmissionQueueSize = 0;
2137 else if ((*it).second.m_rlcTransmissionQueueSize > 0)
2154 if ((*it).second.m_rlcTransmissionQueueSize <= size - rlcOverhead)
2156 (*it).second.m_rlcTransmissionQueueSize = 0;
2160 (*it).second.m_rlcTransmissionQueueSize -= size - rlcOverhead;
2166 NS_LOG_ERROR(
this <<
" Does not find DL RLC Buffer Report of UE " << rnti);
2174 std::map<uint16_t, uint32_t>::iterator it =
m_ceBsrRxed.find(rnti);
2177 NS_LOG_INFO(
this <<
" UE " << rnti <<
" size " << size <<
" BSR " << (*it).second);
2178 if ((*it).second >= size)
2180 (*it).second -= size;
2189 NS_LOG_ERROR(
this <<
" Does not find BSR report info of UE " << rnti);
2196 NS_LOG_FUNCTION(
this <<
" RNTI " << rnti <<
" txMode " << (uint16_t)txMode);
2198 params.m_rnti = rnti;
2199 params.m_transmissionMode = txMode;
AttributeValue implementation for Boolean.
static uint32_t BsrId2BufferSize(uint8_t val)
Convert BSR ID to buffer size.
FfMacCschedSapUser class.
virtual void CschedUeConfigCnf(const CschedUeConfigCnfParameters ¶ms)=0
CSCHED_UE_CONFIG_CNF.
virtual void CschedUeConfigUpdateInd(const CschedUeConfigUpdateIndParameters ¶ms)=0
CSCHED_UE_UPDATE_IND.
virtual void SchedUlConfigInd(const SchedUlConfigIndParameters ¶ms)=0
SCHED_UL_CONFIG_IND.
virtual void SchedDlConfigInd(const SchedDlConfigIndParameters ¶ms)=0
SCHED_DL_CONFIG_IND.
This abstract base class identifies the interface by means of which the helper object can plug on the...
UlCqiFilter_t m_ulCqiFilter
UL CQI filter.
Hold a signed integer type.
static double fpS11dot3toDouble(uint16_t val)
Convert from fixed point S11.3 notation to double.
Service Access Point (SAP) offered by the Frequency Reuse algorithm instance to the MAC Scheduler ins...
virtual uint8_t GetTpc(uint16_t rnti)=0
GetTpc.
virtual std::vector< bool > GetAvailableUlRbg()=0
Get vector of available RB in UL for this Cell.
virtual void ReportUlCqiInfo(const FfMacSchedSapProvider::SchedUlCqiInfoReqParameters ¶ms)=0
ReportUlCqiInfo.
virtual bool IsUlRbgAvailableForUe(int i, uint16_t rnti)=0
Check if UE can be served on i-th RB in UL.
virtual void ReportDlCqiInfo(const FfMacSchedSapProvider::SchedDlCqiInfoReqParameters ¶ms)=0
ReportDlCqiInfo.
virtual std::vector< bool > GetAvailableDlRbg()=0
Get vector of available RBG in DL for this Cell.
virtual uint16_t GetMinContinuousUlBandwidth()=0
Get the minimum continuous Ul bandwidth.
virtual bool IsDlRbgAvailableForUe(int i, uint16_t rnti)=0
Check if UE can be served on i-th RB in DL.
Service Access Point (SAP) offered by the eNodeB RRC instance to the Frequency Reuse algorithm instan...
Template for the implementation of the LteFfrSapUser as a member of an owner class of type C to which...
Smart pointer class similar to boost::intrusive_ptr.
static Time Now()
Return the current simulation virtual time.
Implements the SCHED SAP and CSCHED SAP for a Time Domain Token Bank Fair Queue scheduler.
uint16_t m_nextRntiUl
RNTI of the next user to be served next scheduling in UL.
bool HarqProcessAvailability(uint16_t rnti)
Return the availability of free process for the RNTI specified.
void SetLteFfrSapProvider(LteFfrSapProvider *s) override
Set the Provider part of the LteFfrSap that this Scheduler will interact with.
static TypeId GetTypeId()
Get the type ID.
std::map< uint16_t, uint8_t > m_uesTxMode
txMode of the UEs
std::map< uint16_t, DlHarqProcessesTimer_t > m_dlHarqProcessesTimer
DL HARQ process timer.
void UpdateDlRlcBufferInfo(uint16_t rnti, uint8_t lcid, uint16_t size)
Update DL RLC buffer info function.
void UpdateUlRlcBufferInfo(uint16_t rnti, uint16_t size)
Update UL RLC buffer info function.
~TdTbfqFfMacScheduler() override
Destructor.
FfMacSchedSapProvider * m_schedSapProvider
Sched SAP provider.
std::map< uint16_t, UlHarqProcessesDciBuffer_t > m_ulHarqProcessesDciBuffer
UL HARQ process DCI buffer.
FfMacCschedSapProvider::CschedCellConfigReqParameters m_cschedCellConfig
CSched cell config.
FfMacSchedSapUser * m_schedSapUser
A=Sched SAP user.
unsigned int LcActivePerFlow(uint16_t rnti)
LC active flow size.
std::map< uint16_t, DlHarqProcessesDciBuffer_t > m_dlHarqProcessesDciBuffer
DL HARQ process DCI buffer.
std::map< uint16_t, DlHarqRlcPduListBuffer_t > m_dlHarqProcessesRlcPduListBuffer
DL HARQ process RLC PDU list buffer.
uint32_t m_cqiTimersThreshold
uint32_t m_creditLimit
flow credit limit (byte)
void DoSchedUlMacCtrlInfoReq(const FfMacSchedSapProvider::SchedUlMacCtrlInfoReqParameters ¶ms)
Sched UL MAC control info request.
uint8_t UpdateHarqProcessId(uint16_t rnti)
Update and return a new process Id for the RNTI specified.
void DoSchedUlTriggerReq(const FfMacSchedSapProvider::SchedUlTriggerReqParameters ¶ms)
Sched UL trigger request.
std::map< uint16_t, uint32_t > m_a30CqiTimers
Map of UE's timers on DL CQI A30 received.
std::vector< uint16_t > m_rachAllocationMap
RACH allocation map.
LteFfrSapUser * m_ffrSapUser
FFR SAP user.
std::map< uint16_t, uint32_t > m_ceBsrRxed
Map of UE's buffer status reports received.
int GetRbgSize(int dlbandwidth)
Get RBG size.
std::map< uint16_t, uint32_t > m_p10CqiTimers
Map of UE's timers on DL CQI P01 received.
std::map< uint16_t, uint8_t > m_ulHarqCurrentProcessId
UL HARQ current process ID.
void DoSchedDlPagingBufferReq(const FfMacSchedSapProvider::SchedDlPagingBufferReqParameters ¶ms)
Sched DL paging buffer request.
void RefreshDlCqiMaps()
Refresh DL CQI maps function.
uint8_t m_ulGrantMcs
MCS for UL grant (default 0)
std::map< uint16_t, std::vector< double > > m_ueCqi
Map of UEs' UL-CQI per RBG.
FfMacSchedSapProvider * GetFfMacSchedSapProvider() override
uint32_t m_creditableThreshold
threshold of flow credit
void DoSchedDlTriggerReq(const FfMacSchedSapProvider::SchedDlTriggerReqParameters ¶ms)
Sched DL trigger request.
std::map< uint16_t, tdtbfqsFlowPerf_t > m_flowStatsUl
Map of UE statistics (per RNTI basis)
LteFfrSapUser * GetLteFfrSapUser() override
FfMacCschedSapProvider * GetFfMacCschedSapProvider() override
void DoSchedDlMacBufferReq(const FfMacSchedSapProvider::SchedDlMacBufferReqParameters ¶ms)
Sched DL MAC buffer request.
void DoCschedLcConfigReq(const FfMacCschedSapProvider::CschedLcConfigReqParameters ¶ms)
CSched LC config request.
void TransmissionModeConfigurationUpdate(uint16_t rnti, uint8_t txMode)
Transmission mde configuration update function.
friend class MemberCschedSapProvider< TdTbfqFfMacScheduler >
allow MemberCschedSapProvider<TdTbfqFfMacScheduler> class friend access
void DoSchedDlRachInfoReq(const FfMacSchedSapProvider::SchedDlRachInfoReqParameters ¶ms)
Sched DL RACH info request.
std::map< LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters > m_rlcBufferReq
Vectors of UE's LC info.
FfMacCschedSapProvider * m_cschedSapProvider
CSched SAP provider.
void RefreshUlCqiMaps()
Refresh UL CQI maps function.
void DoSchedUlCqiInfoReq(const FfMacSchedSapProvider::SchedUlCqiInfoReqParameters ¶ms)
Sched UL CQI info request.
void SetFfMacSchedSapUser(FfMacSchedSapUser *s) override
set the user part of the FfMacSchedSap that this Scheduler will interact with.
int m_debtLimit
flow debt limit (byte)
double EstimateUlSinr(uint16_t rnti, uint16_t rb)
Estimate UL SINR function.
std::vector< RachListElement_s > m_rachList
RACH list.
void DoCschedLcReleaseReq(const FfMacCschedSapProvider::CschedLcReleaseReqParameters ¶ms)
CSched LC release request.
LteFfrSapProvider * m_ffrSapProvider
FFR SAP provider.
void DoSchedUlSrInfoReq(const FfMacSchedSapProvider::SchedUlSrInfoReqParameters ¶ms)
Sched UL SR info request.
std::map< uint16_t, uint8_t > m_p10CqiRxed
Map of UE's DL CQI P01 received.
void DoCschedUeConfigReq(const FfMacCschedSapProvider::CschedUeConfigReqParameters ¶ms)
CSched UE config request.
friend class MemberSchedSapProvider< TdTbfqFfMacScheduler >
allow MemberSchedSapProvider<TdTbfqFfMacScheduler> class friend access
uint32_t m_tokenPoolSize
maximum size of token pool (byte)
void DoCschedUeReleaseReq(const FfMacCschedSapProvider::CschedUeReleaseReqParameters ¶ms)
CSched UE release request.
std::map< uint16_t, DlHarqProcessesStatus_t > m_dlHarqProcessesStatus
DL HARQ process status.
void DoSchedDlRlcBufferReq(const FfMacSchedSapProvider::SchedDlRlcBufferReqParameters ¶ms)
Sched DL RLC buffer request.
FfMacCschedSapUser * m_cschedSapUser
CSched SAP user.
std::map< uint16_t, uint32_t > m_ueCqiTimers
Map of UEs' timers on UL-CQI per RBG.
void DoDispose() override
Destructor implementation.
std::map< uint16_t, uint8_t > m_dlHarqCurrentProcessId
DL HARQ current process ID.
std::map< uint16_t, std::vector< uint16_t > > m_allocationMaps
Map of previous allocated UE per RBG (used to retrieve info from UL-CQI)
void RefreshHarqProcesses()
Refresh HARQ processes according to the timers.
TdTbfqFfMacScheduler()
Constructor.
void SetFfMacCschedSapUser(FfMacCschedSapUser *s) override
set the user part of the FfMacCschedSap that this Scheduler will interact with.
std::vector< DlInfoListElement_s > m_dlInfoListBuffered
HARQ retx buffered.
void DoSchedUlNoiseInterferenceReq(const FfMacSchedSapProvider::SchedUlNoiseInterferenceReqParameters ¶ms)
Sched UL noise interference request.
std::map< uint16_t, UlHarqProcessesStatus_t > m_ulHarqProcessesStatus
UL HARQ process status.
void DoCschedCellConfigReq(const FfMacCschedSapProvider::CschedCellConfigReqParameters ¶ms)
CSched cell config request.
void DoSchedDlCqiInfoReq(const FfMacSchedSapProvider::SchedDlCqiInfoReqParameters ¶ms)
Sched DL CQI info request.
std::map< uint16_t, tdtbfqsFlowPerf_t > m_flowStatsDl
Map of UE statistics (per RNTI basis) in downlink.
std::map< uint16_t, SbMeasResult_s > m_a30CqiRxed
Map of UE's DL CQI A30 received.
uint64_t bankSize
the number of bytes in token bank
bool m_harqOn
m_harqOn when false inhibit the HARQ mechanisms (by default active)
static uint8_t TxMode2LayerNum(uint8_t txMode)
Transmit mode 2 layer number.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Hold an unsigned integer type.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Ptr< const AttributeChecker > MakeBooleanChecker()
Ptr< const AttributeAccessor > MakeIntegerAccessor(T1 a1)
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
constexpr double NO_SINR
Value for SINR outside the range defined by FF-API, used to indicate that there is no CQI for this el...
static const int TdTbfqType0AllocationRbg[4]
TDTBFQ type 0 allocation RBG.
std::vector< UlDciListElement_s > UlHarqProcessesDciBuffer_t
UL HARQ process DCI buffer vector.
std::vector< RlcPduList_t > DlHarqRlcPduListBuffer_t
Vector of the 8 HARQ processes per UE.
constexpr uint32_t HARQ_DL_TIMEOUT
HARQ DL timeout.
constexpr uint32_t HARQ_PROC_NUM
Number of HARQ processes.
std::vector< DlDciListElement_s > DlHarqProcessesDciBuffer_t
DL HARQ process DCI buffer vector.
std::vector< uint8_t > UlHarqProcessesStatus_t
UL HARQ process status vector.
std::vector< uint8_t > DlHarqProcessesTimer_t
DL HARQ process timer vector.
std::vector< uint8_t > DlHarqProcessesStatus_t
DL HARQ process status vector.
See section 4.3.8 buildDataListElement.
std::vector< std::vector< struct RlcPduListElement_s > > m_rlcPduList
RLC PDU list.
struct DlDciListElement_s m_dci
DCI.
See section 4.3.10 buildRARListElement.
See section 4.3.1 dlDciListElement.
std::vector< uint8_t > m_ndi
New data indicator.
uint8_t m_harqProcess
HARQ process.
uint32_t m_rbBitmap
RB bitmap.
std::vector< uint8_t > m_mcs
MCS.
uint8_t m_resAlloc
The type of resource allocation.
std::vector< uint16_t > m_tbsSize
The TBs size.
std::vector< uint8_t > m_rv
Redundancy version.
uint8_t m_tpc
Tx power control command.
Parameters of the API primitives.
uint16_t m_dlBandwidth
DL bandwidth.
uint16_t m_ulBandwidth
UL bandwidth.
Parameters of the CSCHED_LC_CONFIG_REQ primitive.
Parameters of the CSCHED_LC_RELEASE_REQ primitive.
Parameters of the CSCHED_UE_CONFIG_REQ primitive.
Parameters of the CSCHED_UE_RELEASE_REQ primitive.
Parameters of the CSCHED_UE_CONFIG_CNF primitive.
Parameters of the CSCHED_UE_CONFIG_UPDATE_IND primitive.
Parameters of the SCHED_DL_CQI_INFO_REQ primitive.
Parameters of the SCHED_DL_MAC_BUFFER_REQ primitive.
Parameters of the SCHED_DL_PAGING_BUFFER_REQ primitive.
Parameters of the SCHED_DL_RACH_INFO_REQ primitive.
Parameters of the API primitives.
Parameters of the SCHED_DL_TRIGGER_REQ primitive.
Parameters of the SCHED_UL_CQI_INFO_REQ primitive.
Parameters of the SCHED_UL_MAC_CTRL_INFO_REQ primitive.
Parameters of the SCHED_UL_NOISE_INTERFERENCE_REQ primitive.
Parameters of the SCHED_UL_SR_INFO_REQ primitive.
Parameters of the SCHED_UL_TRIGGER_REQ primitive.
Parameters of the API primitives.
std::vector< BuildDataListElement_s > m_buildDataList
build data list
std::vector< BuildRarListElement_s > m_buildRarList
build rar list
uint8_t m_nrOfPdcchOfdmSymbols
number of PDCCH OFDM symbols
Parameters of the SCHED_UL_CONFIG_IND primitive.
std::vector< UlDciListElement_s > m_dciList
DCI list.
See section 4.3.9 rlcPDU_ListElement.
uint8_t m_logicalChannelIdentity
logical channel identity
See section 4.3.2 ulDciListElement.
int8_t m_pdcchPowerOffset
CCH power offset.
int8_t m_tpc
Tx power control command.
uint8_t m_dai
DL assignment index.
uint8_t m_cceIndex
Control Channel Element index.
uint8_t m_ulIndex
UL index.
uint8_t m_ueTxAntennaSelection
UE antenna selection.
bool m_cqiRequest
CQI request.
uint8_t m_freqHopping
freq hopping
uint8_t m_aggrLevel
The aggregation level.
int8_t m_tpc
Tx power control command.
bool m_cqiRequest
CQI request?
uint32_t tokenPoolSize
current size of token pool (byte)
int debtLimit
counter threshold that the flow cannot further borrow tokens from bank
uint32_t maxTokenPoolSize
maximum size of token pool (byte)
int counter
the number of token borrow or given to token bank
uint32_t creditableThreshold
the flow cannot borrow token from bank until the number of token it has deposited to bank reaches thi...
uint64_t packetArrivalRate
packet arrival rate( byte/s)
uint64_t tokenGenerationRate
token generation rate ( byte/s )
Time flowStart
flow start time
uint32_t burstCredit
the maximum number of tokens connection i can borrow from the bank each time