|
A Discrete-Event Network Simulator
|
API
|
Go to the documentation of this file.
33 #include "ns3/packet.h"
34 #include "ns3/random-variable-stream.h"
35 #include "ns3/simulator.h"
38 #include "ns3/wifi-mac.h"
39 #include "ns3/wifi-phy.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 MakeUintegerChecker<uint8_t> ())
66 .AddAttribute (
"EWMA",
70 MakeUintegerChecker<uint8_t> ())
71 .AddAttribute (
"SampleColumn",
72 "The number of columns used for sampling",
75 MakeUintegerChecker <uint8_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 .AddAttribute (
"PrintSamples",
87 "Print samples table",
91 .AddTraceSource (
"Rate",
92 "Traced value for rate changes (b/s)",
94 "ns3::TracedValueCallback::Uint64")
116 for (
const auto & mode :
phy->GetModeList ())
139 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support HT rates");
143 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support VHT rates");
147 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support HE rates");
251 NS_LOG_DEBUG (
" More retries left for the maximum throughput rate.");
259 NS_LOG_DEBUG (
" More retries left for the second maximum throughput rate.");
268 NS_LOG_DEBUG (
" More retries left for the maximum probability rate.");
289 NS_LOG_DEBUG (
"Look around rate is slower than the maximum throughput rate.");
293 NS_LOG_DEBUG (
" More retries left for the maximum throughput rate.");
301 NS_LOG_DEBUG (
" More retries left for the sampling rate.");
310 NS_LOG_DEBUG (
" More retries left for the maximum probability rate.");
326 NS_LOG_DEBUG (
"Look around rate is faster than the maximum throughput rate.");
330 NS_LOG_DEBUG (
" More retries left for the sampling rate.");
338 NS_LOG_DEBUG (
" More retries left for the maximum throughput rate.");
347 NS_LOG_DEBUG (
" More retries left for the maximum probability rate.");
368 if (channelWidth > 20 && channelWidth != 22)
391 if (channelWidth > 20 && channelWidth != 22)
449 uint8_t ratesSupported = station->
m_nModes;
450 if (delta > ratesSupported * 2)
554 for (uint8_t i = 0; i < station->
m_nModes; i++)
644 uint8_t index_max_tp = 0, index_max_tp2 = 0;
647 NS_LOG_DEBUG (
"Finding the maximum throughput, second maximum throughput, and highest probability");
649 for (uint8_t i = 0; i < station->
m_nModes; i++)
655 if (max_tp < station->m_minstrelTable[i].throughput)
664 for (uint8_t i = 0; i < station->
m_nModes; i++)
666 if ((i != index_max_tp) && (max_tp < station->m_minstrelTable[i].throughput))
673 uint32_t max_prob = 0;
674 uint8_t index_max_prob = 0;
675 for (uint8_t i = 0; i < station->
m_nModes; i++)
693 if (index_max_tp > station->
m_txrate)
699 ")\tsecond max throughput=" << +index_max_tp2 <<
"(" <<
GetSupported (station, index_max_tp2) <<
700 ")\tmax prob=" << +index_max_prob <<
"(" <<
GetSupported (station, index_max_prob) <<
")");
758 double dataSnr, uint16_t dataChannelWidth, uint8_t dataNss)
760 NS_LOG_FUNCTION (
this << st << ackSnr << ackMode << dataSnr << dataChannelWidth << +dataNss);
917 for (uint8_t i = 0; i < station->
m_nModes; i++)
939 for (uint32_t retries = 2; retries < 11; retries++)
943 NS_LOG_DEBUG (
" totalTxTimeWithGivenRetries = " << totalTxTimeWithGivenRetries);
959 NS_LOG_FUNCTION (
this << dataTransmissionTime << shortRetries << longRetries);
965 uint32_t cwMax = 1023;
967 for (uint32_t retry = 0; retry < longRetries; retry++)
976 cw =
std::min (cwMax, (cw + 1) * 2);
989 uint8_t numSampleRates = station->
m_nModes;
994 for (uint8_t i = 0; i < numSampleRates; i++ )
1002 newIndex = (i + uv) % numSampleRates;
1007 newIndex = (newIndex + 1) % station->
m_nModes;
1017 uint8_t numSampleRates = station->
m_nModes;
1018 std::stringstream table;
1019 for (uint8_t i = 0; i < numSampleRates; i++)
1035 std::ostringstream tmp;
1037 station->
m_statsFile.open (tmp.str ().c_str (), std::ios::out);
1040 station->
m_statsFile <<
"best _______________rate________________ ________statistics________ ________last_______ ______sum-of________\n" <<
1041 "rate [ name idx airtime max_tp] [avg(tp) avg(prob) sd(prob)] [prob.|retry|suc|att] [#success | #attempts]\n";
1047 for (uint8_t i = 0; i < station->
m_nModes; i++)
1059 if (i == maxTpRate2)
1067 if (i == maxProbRate)
1079 std::setw (2) << i <<
" " <<
1081 std::setw (8) <<
" ----- " <<
1082 std::setw (8) << tmpTh <<
" " <<
1083 std::setw (3) << rate.
ewmaProb / 180 <<
1084 std::setw (3) <<
" --- " <<
1085 std::setw (3) << rate.
prob / 180 <<
" " <<
Ptr< UniformRandomVariable > m_uniformRandomVariable
Provides uniform random variables.
TracedValue< uint64_t > m_currentRate
Trace rate changes.
a unique identifier for an interface.
uint8_t GetDefaultTxPowerLevel(void) const
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
WifiRemoteStation * DoCreateStation(void) const override
uint32_t prob
(# packets success)/(# total packets)
uint64_t attemptHist
Aggregate of all transmission attempts.
uint32_t m_pktLen
packet length used for calculate mode TxTime
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
AttributeValue implementation for Boolean.
uint16_t m_maxTpRate2
second highest throughput rate in bps
bool GetUseNonErpProtection(void) const
Return whether the device supports protection of non-ERP stations.
uint8_t m_ewmaLevel
exponential weighted moving average
Time perfectTxTime
Perfect transmission time calculation, or frame calculation Given a bit rate and a packet length n by...
void RateInit(MinstrelWifiRemoteStation *station)
Initialize Minstrel Table.
Time GetSlot(void) const
Return the slot duration for this PHY.
static Time Now(void)
Return the current simulation virtual time.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::vector< RateInfo > MinstrelRate
Data structure for a Minstrel Rate table A vector of a struct RateInfo.
std::vector< std::vector< uint8_t > > SampleRate
Data structure for a Sample Rate table A vector of a vector uint8_t.
void DoReportRtsOk(WifiRemoteStation *station, double ctsSnr, WifiMode ctsMode, double rtsSnr) override
This method is a pure virtual method that must be implemented by the sub-class.
void UpdateRetry(MinstrelWifiRemoteStation *station)
Update the number of retries and reset accordingly.
WifiMode GetSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether mode associated with the specified station at the specified index.
void UpdatePacketCounters(MinstrelWifiRemoteStation *station)
Update packet counters.
void AddCalcTxTime(WifiMode mode, Time t)
Add transmission time for the given mode to an internal list.
uint32_t m_retry
total retries short + long
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station) override
bool m_printSamples
whether samples table should be printed.
Time GetCalcTxTime(WifiMode mode) const
Estimate the TxTime of a packet with a given mode.
uint16_t FindRate(MinstrelWifiRemoteStation *station)
Find a rate to use from Minstrel Table.
WifiModulationClass GetModulationClass() const
bool m_initialized
for initializing tables
hold a list of per-remote-station state.
uint16_t m_txrate
current transmit rate in bps
bool GetHtSupported(void) const
Return whether the device has HT capability support enabled.
bool GetVhtSupported(void) const
Return whether the device has VHT capability support enabled.
void SetMode(WifiMode mode)
Sets the selected payload transmission mode.
uint8_t GetNSupported(const WifiRemoteStation *station) const
Return the number of modes supported by the given station.
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
void DoReportFinalDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
bool m_isSampling
a flag to indicate we are currently sampling
static TypeId GetTypeId(void)
Get the type ID.
hold per-remote-station state for Minstrel Wifi manager.
uint16_t GetNextSample(MinstrelWifiRemoteStation *station)
Get the next sample from Sample Table.
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Time GetAckTxTime(void) const
Return the estimated Ack TX time for this PHY.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
bool GetShortPreambleEnabled(void) const
Return whether the device uses short PHY preambles.
Time m_updateStats
how frequent do we calculate the stats
MinstrelRate m_minstrelTable
minstrel table
WifiTxVector GetRtsTxVector(MinstrelWifiRemoteStation *station)
Get RTS transmit vector.
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
void DoReportFinalRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
uint32_t throughput
throughput of a rate in bps
std::ofstream m_statsFile
stats file
Ptr< WifiPhy > GetPhy(void) const
Return the WifiPhy.
int m_totalPacketsCount
total number of packets as of now
bool m_sampleDeferred
a flag to indicate sample rate is on the second stage
void InitSampleTable(MinstrelWifiRemoteStation *station)
Initialize Sample Table.
uint8_t m_nModes
number of modes supported
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
uint32_t adjustedRetryCount
adjust the retry limit for this rate
uint32_t m_longRetry
long retries such as data packets
represent a single transmission mode
virtual ~MinstrelWifiManager()
uint16_t m_maxTpRate
the current throughput rate in bps
Implementation of Minstrel Rate Control Algorithm.
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station) override
void PrintTable(MinstrelWifiRemoteStation *station)
Print Minstrel Table.
int64_t GetMicroSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
uint32_t CountRetries(MinstrelWifiRemoteStation *station)
Get the number of retries.
SampleRate m_sampleTable
sample table
uint32_t ewmaProb
EWMA calculation ewma_prob =[prob *(100 - ewma_level) + (ewma_prob_old * ewma_level)]/100.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
bool m_printStats
whether statistics table should be printed.
void UpdateStats(MinstrelWifiRemoteStation *station)
Update the Minstrel Table.
Ptr< const AttributeChecker > MakeBooleanChecker(void)
Simulation virtual time values and global simulation resolution.
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
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 SetupPhy(const Ptr< WifiPhy > phy) override
Set up PHY associated with this device since it is the object that knows the full set of transmit rat...
uint32_t m_shortRetry
short retries such as control packets
int m_samplePacketsCount
how many packets we have sample so far
WifiPreamble GetPreambleForTransmission(WifiModulationClass modulation, bool useShortPreamble)
Return the preamble to be used for the transmission.
int m_numSamplesDeferred
number samples deferred
hold per-remote-station state.
void DoInitialize(void) override
Initialize() implementation.
bool GetAggregation(const WifiRemoteStation *station) const
Return whether the given station supports A-MPDU.
void PrintSampleTable(MinstrelWifiRemoteStation *station)
Print Sample Table.
uint16_t m_sampleRate
current sample rate in bps
void DoReportDataOk(WifiRemoteStation *station, double ackSnr, WifiMode ackMode, double dataSnr, uint16_t dataChannelWidth, uint8_t dataNss) override
This method is a pure virtual method that must be implemented by the sub-class.
uint8_t m_col
To keep track of the current position in the our random sample table going row by row from 1st column...
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
uint16_t m_maxProbRate
rate with highest probability of success in bps
uint32_t prevNumRateSuccess
Number of successful frames transmitted with previous rate.
void UpdateRate(MinstrelWifiRemoteStation *station)
Update the rate.
WifiTxVector GetDataTxVector(MinstrelWifiRemoteStation *station)
Get data transmit vector.
WifiRemoteStationState * m_state
Remote station state.
Time Seconds(double value)
Construct a Time in the indicated unit.
WifiMode GetNonErpSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether non-ERP mode associated with the specified station at the specified index.
A struct to contain all information related to a data rate.
void CheckInit(MinstrelWifiRemoteStation *station)
Check for initializations.
uint8_t m_sampleCol
number of sample columns
void SetupMac(const Ptr< WifiMac > mac) override
Set up MAC associated with this device since it is the object that knows the full set of timing param...
int64_t AssignStreams(int64_t stream) override
Assign a fixed random variable stream number to the random variables used by this model.
AttributeValue implementation for Time.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
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 DoReportDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
void SetStream(int64_t stream)
Specifies the stream number for the RngStream.
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode) override
This method is a pure virtual method that must be implemented by the sub-class.
Hold an unsigned integer type.
Mac48Address m_address
Mac48Address of the remote station.
uint16_t GetChannelWidth(const WifiRemoteStation *station) const
Return the channel width supported by the station.
uint64_t GetDataRate(uint16_t channelWidth, uint16_t guardInterval, uint8_t nss) const
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
TxTime m_calcTxTime
to hold all the calculated TxTime for all modes
void DoReportRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Time m_nextStatsUpdate
10 times every second
uint8_t m_lookAroundRate
the % to try other rates than our current rate
Time GetSifs(void) const
Return the Short Interframe Space (SIFS) for this PHY.
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...
void SetPreambleType(WifiPreamble preamble)
Sets the preamble type.
uint8_t m_index
vector index
bool GetHeSupported(void) const
Return whether the device has HE capability support enabled.
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 prevNumRateAttempt
Number of transmission attempts with previous rate.
uint64_t successHist
Aggregate of all transmission successes.
bool DoNeedRetransmission(WifiRemoteStation *st, Ptr< const Packet > packet, bool normally) override