38 #include "ns3/packet.h" 39 #include "ns3/simulator.h" 41 #include "ns3/random-variable-stream.h" 46 #define Min(a,b) ((a < b) ? a : b) 47 #define Max(a,b) ((a > b) ? a : b) 78 static TypeId tid =
TypeId (
"ns3::MinstrelHtWifiManager")
80 .AddConstructor<MinstrelHtWifiManager> ()
81 .SetGroupName (
"Wifi")
82 .AddAttribute (
"UpdateStatistics",
83 "The interval between updating statistics table ",
87 .AddAttribute (
"LookAroundRate",
88 "The percentage to try other rates (for legacy Minstrel)",
91 MakeUintegerChecker<uint8_t>(0, 100))
92 .AddAttribute (
"EWMA",
96 MakeUintegerChecker<uint8_t>(0, 100))
97 .AddAttribute (
"SampleColumn",
98 "The number of columns used for sampling",
101 MakeUintegerChecker <uint8_t> ())
102 .AddAttribute (
"PacketLength",
103 "The packet length used for calculating mode TxTime",
106 MakeUintegerChecker <uint32_t> ())
107 .AddAttribute (
"UseVhtOnly",
108 "Use only VHT MCSs (and not HT) when VHT is available",
112 .AddAttribute (
"PrintStats",
113 "Control the printing of the statistics table",
117 .AddTraceSource (
"Rate",
118 "Traced value for rate changes (b/s)",
120 "ns3::TracedValueCallback::Uint64")
156 int64_t numStreamsAssigned = 0;
158 numStreamsAssigned++;
160 return numStreamsAssigned;
209 for (uint16_t chWidth = 20; chWidth <=
MAX_HT_WIDTH; chWidth *= 2)
235 WifiMode mode = htMcsList[deviceIndex];
239 NS_LOG_DEBUG (
"Initialized group " << +groupId <<
": (" << +streams <<
"," << +
sgi <<
"," << chWidth <<
")");
248 for (uint16_t chWidth = 20; chWidth <=
MAX_VHT_WIDTH; chWidth *= 2)
281 NS_LOG_DEBUG (
"Initialized group " << +groupId <<
": (" << +streams <<
"," << +
sgi <<
"," << chWidth <<
")");
303 txvector.
SetNss (streams);
314 txvector.
SetNss (streams);
329 txvector.
SetNss (streams);
352 m_minstrelGroups[groupId].ratesFirstMpduTxTimeTable.insert (std::make_pair (mode, t));
368 m_minstrelGroups[groupId].ratesTxTimeTable.insert (std::make_pair (mode, t));
461 std::ostringstream tmp;
463 station->
m_statsFile.open (tmp.str ().c_str (), std::ios::out);
532 station->
m_groupsTable[groupId].m_ratesTable[rateId].numRateAttempt++;
572 station->
m_groupsTable[groupId].m_ratesTable[rateId].numRateSuccess++;
573 station->
m_groupsTable[groupId].m_ratesTable[rateId].numRateAttempt++;
647 NS_LOG_FUNCTION (
this << st << +nSuccessfulMpdus << +nFailedMpdus << rxSnr << dataSnr);
659 +nSuccessfulMpdus <<
" FailedMpdus= " << +nFailedMpdus);
662 station->
m_ampduLen += nSuccessfulMpdus + nFailedMpdus;
668 station->
m_groupsTable[groupId].m_ratesTable[rateId].numRateSuccess += nSuccessfulMpdus;
669 station->
m_groupsTable[groupId].m_ratesTable[rateId].numRateAttempt += nSuccessfulMpdus + nFailedMpdus;
750 station->
m_groupsTable[maxTp2GroupId].m_ratesTable[maxTp2RateId].retryCount))
758 station->
m_groupsTable[maxTp2GroupId].m_ratesTable[maxTp2RateId].retryCount +
759 station->
m_groupsTable[maxProbGroupId].m_ratesTable[maxProbRateId].retryCount))
783 station->
m_groupsTable[maxProbGroupId].m_ratesTable[maxProbRateId].retryCount)
807 NS_LOG_FUNCTION (
this << station << +nSuccessfulMpdus << +nFailedMpdus);
856 uint8_t mcsIndex = station->
m_groupsTable[groupId].m_ratesTable[rateId].mcsIndex;
858 NS_LOG_DEBUG (
"DoGetDataMode rateId= " << +rateId <<
" groupId= " << +groupId <<
" mode= " <<
GetMcsSupported (station, mcsIndex));
866 "," << +group.
sgi <<
"," << group.
chWidth <<
")" <<
877 return WifiTxVector (mode,
GetDefaultTxPowerLevel (),
GetPreambleForTransmission (mode,
GetAddress (station)), group.
sgi ? 400 : 800,
GetNumberOfAntennas (), group.
streams,
GetNess (station),
GetChannelWidthForTransmission (mode, group.
chWidth),
GetAggregation (station) && !station->
m_isSampling,
false);
916 uint8_t mcsIndex = station->
m_groupsTable[groupId].m_ratesTable[rateId].mcsIndex;
923 bool rateFound =
false;
925 for (uint8_t i = 0; i < nBasicRates; i++)
928 if (rate <= lastDataRate)
938 uint8_t nSupportRates =
phy->GetNModes ();
939 for (uint8_t i = 0; i < nSupportRates; i++)
941 uint64_t rate =
phy->GetMode (i).GetDataRate (20);
942 if (rate <= lastDataRate)
944 rtsRate =
phy->GetMode (i);
983 NS_LOG_DEBUG (
"No re-transmission allowed. Retries: " << station->
m_longRetry <<
" Max retries: " << maxRetries);
1005 return station->
m_groupsTable[maxTpGroupId].m_ratesTable[maxTpRateId].retryCount +
1006 station->
m_groupsTable[maxTp2GroupId].m_ratesTable[maxTp2RateId].retryCount +
1007 station->
m_groupsTable[maxProbGroupId].m_ratesTable[maxProbRateId].retryCount;
1011 return 1 + station->
m_groupsTable[maxTpGroupId].m_ratesTable[maxTp2RateId].retryCount +
1012 station->
m_groupsTable[maxProbGroupId].m_ratesTable[maxProbRateId].retryCount;
1027 uint8_t index = station->
m_groupsTable[sampleGroup].m_index;
1030 uint16_t rateIndex =
GetIndex (sampleGroup, sampleIndex);
1088 uint8_t sampleGroupId =
GetGroupId (sampleIdx);
1089 uint8_t sampleRateId =
GetRateId (sampleIdx);
1092 if (station->
m_groupsTable[sampleGroupId].m_supported && station->
m_groupsTable[sampleGroupId].m_ratesTable[sampleRateId].supported)
1104 " SampleRate= " << sampleIdx <<
" SampleProb= " << sampleRateInfo.
ewmaProb);
1125 Time maxTp2Duration = station->
m_groupsTable[maxTp2GroupId].m_ratesTable[maxTp2RateId].perfectTxTime;
1126 Time maxProbDuration = station->
m_groupsTable[maxProbGroupId].m_ratesTable[maxProbRateId].perfectTxTime;
1128 NS_LOG_DEBUG (
"Use sample rate? SampleDuration= " << sampleDuration <<
" maxTp2Duration= " << maxTp2Duration <<
1129 " maxProbDuration= " << maxProbDuration <<
" sampleStreams= " << +sampleStreams <<
1130 " maxTpStreams= " << +maxTpStreams);
1131 if (sampleDuration < maxTp2Duration || (sampleStreams < maxTpStreams && sampleDuration < maxProbDuration))
1139 NS_LOG_DEBUG (
"FindRate " <<
"sampleRate=" << sampleIdx);
1154 NS_LOG_DEBUG (
"FindRate " <<
"sampleRate=" << sampleIdx);
1213 station->
m_groupsTable[j].m_ratesTable[i].retryUpdated =
false;
1216 "\t attempt=" << station->
m_groupsTable[j].m_ratesTable[i].numRateAttempt <<
1217 "\t success=" << station->
m_groupsTable[j].m_ratesTable[i].numRateSuccess);
1220 if (station->
m_groupsTable[j].m_ratesTable[i].numRateAttempt > 0)
1222 station->
m_groupsTable[j].m_ratesTable[i].numSamplesSkipped = 0;
1227 tempProb = (100 * station->
m_groupsTable[j].m_ratesTable[i].numRateSuccess) / station->
m_groupsTable[j].m_ratesTable[i].numRateAttempt;
1234 station->
m_groupsTable[j].m_ratesTable[i].ewmaProb = tempProb;
1239 tempProb, station->
m_groupsTable[j].m_ratesTable[i].ewmaProb,
1243 station->
m_groupsTable[j].m_ratesTable[i].ewmaProb = tempProb;
1253 station->
m_groupsTable[j].m_ratesTable[i].numSamplesSkipped++;
1259 station->
m_groupsTable[j].m_ratesTable[i].numRateSuccess = 0;
1260 station->
m_groupsTable[j].m_ratesTable[i].numRateAttempt = 0;
1262 if (station->
m_groupsTable[j].m_ratesTable[i].throughput != 0)
1306 Time txTime = station->
m_groupsTable[groupId].m_ratesTable[rateId].perfectTxTime;
1323 uint8_t tmpGroupId, tmpRateId;
1324 double tmpTh, tmpProb;
1325 uint8_t groupId, rateId;
1328 uint8_t maxGPGroupId, maxGPRateId;
1338 tmpProb = station->
m_groupsTable[tmpGroupId].m_ratesTable[tmpRateId].ewmaProb;
1339 tmpTh = station->
m_groupsTable[tmpGroupId].m_ratesTable[tmpRateId].throughput;
1343 currentTh = station->
m_groupsTable[groupId].m_ratesTable[rateId].throughput;
1344 if (currentTh > tmpTh)
1351 maxGPTh = station->
m_groupsTable[maxGPGroupId].m_ratesTable[maxGPRateId].throughput;
1353 if (currentTh > maxGPTh)
1382 uint8_t groupId, rateId;
1384 uint8_t maxTpGroupId, maxTpRateId;
1385 uint8_t maxTp2GroupId, maxTp2RateId;
1386 double maxTpTh, maxTpProb;
1387 double maxTp2Th, maxTp2Prob;
1391 prob = station->
m_groupsTable[groupId].m_ratesTable[rateId].ewmaProb;
1392 th = station->
m_groupsTable[groupId].m_ratesTable[rateId].throughput;
1396 maxTpProb = station->
m_groupsTable[maxTpGroupId].m_ratesTable[maxTpRateId].ewmaProb;
1397 maxTpTh = station->
m_groupsTable[maxTpGroupId].m_ratesTable[maxTpRateId].throughput;
1401 maxTp2Prob = station->
m_groupsTable[maxTp2GroupId].m_ratesTable[maxTp2RateId].ewmaProb;
1402 maxTp2Th = station->
m_groupsTable[maxTp2GroupId].m_ratesTable[maxTp2RateId].throughput;
1404 if (th > maxTpTh || (th == maxTpTh && prob > maxTpProb))
1409 else if (th > maxTp2Th || (th == maxTp2Th && prob > maxTp2Prob))
1420 maxTpTh = station->
m_groupsTable[maxTpGroupId].m_ratesTable[maxTpRateId].throughput;
1424 maxTp2Prob = group->
m_ratesTable[maxTp2RateId].ewmaProb;
1425 maxTp2Th = station->
m_groupsTable[maxTp2GroupId].m_ratesTable[maxTp2RateId].throughput;
1427 if (th > maxTpTh || (th == maxTpTh && prob > maxTpProb))
1432 else if (th > maxTp2Th || (th == maxTp2Th && prob > maxTp2Prob))
1449 for (uint8_t groupId = 0; groupId <
m_numGroups; groupId++)
1470 station->
m_groupsTable[groupId].m_ratesTable[i].supported =
false;
1474 for (uint8_t i = 0; i < station->
m_nModes; i++)
1494 station->
m_groupsTable[groupId].m_ratesTable[rateId].supported =
true;
1495 station->
m_groupsTable[groupId].m_ratesTable[rateId].mcsIndex = i;
1496 station->
m_groupsTable[groupId].m_ratesTable[rateId].numRateAttempt = 0;
1497 station->
m_groupsTable[groupId].m_ratesTable[rateId].numRateSuccess = 0;
1498 station->
m_groupsTable[groupId].m_ratesTable[rateId].prob = 0;
1499 station->
m_groupsTable[groupId].m_ratesTable[rateId].ewmaProb = 0;
1500 station->
m_groupsTable[groupId].m_ratesTable[rateId].prevNumRateAttempt = 0;
1501 station->
m_groupsTable[groupId].m_ratesTable[rateId].prevNumRateSuccess = 0;
1502 station->
m_groupsTable[groupId].m_ratesTable[rateId].numSamplesSkipped = 0;
1503 station->
m_groupsTable[groupId].m_ratesTable[rateId].successHist = 0;
1504 station->
m_groupsTable[groupId].m_ratesTable[rateId].attemptHist = 0;
1505 station->
m_groupsTable[groupId].m_ratesTable[rateId].throughput = 0;
1507 station->
m_groupsTable[groupId].m_ratesTable[rateId].retryCount = 0;
1508 station->
m_groupsTable[groupId].m_ratesTable[rateId].adjustedRetryCount = 0;
1526 if (!station->
m_groupsTable[groupId].m_ratesTable[rateId].retryUpdated)
1538 uint32_t cwMax = 1023;
1539 Time cwTime, txTime, dataTxTime;
1541 Time ackTime =
GetMac ()->GetBasicBlockAckTimeout ();
1543 if (station->
m_groupsTable[groupId].m_ratesTable[rateId].ewmaProb < 1)
1545 station->
m_groupsTable[groupId].m_ratesTable[rateId].retryCount = 1;
1549 station->
m_groupsTable[groupId].m_ratesTable[rateId].retryCount = 2;
1550 station->
m_groupsTable[groupId].m_ratesTable[rateId].retryUpdated =
true;
1556 cwTime = (cw / 2) * slotTime;
1557 cw =
Min ((cw + 1) * 2, cwMax);
1558 cwTime += (cw / 2) * slotTime;
1559 cw =
Min ((cw + 1) * 2, cwMax);
1562 txTime = cwTime + 2 * (dataTxTime + ackTime);
1568 cwTime = (cw / 2) * slotTime;
1569 cw =
Min ((cw + 1) * 2, cwMax);
1572 txTime += cwTime + ackTime + dataTxTime;
1575 && (++station->
m_groupsTable[groupId].m_ratesTable[rateId].retryCount < 7));
1582 double diff, incr, tmp;
1585 diff = currentProb - ewmaProb;
1586 incr = (100 - weight) * diff / 100;
1587 tmp = oldEwmsd * oldEwmsd;
1588 tmp = weight * (tmp + diff * incr) / 100;
1606 for (uint8_t i = 0; i < numSampleRates; i++ )
1613 newIndex = (i + uv) % numSampleRates;
1628 station->
m_statsFile <<
" best ____________rate__________ ________statistics________ ________last_______ ______sum-of________\n" <<
1629 " mode guard # rate [name idx airtime max_tp] [avg(tp) avg(prob) sd(prob)] [prob.|retry|suc|att] [#success | #attempts]\n";
1657 for (uint8_t i = 0; i < numRates; i++)
1663 of <<
"HT" << group.
chWidth <<
" " << giMode <<
"GI " << (int)group.
streams <<
" ";
1667 of <<
"VHT" << group.
chWidth <<
" " << giMode <<
"GI " << (int)group.
streams <<
" ";
1674 uint16_t idx =
GetIndex (groupId, i);
1675 if (idx == maxTpRate)
1683 if (idx == maxTpRate2)
1691 if (idx == maxProbRate)
1702 of << std::setw (4) <<
" MCS" << (group.
streams - 1) * 8 + i;
1706 of << std::setw (7) <<
" MCS" << +i <<
"/" << (int) group.
streams;
1709 of <<
" " << std::setw (3) << +idx <<
" ";
1716 std::setw (7) << station->
m_groupsTable[groupId].m_ratesTable[i].throughput / 100 <<
" " <<
1717 std::setw (7) << station->
m_groupsTable[groupId].m_ratesTable[i].ewmaProb <<
" " <<
1718 std::setw (7) << station->
m_groupsTable[groupId].m_ratesTable[i].ewmsdProb <<
" " <<
1719 std::setw (7) << station->
m_groupsTable[groupId].m_ratesTable[i].prob <<
" " <<
1720 std::setw (2) << station->
m_groupsTable[groupId].m_ratesTable[i].retryCount <<
" " <<
1721 std::setw (3) << station->
m_groupsTable[groupId].m_ratesTable[i].prevNumRateSuccess <<
" " <<
1722 std::setw (3) << station->
m_groupsTable[groupId].m_ratesTable[i].prevNumRateAttempt <<
" " <<
1723 std::setw (9) << station->
m_groupsTable[groupId].m_ratesTable[i].successHist <<
" " <<
1724 std::setw (9) << station->
m_groupsTable[groupId].m_ratesTable[i].attemptHist <<
"\n";
1772 uint8_t groupId = 0;
1774 while (groupId < m_numGroups && !station->m_groupsTable[groupId].m_supported)
1778 while (rateId < m_numRates && !station->m_groupsTable[groupId].m_ratesTable[rateId].supported)
1792 while (rateId < m_numRates && !station->m_groupsTable[groupId].m_ratesTable[rateId].supported)
1805 for (uint8_t i = 0; i <
phy->GetNMcs (); i++)
1810 vhtMcsList.push_back (mode);
1821 for (uint8_t i = 0; i <
phy->GetNMcs (); i++)
1826 htMcsList.push_back (mode);
1838 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support HE rates");
void DoReportRtsOk(WifiRemoteStation *station, double ctsSnr, WifiMode ctsMode, double rtsSnr)
This method is a pure virtual method that must be implemented by the sub-class.
uint16_t m_maxProbRate
The highest success probability rate of this group.
uint8_t GetNMcsSupported(Mac48Address address) const
Return the number of MCS supported by the station.
uint16_t m_maxProbRate
rate with highest prob of success
bool HasVhtSupported(void) const
Return whether the device has VHT capability support enabled.
uint8_t m_nSampleCol
Number of sample columns.
Simulation virtual time values and global simulation resolution.
Ptr< WifiMac > GetMac(void) const
Return the WifiMac.
Time GetMpduTxTime(uint8_t groupId, WifiMode mode) const
Obtain the TXtime saved in the group information.
Time CalculateFirstMpduTxDuration(Ptr< WifiPhy > phy, uint8_t streams, uint8_t sgi, uint16_t chWidth, WifiMode mode)
Estimates the TxTime of a frame with a given mode and group (stream, guard interval and channel width...
void DoReportAmpduTxStatus(WifiRemoteStation *station, uint8_t nSuccessfulMpdus, uint8_t nFailedMpdus, double rxSnr, double dataSnr)
Typically called per A-MPDU, either when a Block ACK was successfully received or when a BlockAckTime...
A struct to contain information of a group.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
WifiModeList GetVhtDeviceMcsList(void) const
Returns a list of only the VHT MCS supported by the device.
void SetStream(int64_t stream)
Specifies the stream number for the RngStream.
uint8_t m_sampleGroup
The group that the sample rate belongs to.
AttributeValue implementation for Boolean.
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
static const uint8_t MAX_SUPPORTED_STREAMS
Constants for maximum values.
TracedValue< uint64_t > m_currentRate
Trace rate changes.
uint8_t m_index
vector index
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
void SetChannelWidth(uint16_t channelWidth)
Sets the selected channelWidth (in MHz)
void PrintTable(MinstrelHtWifiRemoteStation *station)
Printing Minstrel Table.
uint16_t GetLowestIndex(MinstrelHtWifiRemoteStation *station)
Returns the lowest global index of the rates supported by the station.
NS_ASSERT_MSG(false, "Ipv4AddressGenerator::MaskToIndex(): Impossible")
void SetupMac(const Ptr< WifiMac > mac)
Set up MAC associated with this device since it is the object that knows the full set of timing param...
void UpdatePacketCounters(MinstrelHtWifiRemoteStation *station, uint8_t nSuccessfulMpdus, uint8_t nFailedMpdus)
Update the number of sample count variables.
void SetBestProbabilityRate(MinstrelHtWifiRemoteStation *station, uint16_t index)
Set index rate as maxProbRate if it is better than current value.
uint16_t m_maxTpRate
the current throughput rate
uint16_t m_txrate
current transmit rate
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
MinstrelHtWifiRemoteStation structure.
uint16_t m_maxTpRate2
second highest throughput rate
double GetSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station)
hold per-remote-station state for Minstrel Wifi manager.
void CalculateRetransmits(MinstrelHtWifiRemoteStation *station, uint16_t index)
Calculate the number of retransmissions to set for the index rate.
uint32_t m_ampduPacketCount
Number of A-MPDUs transmitted.
static const uint8_t MAX_VHT_STREAM_GROUPS
Maximal number of groups per stream in VHT (4 possible channel widths and 2 possible SGI configuratio...
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
WifiRemoteStation * DoCreateStation(void) const
uint16_t m_sampleRate
current sample rate
void SetStbc(bool stbc)
Sets if STBC is being used.
void DoReportFinalRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
Mac48Address m_address
Mac48Address of the remote station.
HtMinstrelRate m_ratesTable
Information about rates of this group.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
uint8_t sgi
short guard interval (0 or 1)
uint16_t FindRate(MinstrelHtWifiRemoteStation *station)
Find a rate to use from Minstrel Table.
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode)
This method is a pure virtual method that must be implemented by the sub-class.
MinstrelRate m_minstrelTable
minstrel table
Time CalculateMpduTxDuration(Ptr< WifiPhy > phy, uint8_t streams, uint8_t sgi, uint16_t chWidth, WifiMode mode)
Estimates the TxTime of a frame with a given mode and group (stream, guard interval and channel width...
uint32_t m_frameLength
Frame length used for calculate modes TxTime.
MinstrelMcsGroups m_minstrelGroups
Global array for groups information.
bool m_isHt
If the station is HT capable.
bool m_sampleDeferred
a flag to indicate sample rate is on the second stage
std::vector< std::vector< uint8_t > > SampleRate
Data structure for a Sample Rate table A vector of a vector uint8_t.
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
std::vector< RateInfo > MinstrelRate
Data structure for a Minstrel Rate table A vector of a struct RateInfo.
bool DoNeedRetransmission(WifiRemoteStation *st, Ptr< const Packet > packet, bool normally)
uint8_t m_nModes
number of modes supported
uint8_t GetRateId(uint16_t index)
For managing rates from different groups, a global index for all rates in all groups is used...
WifiRemoteStationState * m_state
Remote station state.
bool m_printStats
If statistics table should be printed.
uint16_t GetIndex(uint8_t groupId, uint8_t rateId)
Returns the global index corresponding to the groupId and rateId.
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
uint8_t m_lookAroundRate
The % to try other rates than our current rate.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
uint8_t m_ewmaLevel
Exponential weighted moving average level (or coefficient).
void SetBestStationThRates(MinstrelHtWifiRemoteStation *station, uint16_t index)
Set index rate as maxTpRate or maxTp2Rate if is better than current values.
Time GetFirstMpduTxTime(uint8_t groupId, WifiMode mode) const
Obtain the TXtime saved in the group information.
uint8_t GetNumberOfSupportedStreams(Mac48Address address) const
Return the number of spatial streams supported by the station.
int64x64_t Min(const int64x64_t &a, const int64x64_t &b)
Minimum.
bool GetVhtSupported(Mac48Address address) const
Return whether the station supports VHT or not.
virtual uint32_t GetInteger(void)=0
Get the next random value as an integer drawn from the distribution.
uint16_t chWidth
channel width (MHz)
bool m_isSampling
a flag to indicate we are currently sampling
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station)
bool IsValid(void) const
The standard disallows certain combinations of WifiMode, number of spatial streams, and channel widths.
uint8_t GetNumberOfAntennas(void)
AttributeValue implementation for Time.
SampleRate m_sampleTable
sample table
uint8_t m_col
To keep track of the current position in the our random sample table going row by row from 1st column...
void SetGuardInterval(uint16_t guardInterval)
Sets the guard interval duration (in nanoseconds)
Hold an unsigned integer type.
static const uint8_t MAX_VHT_GROUP_RATES
Number of rates (or MCS) per VHT group.
static const uint8_t MAX_HT_WIDTH
Maximal channel width.
virtual ~MinstrelHtWifiManager()
WifiPreamble GetPreambleForTransmission(WifiMode mode, Mac48Address dest)
Return the preamble to be used for the transmission.
int64x64_t Max(const int64x64_t &a, const int64x64_t &b)
Maximum.
static const uint8_t MAX_HT_STREAM_GROUPS
Maximal number of groups per stream in HT (2 possible channel widths and 2 possible SGI configuration...
WifiMode GetMode(void) const
uint32_t m_sampleWait
How many transmission attempts to wait until a new sample.
virtual void SetupPhy(const Ptr< WifiPhy > phy)
Set up PHY associated with this device since it is the object that knows the full set of transmit rat...
Ptr< UniformRandomVariable > m_uniformRandomVariable
Provides uniform random variables.
hold a list of per-remote-station state.
WifiModulationClass GetModulationClass() const
bool m_useVhtOnly
If only VHT MCS should be used, instead of HT and VHT.
std::vector< struct GroupInfo > McsGroupData
Data structure for a table of groups.
uint32_t m_longRetry
long retries such as data packets
static TypeId GetTypeId(void)
Get the type ID.
static const uint8_t MAX_VHT_WIDTH
Maximal channel width.
uint32_t m_ampduLen
Number of MPDUs in an A-MPDU.
void SetNss(uint8_t nss)
Sets the number of Nss refer to IEEE 802.11n Table 20-28 for explanation and range.
bool m_initialized
for initializing tables
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
int64_t GetMicroSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
The MPDU is part of an A-MPDU, but is not the last aggregate.
uint16_t GetNextSample(MinstrelHtWifiRemoteStation *station)
Getting the next sample from Sample Table.
uint16_t m_maxTpRate2
The second max throughput rate of this group.
double ewmaProb
Exponential weighted moving average of probability.
Time perfectTxTime
Perfect transmission time calculation, or frame calculation.
bool IsValidMcs(Ptr< WifiPhy > phy, uint8_t streams, uint16_t chWidth, WifiMode mode)
Check the validity of a combination of number of streams, chWidth and mode.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint8_t m_numRates
Number of rates per group Minstrel should consider.
void InitSampleTable(MinstrelHtWifiRemoteStation *station)
Initialize Sample Table.
void SetPreambleType(WifiPreamble preamble)
Sets the preamble type.
Ptr< const AttributeChecker > MakeBooleanChecker(void)
double CalculateThroughput(MinstrelHtWifiRemoteStation *station, uint8_t groupId, uint8_t rateId, double ewmaProb)
Return the average throughput of the MCS defined by groupId and rateId.
void DoReportRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
void UpdateRetry(MinstrelHtWifiRemoteStation *station)
Update the number of retries and reset accordingly.
uint32_t m_sampleCount
Max number of samples per update interval.
void DoReportFinalDataFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
uint8_t m_numGroups
Number of groups Minstrel should consider.
void SetHeSupported(bool enable)
Enable or disable HE capability support.
Time m_updateStats
How frequent do we calculate the stats (1/10 seconds).
static const uint8_t MAX_HT_GROUP_RATES
Number of rates (or MCS) per HT group.
Mac48Address GetAddress(const WifiRemoteStation *station) const
Return the address of the station.
void DoReportDataFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
void UpdateStats(MinstrelHtWifiRemoteStation *station)
Updating the Minstrel Table every 1/10 seconds.
McsGroupData m_groupsTable
Table of groups with stats.
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
std::vector< WifiMode > WifiModeList
In various parts of the code, folk are interested in maintaining a list of transmission modes...
uint16_t m_maxTpRate
The max throughput rate of this group.
static Time Now(void)
Return the current simulation virtual time.
std::vector< HtRateInfo > HtMinstrelRate
Data structure for a Minstrel Rate table.
std::ofstream m_statsFile
File where statistics table is written.
void RateInit(MinstrelHtWifiRemoteStation *station)
Initialize Minstrel Table.
int m_totalPacketsCount
total number of packets as of now
bool GetAggregation(const WifiRemoteStation *station) const
Return whether the given station supports A-MPDU.
Implementation of Minstrel HT Rate Control AlgorithmMinstrel-HT is a rate adaptation mechanism for th...
bool HasHtSupported(void) const
Return whether the device has HT capability support enabled.
void SetupPhy(const Ptr< WifiPhy > phy)
Set up PHY associated with this device since it is the object that knows the full set of transmit rat...
void SetMode(WifiMode mode)
Sets the selected payload transmission mode.
Data structure to contain the information that defines a group.
bool IsLowLatency(void) const
void DoInitialize(void)
Initialize() implementation.
uint8_t GetNBasicModes(void) const
Return the number of basic modes we support.
void StatsDump(MinstrelHtWifiRemoteStation *station, uint8_t groupId, std::ofstream &of)
Print group statistics.
uint64_t GetNonHtReferenceRate(void) const
int m_samplePacketsCount
how many packets we have sample so far
virtual void SetupMac(const Ptr< WifiMac > mac)
Set up MAC associated with this device since it is the object that knows the full set of timing param...
Ptr< WifiPhy > GetPhy(void) const
Return the WifiPhy.
uint8_t GetVhtGroupId(uint8_t txstreams, uint8_t sgi, uint16_t chWidth)
Returns the groupId of a VHT MCS with the given number of streams, if using sgi and the channel width...
double CalculateEwmsd(double oldEwmsd, double currentProb, double ewmaProb, double weight)
Perform EWMSD (Exponentially Weighted Moving Standard Deviation) calculation.
bool GetHtSupported(Mac48Address address) const
Return whether the station supports HT or not.
std::vector< McsGroup > MinstrelMcsGroups
Data structure for a table of group definitions.
void AddMpduTxTime(uint8_t groupId, WifiMode mode, Time t)
Save a TxTime to the vector of groups.
A struct to contain all statistics information related to a data rate.
void SetNextSample(MinstrelHtWifiRemoteStation *station)
Set the next sample from Sample Table.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
WifiModeList GetHtDeviceMcsList(void) const
Returns a list of only the HT MCS supported by the device.
uint32_t m_numSamplesSlow
Number of times a slow rate was sampled.
Ptr< MinstrelWifiManager > m_legacyManager
Pointer to an instance of MinstrelWifiManager.
uint32_t numSamplesSkipped
Number of times this rate statistics were not updated because no attempts have been made...
uint8_t GetDefaultTxPowerLevel(void) const
uint32_t m_sampleTries
Number of sample tries after waiting sampleWait.
uint8_t GetHtGroupId(uint8_t txstreams, uint8_t sgi, uint16_t chWidth)
Returns the groupId of a HT MCS with the given number of streams, if using sgi and the channel width ...
void SetNess(uint8_t ness)
Sets the Ness number refer to IEEE 802.11n Table 20-6 for explanation.
uint8_t GetGroupId(uint16_t index)
Return the groupId from the global index.
uint32_t m_avgAmpduLen
Average number of MPDUs in an A-MPDU.
uint32_t CountRetries(MinstrelHtWifiRemoteStation *station)
Count retries.
bool GetShortGuardInterval(Mac48Address address) const
Return whether the station supports HT/VHT short guard interval.
void UpdateRate(MinstrelHtWifiRemoteStation *station)
Update rate.
static uint16_t GetChannelWidthForTransmission(WifiMode mode, uint16_t maxSupportedChannelWidth)
Return the channel width that corresponds to the selected mode (instead of letting the PHY's default ...
uint32_t m_shortRetry
short retries such as control packts
WifiMode GetBasicMode(uint8_t i) const
Return a basic mode from the set of basic modes.
void DoReportDataOk(WifiRemoteStation *station, double ackSnr, WifiMode ackMode, double dataSnr)
This method is a pure virtual method that must be implemented by the sub-class.
uint8_t GetMcsValue(void) const
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
void AddFirstMpduTxTime(uint8_t groupId, WifiMode mode, Time t)
Save a TxTime to the vector of groups.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
void CheckInit(MinstrelHtWifiRemoteStation *station)
Check for initializations.
hold per-remote-station state.
uint64_t GetDataRate(uint16_t channelWidth, uint16_t guardInterval, uint8_t nss) const
WifiMode GetMcsSupported(const WifiRemoteStation *station, uint8_t i) const
Return the WifiMode supported by the specified station at the specified index.
uint16_t GetChannelWidth(const WifiRemoteStation *station) const
Return the channel width supported by the station.
uint8_t GetNess(const WifiRemoteStation *station) const
Time m_nextStatsUpdate
10 times every second