33 #include "ns3/simulator.h"
35 #include "ns3/double.h"
36 #include "ns3/boolean.h"
41 #define Min(a,b) ((a < b) ? a : b)
54 .SetGroupName (
"Wifi")
56 .AddAttribute (
"UpdateStatistics",
57 "The interval between updating statistics table ",
61 .AddAttribute (
"LookAroundRate",
62 "the percentage to try other rates",
65 MakeDoubleChecker<double> ())
66 .AddAttribute (
"EWMA",
70 MakeDoubleChecker<double> ())
71 .AddAttribute (
"SampleColumn",
72 "The number of columns used for sampling",
75 MakeUintegerChecker <uint32_t> ())
76 .AddAttribute (
"PacketLength",
77 "The packet length used for calculating mode TxTime",
80 MakeUintegerChecker <uint32_t> ())
81 .AddAttribute (
"PrintStats",
82 "Print statistics table",
86 .AddTraceSource (
"Rate",
87 "Traced value for rate changes (b/s)",
89 "ns3::TracedValueCallback::Uint64")
112 for (uint8_t i = 0; i < nModes; i++)
144 if (mode == i->second)
202 std::ostringstream tmp;
204 station->
m_statsFile.open (tmp.str ().c_str (), std::ios::out);
239 NS_LOG_DEBUG (
" More retries left for the maximum throughput rate.");
247 NS_LOG_DEBUG (
" More retries left for the second maximum throughput rate.");
256 NS_LOG_DEBUG (
" More retries left for the maximum probability rate.");
277 NS_LOG_DEBUG (
"Look around rate is slower than the maximum throughput rate.");
281 NS_LOG_DEBUG (
" More retries left for the maximum throughput rate.");
289 NS_LOG_DEBUG (
" More retries left for the sampling rate.");
298 NS_LOG_DEBUG (
" More retries left for the maximum probability rate.");
314 NS_LOG_DEBUG (
"Look around rate is faster than the maximum throughput rate.");
318 NS_LOG_DEBUG (
" More retries left for the sampling rate.");
326 NS_LOG_DEBUG (
" More retries left for the maximum throughput rate.");
335 NS_LOG_DEBUG (
" More retries left for the maximum probability rate.");
356 if (channelWidth > 20 && channelWidth != 22)
371 return WifiTxVector (mode,
GetDefaultTxPowerLevel (),
GetPreambleForTransmission (mode,
GetAddress (station)), 800, 1, 1, 0, channelWidth,
GetAggregation (station),
false);
380 if (channelWidth > 20 && channelWidth != 22)
395 rtsTxVector =
WifiTxVector (mode,
GetDefaultTxPowerLevel (),
GetPreambleForTransmission (mode,
GetAddress (station)), 800, 1, 1, 0, channelWidth,
GetAggregation (station),
false);
439 uint8_t ratesSupported = station->
m_nModes;
440 if (delta > ratesSupported * 2)
544 for (uint8_t i = 0; i < station->
m_nModes; i++)
634 uint32_t max_tp = 0, index_max_tp = 0, index_max_tp2 = 0;
637 NS_LOG_DEBUG (
"Finding the maximum throughput, second maximum throughput, and highest probability");
639 for (uint8_t i = 0; i < station->
m_nModes; i++)
645 if (max_tp < station->m_minstrelTable[i].throughput)
654 for (uint8_t i = 0; i < station->
m_nModes; i++)
656 if ((i != index_max_tp) && (max_tp < station->m_minstrelTable[i].throughput))
663 uint32_t max_prob = 0, index_max_prob = 0;
664 for (uint8_t i = 0; i < station->
m_nModes; i++)
682 if (index_max_tp > station->
m_txrate)
688 ")\tsecond max throughput=" << index_max_tp2 <<
"(" <<
GetSupported (station, index_max_tp2) <<
689 ")\tmax prob=" << index_max_prob <<
"(" <<
GetSupported (station, index_max_prob) <<
")");
743 double ackSnr,
WifiMode ackMode,
double dataSnr)
908 for (uint8_t i = 0; i < station->
m_nModes; i++)
930 for (uint32_t retries = 2; retries < 11; retries++)
934 NS_LOG_DEBUG (
" totalTxTimeWithGivenRetries = " << totalTxTimeWithGivenRetries);
950 NS_LOG_FUNCTION (
this << dataTransmissionTime << shortRetries << longRetries);
954 Time tt = dataTransmissionTime +
GetMac ()->GetAckTimeout ();
956 uint32_t cwMax = 1023;
958 for (uint32_t retry = 0; retry < longRetries; retry++)
961 tt += dataTransmissionTime +
GetMac ()->GetAckTimeout ();
967 cw =
std::min (cwMax, (cw + 1) * 2);
980 uint8_t numSampleRates = station->
m_nModes;
985 for (uint8_t i = 0; i < numSampleRates; i++ )
993 newIndex = (i + uv) % numSampleRates;
998 newIndex = (newIndex + 1) % station->
m_nModes;
1009 uint8_t numSampleRates = station->
m_nModes;
1010 std::stringstream table;
1011 for (uint8_t i = 0; i < numSampleRates; i++)
1028 station->
m_statsFile <<
"best _______________rate________________ ________statistics________ ________last_______ ______sum-of________\n" <<
1029 "rate [ name idx airtime max_tp] [avg(tp) avg(prob) sd(prob)] [prob.|retry|suc|att] [#success | #attempts]\n";
1035 for (uint8_t i = 0; i < station->
m_nModes; i++)
1047 if (i == maxTpRate2)
1055 if (i == maxProbRate)
1067 std::setw (2) << i <<
" " <<
1069 std::setw (8) <<
" ----- " <<
1070 std::setw (8) << tmpTh <<
" " <<
1071 std::setw (3) << rate.
ewmaProb / 180 <<
1072 std::setw (3) <<
" --- " <<
1073 std::setw (3) << rate.
prob / 180 <<
" " <<
1092 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support HT rates");
1102 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support VHT rates");
1112 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support HE rates");
void CheckInit(MinstrelWifiRemoteStation *station)
check for initializations
void PrintTable(MinstrelWifiRemoteStation *station)
printing Minstrel Table
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station)
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...
Simulation virtual time values and global simulation resolution.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
void SetStream(int64_t stream)
Specifies the stream number for the RngStream.
bool m_printStats
If statistics table should be printed.
AttributeValue implementation for Boolean.
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
uint8_t m_index
vector index
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Time perfectTxTime
Perfect transmission time calculation, or frame calculation Given a bit rate and a packet length n by...
Implementation of Minstrel Rate Control AlgorithmMinstrel is a rate control algorithm implemented in ...
bool GetUseNonErpProtection(void) const
Return whether the device supports protection of non-ERP stations.
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
void DoReportFinalDataFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
hold per-remote-station state for Minstrel Wifi manager.
Time m_updateStats
how frequent do we calculate the stats (1/10 seconds)
void UpdateStats(MinstrelWifiRemoteStation *station)
updating the Minstrel Table every 1/10 seconds
#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.
uint32_t m_sampleRate
current sample rate
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
uint32_t GetNextSample(MinstrelWifiRemoteStation *station)
getting the next sample from Sample Table
Mac48Address m_address
Mac48Address of the remote station.
bool DoNeedDataRetransmission(WifiRemoteStation *st, Ptr< const Packet > packet, bool normally)
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
uint32_t m_txrate
current transmit rate
MinstrelRate m_minstrelTable
minstrel table
std::ofstream m_statsFile
stats file
bool m_sampleDeferred
a flag to indicate sample rate is on the second stage
uint16_t GetFrequency(void) const
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.
TracedValue< uint64_t > m_currentRate
Trace rate changes.
bool GetAggregation(const WifiRemoteStation *station) const
Return whether the given station supports A-MPDU.
uint8_t m_nModes
number of modes supported
uint32_t FindRate(MinstrelWifiRemoteStation *station)
find a rate to use from Minstrel Table
uint32_t m_pktLen
packet length used for calculate mode TxTime
WifiRemoteStationState * m_state
Remote station state.
void SetHeSupported(bool enable)
Enable or disable HE capability support.
uint32_t adjustedRetryCount
adjust the retry limit for this rate
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
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.
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode)
This method is a pure virtual method that must be implemented by the sub-class.
Time CalculateTxDuration(uint32_t size, WifiTxVector txVector, uint16_t frequency)
A struct to contain all information related to a data rate.
virtual uint32_t GetInteger(void)=0
Get the next random value as an integer drawn from the distribution.
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...
bool m_isSampling
a flag to indicate we are currently sampling
int m_numSamplesDeferred
number samles deferred
int64_t GetMicroSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
void SetHtSupported(bool enable)
Enable or disable HT capability support.
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...
Time NanoSeconds(uint64_t value)
Construct a Time in the indicated unit.
uint32_t prevNumRateSuccess
Number of successful frames transmitted with previous rate.
Hold an unsigned integer type.
WifiPreamble GetPreambleForTransmission(WifiMode mode, Mac48Address dest)
Return the preamble to be used for the transmission.
uint64_t GetDataRate(uint8_t channelWidth, uint16_t guardInterval, uint8_t nss) const
void PrintSampleTable(MinstrelWifiRemoteStation *station)
printing Sample Table
uint8_t GetChannelWidth(const WifiRemoteStation *station) const
Return the channel width supported by the station.
uint32_t prevNumRateAttempt
Number of transmission attempts with previous rate.
WifiMode GetMode(uint8_t mode) const
The WifiPhy::GetNModes() and WifiPhy::GetMode() methods are used (e.g., by a WifiRemoteStationManager...
uint64_t attemptHist
Aggregate of all transmission attempts.
double m_ewmaLevel
exponential weighted moving average
uint64_t successHist
Aggregate of all transmission successes.
WifiRemoteStation * DoCreateStation(void) const
Mac48Address GetAddress(const WifiRemoteStation *station) const
Return the address of the station.
void AddCalcTxTime(WifiMode mode, Time t)
Add transmission time for the given mode to an internal list.
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...
void DoReportFinalRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
hold a list of per-remote-station state.
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station)
uint32_t m_longRetry
long retries such as data packets
bool m_initialized
for initializing tables
uint32_t ewmaProb
EWMA calculation ewma_prob =[prob *(100 - ewma_level) + (ewma_prob_old * ewma_level)]/100.
TxTime m_calcTxTime
to hold all the calculated TxTime for all modes
bool IsLowLatency(void) const
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void UpdateRate(MinstrelWifiRemoteStation *station)
updating the rate
uint32_t m_maxTpRate2
second highest throughput rate
void SetPreambleType(WifiPreamble preamble)
Sets the preamble type.
WifiTxVector GetDataTxVector(MinstrelWifiRemoteStation *station)
Get data transmit vector.
Ptr< const AttributeChecker > MakeBooleanChecker(void)
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
uint32_t throughput
throughput of a rate
static Time Now(void)
Return the current simulation virtual time.
uint32_t m_retry
total retries short + long
int m_totalPacketsCount
total number of packets as of now
WifiMode GetSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether mode associated with the specified station at the specified index. ...
Ptr< UniformRandomVariable > m_uniformRandomVariable
Provides uniform random variables.
void SetMode(WifiMode mode)
Sets the selected payload transmission mode.
void UpdateRetry(MinstrelWifiRemoteStation *station)
update the number of retries and reset accordingly
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
double m_lookAroundRate
the % to try other rates than our current rate
int m_samplePacketsCount
how many packets we have sample so far
static TypeId GetTypeId(void)
Get the type ID.
uint8_t GetDefaultTxPowerLevel(void) const
void InitSampleTable(MinstrelWifiRemoteStation *station)
initialize Sample Table
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...
uint32_t m_maxProbRate
rate with highest prob of success
WifiMode GetNonErpSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether non-ERP mode associated with the specified station at the specified index...
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
void DoReportRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
WifiTxVector GetRtsTxVector(MinstrelWifiRemoteStation *station)
Get RTS transmit vector.
void SetVhtSupported(bool enable)
Enable or disable VHT capability support.
uint32_t m_maxTpRate
the current throughput rate
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Time Seconds(double value)
Construct a Time in the indicated unit.
uint32_t CountRetries(MinstrelWifiRemoteStation *station)
Count retries.
Time GetCalcTxTime(WifiMode mode) const
for estimating the TxTime of a packet with a given mode
void DoReportDataFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
uint8_t GetNSupported(const WifiRemoteStation *station) const
Return the number of modes supported by the given station.
uint32_t m_sampleCol
number of sample columns
virtual ~MinstrelWifiManager()
uint32_t m_shortRetry
short retries such as control packts
This class can be used to hold variables of floating point type such as 'double' or 'float'...
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
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.
a unique identifier for an interface.
Time CalculateTimeUnicastPacket(Time dataTransmissionTime, uint32_t shortRetries, uint32_t longRetries)
Estimate the time to transmit the given packet with the given number of retries.
void RateInit(MinstrelWifiRemoteStation *station)
initialize Minstrel Table
TypeId SetParent(TypeId tid)
Set the parent TypeId.
std::vector< std::vector< uint32_t > > SampleRate
Data structure for a Sample Rate table A vector of a vector uint32_t.
hold per-remote-station state.
uint8_t GetNModes(void) const
The WifiPhy::GetNModes() and WifiPhy::GetMode() methods are used (e.g., by a WifiRemoteStationManager...
uint32_t prob
(# pkts success )/(# total pkts)
Ptr< WifiMac > GetMac(void) const
Return the WifiMac.
void UpdatePacketCounters(MinstrelWifiRemoteStation *station)
Update packet counters.
Time m_nextStatsUpdate
10 times every second