37 #include <gsl/gsl_math.h>
38 #include <gsl/gsl_integration.h>
39 #include <gsl/gsl_cdf.h>
40 #include <gsl/gsl_sf_bessel.h>
42 #define min(a,b) ((a) < (b) ? (a) : (b))
43 #define max(a,b) ((a) > (b) ? (a) : (b))
44 #define WLAN_SIR_perfect 10.0
45 #define WLAN_SIR_impossible 0.1
59 typedef struct fn_parameter_t
67 return 0.5 * erfc (
x / sqrt (2.0));
70 double f (
double x,
void * params)
74 double f = pow ( 2 * gsl_cdf_ugaussian_P (
x + beta) - 1, n - 1) * exp (-
x *
x / 2.0) / sqrt (2.0 * M_PI);
83 params.
beta = sqrt (2.0 * e2);
85 gsl_integration_workspace* w = gsl_integration_workspace_alloc (1000);
89 gsl_integration_qagiu (&F, -params.
beta, 0, 1e-7, 1000, w, &sep, &error);
90 gsl_integration_workspace_free (w);
100 return 1.0 - pow ( 1.0 -
p_e2 (e1 / 2.0), 2.0);
105 return pow (10.0,
x / 10.0);
110 return 10.0 * log10 (
x);
115 double pi = acos (-1.0);
116 return ( (sqrt (2.0) + 1.0) / sqrt (8.0 * pi * sqrt (2.0))) * (1.0 / sqrt (
x)) * exp ( -(2.0 - sqrt (2.0)) *
x);
139 double EbN0 = sinr * 22000000.0 / 1000000.0;
140 double ber = 0.5 * exp (-EbN0);
165 double EbN0 = sinr * 22000000.0 / 1000000.0 / 2.0;
184 pew =
min (pew, 0.99999);
185 ber = 8.0 / 15.0 * pew;
204 pew =
min (pew, 0.99999);
205 ber = 128.0 / 255.0 * pew;
210 int main (
int argc,
char * argv[])
213 double totalPkt = 200.0;
218 double EcNc, EbN01, EbN02, EbN05, EbN011;
219 double ieee1,ieee2,ieee5,ieee11;
220 double numBits = (1024. + 40. + 14.) * 8.;
221 double dbpsk,dqpsk,cck16,cck256,sepcck16,sepcck256;
222 noise =
DbToNoneDb (noise) * 1.3803e-23 * 290.0 * 22000000;
223 for (rss = -102.0; rss <= -80.0; rss += 0.1)
226 EcNc = sinr * 22000000.0 / 11000000.0;
227 EbN01 = sinr * 22000000.0 / 1000000.0;
229 EbN02 = sinr * 22000000.0 / 1000000.0 / 2.0;
230 EbN05 = sinr * 22000000.0 / 1375000.0 / 4.0;
231 EbN011 = sinr * 22000000.0 / 1375000.0 / 8.0;
233 printf (
"%g %g %g %g %g %g ", rss,
NoneDbToDb (EcNc),
241 printf (
" %g %g %g %g ", ieee1, ieee2,ieee5,ieee11);
242 ieee1 = totalPkt * pow (1 - ieee1, numBits);
243 ieee2 = totalPkt * pow (1 - ieee2, numBits);
244 ieee5 = totalPkt * pow (1 - ieee5, numBits);
245 ieee11 = totalPkt * pow (1 - ieee11, numBits);
247 printf (
" %g %g %g %g ", ieee1, ieee2,ieee5,ieee11);
250 cck16 =
max (0, 8.0 / 15.0 *
p_e2 (4.0 * EbN05 / 2.0));
251 cck256 =
max (0, 128.0 / 255.0 *
p_e1 (8.0 * EbN011 / 2.0));
253 printf (
" %g %g %g %g ", dbpsk, dqpsk,cck16,cck256);
254 dbpsk = totalPkt * pow (1 - dbpsk,numBits);
255 dqpsk = totalPkt * pow (1 - dqpsk,numBits);
256 sepcck16 =
p_e2 (4.0 * EbN05 / 2.0);
257 sepcck256 =
p_e1 (8.0 * EbN011 / 2.0);
258 cck16 = totalPkt * pow (1.0 - sepcck16,numBits / 4.0);
259 cck256 = totalPkt * pow (1.0 - sepcck256,numBits / 8.0);
261 printf (
" %g %g %g %g ", dbpsk, dqpsk,cck16,cck256);
double Get80211bDsssDqpskCCK11BerIeee(double EcNc)
#define WLAN_SIR_impossible
double NoneDbToDb(double x)
double Get80211bDsssDqpskCCK5_5BerIeee(double EcNc)
double Get80211bDsssDbpskBerIeee(double EcNc)
double DQPSKFunction(double x)
double QFunction(double x)
double Get80211bDsssDbpskBer(double sinr)
double Get80211bDsssDqpskBerIeee(double EcNc)
double f(double x, void *params)
double Get80211bDsssDqpskBer(double sinr)
double DbToNoneDb(double x)
list x
Random number samples.