38 .SetGroupName (
"Wifi")
51 return std::log (val) / std::log (2.0);
57 double EbNo = snr * signalSpread / phyRate;
58 double z = std::sqrt (EbNo);
59 double ber = 0.5 * erfc (z);
67 double EbNo = snr * signalSpread / phyRate;
68 double z = std::sqrt ((1.5 *
Log2 (m) * EbNo) / (m - 1.0));
69 double z1 = ((1.0 - 1.0 / std::sqrt (m)) * erfc (z));
70 double z2 = 1 - std::pow ((1 - z1), 2);
71 double ber = z2 /
Log2 (m);
72 NS_LOG_INFO (
"Qam m=" << m <<
" rate=" << phyRate <<
" snr=" << snr <<
" ber=" << ber);
91 double retval =
Factorial (n) / (
Factorial (k) *
Factorial (n - k)) * std::pow (p, static_cast<double> (k)) * std::pow (1 - p, static_cast<double> (n - k));
99 unsigned int dstart = (d + 1) / 2;
100 unsigned int dend = d;
103 for (
unsigned int i = dstart; i < dend; i++)
114 unsigned int dstart = d / 2 + 1;
115 unsigned int dend = d;
118 for (
unsigned int i = dstart; i < dend; i++)
122 pd += 0.5 *
Binomial (d / 2, ber, d);
144 uint32_t signalSpread, uint32_t phyRate,
145 uint32_t dFree, uint32_t adFree)
const
147 double ber =
GetBpskBer (snr, signalSpread, phyRate);
153 double pmu = adFree * pd;
154 pmu = std::min (pmu, 1.0);
155 double pms = std::pow (1 - pmu, nbits);
161 uint32_t signalSpread,
163 uint32_t m, uint32_t dFree,
164 uint32_t adFree, uint32_t adFreePlusOne)
const
166 double ber =
GetQamBer (snr, m, signalSpread, phyRate);
173 double pmu = adFree * pd;
176 pmu += adFreePlusOne * pd;
177 pmu = std::min (pmu, 1.0);
178 double pms = std::pow (1 - pmu, static_cast<double> (nbits));
339 NS_ASSERT (
"undefined DSSS/HR-DSSS datarate");
static TypeId GetTypeId(void)
double CalculatePdEven(double ber, unsigned int d) const
static double GetDsssDqpskCck11SuccessRate(double sinr, uint32_t nbits)
Return the chunk success rate of the differential encoded QPSK for 11Mbps data rate.
double CalculatePd(double ber, unsigned int d) const
enum WifiCodeRate GetCodeRate(uint8_t nss) const
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
double GetFecBpskBer(double snr, double nbits, uint32_t signalSpread, uint32_t phyRate, uint32_t dFree, uint32_t adFree) const
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
uint16_t GetConstellationSize(uint8_t nss) const
enum WifiModulationClass GetModulationClass() const
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
double CalculatePdOdd(double ber, unsigned int d) const
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
double GetQamBer(double snr, unsigned int m, uint32_t signalSpread, uint32_t phyRate) const
Return BER of QAM-m with the given parameters.
bool IsShortGuardInterval(void) const
static double GetDsssDqpskSuccessRate(double sinr, uint32_t nbits)
Return the chunk success rate of the differential encoded QPSK.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
the interface for Wifi's error models
double GetFecQamBer(double snr, uint32_t nbits, uint32_t signalSpread, uint32_t phyRate, uint32_t m, uint32_t dfree, uint32_t adFree, uint32_t adFreePlusOne) const
uint64_t GetPhyRate(uint32_t channelWidth, bool isShortGuardInterval, uint8_t nss) const
Model the error rate for different modulations.
uint32_t GetChannelWidth(void) const
virtual double GetChunkSuccessRate(WifiMode mode, WifiTxVector txVector, double snr, uint32_t nbits) const
A pure virtual method that must be implemented in the subclass.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
double Log2(double val) const
Return the logarithm of the given value to base 2.
uint64_t GetDataRate(uint32_t channelWidth, bool isShortGuardInterval, uint8_t nss) const
uint32_t Factorial(uint32_t k) const
Return k!
static double GetDsssDqpskCck5_5SuccessRate(double sinr, uint32_t nbits)
Return the chunk success rate of the differential encoded QPSK for 5.5Mbps data rate.
double GetBpskBer(double snr, uint32_t signalSpread, uint32_t phyRate) const
Return BER of BPSK with the given parameters.
double Binomial(uint32_t k, double p, uint32_t n) const
Return Binomial distribution for a given k, p, and n.
static double GetDsssDbpskSuccessRate(double sinr, uint32_t nbits)
Return the chunk success rate of the differential BPSK.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.