an implementation of DSSS error rate modelThe 802.11b modulations: More...
#include "dsss-error-rate-model.h"
Static Public Member Functions | |
static double | DqpskFunction (double x) |
A function DQPSK. More... | |
static double | GetDsssDbpskSuccessRate (double sinr, uint64_t nbits) |
Return the chunk success rate of the differential BPSK. More... | |
static double | GetDsssDqpskCck11SuccessRate (double sinr, uint64_t nbits) |
Return the chunk success rate of the differential encoded QPSK for 11Mbps data rate. More... | |
static double | GetDsssDqpskCck5_5SuccessRate (double sinr, uint64_t nbits) |
Return the chunk success rate of the differential encoded QPSK for 5.5Mbps data rate. More... | |
static double | GetDsssDqpskSuccessRate (double sinr, uint64_t nbits) |
Return the chunk success rate of the differential encoded QPSK. More... | |
Static Protected Attributes | |
static const double | WLAN_SIR_IMPOSSIBLE = 0.1 |
WLAN impossible. More... | |
static const double | WLAN_SIR_PERFECT = 10.0 |
WLAN perfect. More... | |
an implementation of DSSS error rate model
The 802.11b modulations:
This model is designed to run with highest accuracy using the Gnu Scientific Library (GSL), but if GSL is not installed on the platform, will fall back to (slightly less accurate) Matlab-derived models for the CCK modulation types.
More detailed description and validation can be found in http://www.nsnam.org/~pei/80211b.pdf
Definition at line 66 of file dsss-error-rate-model.h.
|
static |
A function DQPSK.
x | x |
Definition at line 35 of file dsss-error-rate-model.cc.
References NS_LOG_FUNCTION_NOARGS, and sample-rng-plot::x.
Referenced by GetDsssDqpskSuccessRate().
|
static |
Return the chunk success rate of the differential BPSK.
sinr | the SINR ratio (not dB) of the chunk |
nbits | the size of the chunk |
Definition at line 43 of file dsss-error-rate-model.cc.
References NS_LOG_FUNCTION_NOARGS.
Referenced by ns3::NistErrorRateModel::GetChunkSuccessRate(), and ns3::YansErrorRateModel::GetChunkSuccessRate().
|
static |
Return the chunk success rate of the differential encoded QPSK for 11Mbps data rate.
sinr | the SINR ratio (not dB) of the chunk |
nbits | the size of the chunk |
Definition at line 95 of file dsss-error-rate-model.cc.
References min, NS_LOG_DEBUG, NS_LOG_FUNCTION_NOARGS, NS_LOG_WARN, WLAN_SIR_IMPOSSIBLE, and WLAN_SIR_PERFECT.
Referenced by ns3::NistErrorRateModel::GetChunkSuccessRate(), and ns3::YansErrorRateModel::GetChunkSuccessRate().
|
static |
Return the chunk success rate of the differential encoded QPSK for 5.5Mbps data rate.
sinr | the SINR ratio (not dB) of the chunk |
nbits | the size of the chunk |
Definition at line 61 of file dsss-error-rate-model.cc.
References min, NS_LOG_FUNCTION_NOARGS, NS_LOG_WARN, WLAN_SIR_IMPOSSIBLE, and WLAN_SIR_PERFECT.
Referenced by ns3::NistErrorRateModel::GetChunkSuccessRate(), and ns3::YansErrorRateModel::GetChunkSuccessRate().
|
static |
Return the chunk success rate of the differential encoded QPSK.
sinr | the SINR ratio (not dB) of the chunk |
nbits | the size of the chunk |
Definition at line 52 of file dsss-error-rate-model.cc.
References DqpskFunction(), and NS_LOG_FUNCTION_NOARGS.
Referenced by ns3::NistErrorRateModel::GetChunkSuccessRate(), and ns3::YansErrorRateModel::GetChunkSuccessRate().
|
staticprotected |
WLAN impossible.
Definition at line 125 of file dsss-error-rate-model.h.
Referenced by GetDsssDqpskCck11SuccessRate(), and GetDsssDqpskCck5_5SuccessRate().
|
staticprotected |
WLAN perfect.
Definition at line 123 of file dsss-error-rate-model.h.
Referenced by GetDsssDqpskCck11SuccessRate(), and GetDsssDqpskCck5_5SuccessRate().