22 #include "ns3/simulator.h"
24 #include "ns3/uinteger.h"
25 #include "ns3/double.h"
27 #define Min(a,b) ((a < b) ? a : b)
61 .AddConstructor<AmrrWifiManager> ()
62 .AddAttribute (
"UpdatePeriod",
63 "The interval between decisions about rate control changes",
67 .AddAttribute (
"FailureRatio",
68 "Ratio of minimum erroneous transmissions needed to switch to a lower rate",
71 MakeDoubleChecker<double> (0.0, 1.0))
72 .AddAttribute (
"SuccessRatio",
73 "Ratio of maximum erroneous transmissions needed to switch to a higher rate",
76 MakeDoubleChecker<double> (0.0, 1.0))
77 .AddAttribute (
"MaxSuccessThreshold",
78 "Maximum number of consecutive success periods needed to switch to a higher rate",
81 MakeUintegerChecker<uint32_t> ())
82 .AddAttribute (
"MinSuccessThreshold",
83 "Minimum number of consecutive success periods needed to switch to a higher rate",
86 MakeUintegerChecker<uint32_t> ())
135 double ctsSnr,
WifiMode ctsMode,
double rtsSnr)
141 double ackSnr,
WifiMode ackMode,
double dataSnr)
225 bool needChange =
false;
273 if (
IsEnough (station) || needChange)
uint32_t m_minSuccessThreshold
uint32_t GetNSupported(const WifiRemoteStation *station) const
Return the number of modes supported by the given station.
bool IsMinRate(AmrrWifiRemoteStation *station) const
Check if the current rate for the given station is the minimum rate.
keep track of time values and allow control of global simulation resolution
#define NS_LOG_FUNCTION(parameters)
AMRR Rate control algorithmThis class implements the AMRR rate control algorithm which was initially ...
virtual WifiRemoteStation * DoCreateStation(void) const
uint32_t m_successThreshold
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
virtual void DoReportFinalRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
void ResetCnt(AmrrWifiRemoteStation *station)
Reset transmission statistics of the given station.
hold per-remote-station state for AMRR Wifi manager.
virtual WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station)
#define NS_ASSERT(condition)
NS_OBJECT_ENSURE_REGISTERED(NullMessageSimulatorImpl)
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
virtual void DoReportRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
uint32_t GetNumberOfReceiveAntennas(const WifiRemoteStation *station) const
Return the number of receive antenna the station has.
WifiMode GetSupported(const WifiRemoteStation *station, uint32_t i) const
Return whether mode associated with the specified station at the specified index. ...
bool GetStbc(const WifiRemoteStation *station) const
Return whether the given station supports space-time block coding (STBC).
virtual bool IsLowLatency(void) const
bool IsFailure(AmrrWifiRemoteStation *station) const
Check if the number of retransmission and transmission error is greater than the number of successful...
hold objects of type ns3::Time
Hold an unsigned integer type.
virtual void DoReportDataFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
int64x64_t Min(const int64x64_t &a, const int64x64_t &b)
void DecreaseRate(AmrrWifiRemoteStation *station)
Decrease the transmission rate to the given station.
hold a list of per-remote-station state.
void IncreaseRate(AmrrWifiRemoteStation *station)
Increase the transmission rate to the given station.
virtual WifiTxVector DoGetDataTxVector(WifiRemoteStation *station, uint32_t size)
virtual 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.
virtual void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode)
This method is a pure virtual method that must be implemented by the sub-class.
static TypeId GetTypeId(void)
bool GetShortGuardInterval(const WifiRemoteStation *station) const
Return whether the given station supports short guard interval.
static Time Now(void)
Return the "current simulation time".
virtual 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.
bool IsSuccess(AmrrWifiRemoteStation *station) const
Check if the number of retransmission and transmission error is less than the number of successful tr...
uint8_t GetDefaultTxPowerLevel(void) const
uint32_t GetLongRetryCount(const WifiRemoteStation *station) const
Return the long retry limit of the given station.
uint32_t m_maxSuccessThreshold
virtual void DoReportFinalDataFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
NS_LOG_COMPONENT_DEFINE("AmrrWifiRemoteStation")
#define NS_LOG_DEBUG(msg)
void UpdateMode(AmrrWifiRemoteStation *station)
Update the mode used to send to the given station.
bool IsMaxRate(AmrrWifiRemoteStation *station) const
Check if the current rate for the given station is the maximum rate.
bool IsEnough(AmrrWifiRemoteStation *station) const
Check if the number of retransmission, transmission error, and successful transmission are greater th...
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
uint32_t GetNumberOfTransmitAntennas(void)
Hold a floating point type.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
hold per-remote-station state.