an implementation of DSSS error rate model 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 72 of file dsss-error-rate-model.h.
|
static |
A function DQPSK.
x | the input variable |
Definition at line 44 of file dsss-error-rate-model.cc.
References NS_LOG_FUNCTION_NOARGS, and two-ray-to-three-gpp-ch-calibration::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 52 of file dsss-error-rate-model.cc.
References NS_LOG_FUNCTION_NOARGS.
Referenced by ns3::ErrorRateModel::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 104 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::ErrorRateModel::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 70 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::ErrorRateModel::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 61 of file dsss-error-rate-model.cc.
References DqpskFunction(), and NS_LOG_FUNCTION_NOARGS.
Referenced by ns3::ErrorRateModel::GetChunkSuccessRate().
|
staticprotected |
WLAN impossible.
Definition at line 130 of file dsss-error-rate-model.h.
Referenced by GetDsssDqpskCck11SuccessRate(), and GetDsssDqpskCck5_5SuccessRate().
|
staticprotected |
WLAN perfect.
Definition at line 128 of file dsss-error-rate-model.h.
Referenced by GetDsssDqpskCck11SuccessRate(), and GetDsssDqpskCck5_5SuccessRate().