A Discrete-Event Network Simulator
API
ofdm-he-validation.cc
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * This program is free software; you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License version 2 as
5  * published by the Free Software Foundation;
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15  *
16  * Author: Sébastien Deronne <sebastien.deronne@gmail.com>
17  */
18 
19 // This example is used to validate NIST and YANS error rate models for VHT rates.
20 //
21 // It outputs plots of the Frame Success Rate versus the Signal-to-noise ratio for
22 // both NIST and YANS error rate models and for every HE MCS value.
23 
24 #include <fstream>
25 #include <cmath>
26 #include "ns3/gnuplot.h"
27 #include "ns3/command-line.h"
28 #include "ns3/yans-error-rate-model.h"
29 #include "ns3/nist-error-rate-model.h"
30 #include "ns3/wifi-tx-vector.h"
31 
32 using namespace ns3;
33 
34 int main (int argc, char *argv[])
35 {
36  uint32_t FrameSize = 1500; //bytes
37  std::ofstream yansfile ("yans-frame-success-rate-ax.plt");
38  std::ofstream nistfile ("nist-frame-success-rate-ax.plt");
39  std::vector <std::string> modes;
40 
41  modes.push_back ("HeMcs0");
42  modes.push_back ("HeMcs1");
43  modes.push_back ("HeMcs2");
44  modes.push_back ("HeMcs3");
45  modes.push_back ("HeMcs4");
46  modes.push_back ("HeMcs5");
47  modes.push_back ("HeMcs6");
48  modes.push_back ("HeMcs7");
49  modes.push_back ("HeMcs8");
50  modes.push_back ("HeMcs9");
51  modes.push_back ("HeMcs10");
52  modes.push_back ("HeMcs11");
53 
55  cmd.AddValue ("FrameSize", "The frame size", FrameSize);
56  cmd.Parse (argc, argv);
57 
58  Gnuplot yansplot = Gnuplot ("yans-frame-success-rate-ax.eps");
59  Gnuplot nistplot = Gnuplot ("nist-frame-success-rate-ax.eps");
60 
61  Ptr <YansErrorRateModel> yans = CreateObject<YansErrorRateModel> ();
62  Ptr <NistErrorRateModel> nist = CreateObject<NistErrorRateModel> ();
63  WifiTxVector txVector;
64 
65  for (uint32_t i = 0; i < modes.size (); i++)
66  {
67  std::cout << modes[i] << std::endl;
68  Gnuplot2dDataset yansdataset (modes[i]);
69  Gnuplot2dDataset nistdataset (modes[i]);
70  txVector.SetMode (modes[i]);
71 
72  for (double snr = -5.0; snr <= 40.0; snr += 0.1)
73  {
74  double ps = yans->GetChunkSuccessRate (WifiMode (modes[i]), txVector, std::pow (10.0,snr / 10.0), FrameSize * 8);
75  if (ps < 0.0 || ps > 1.0)
76  {
77  //error
78  exit (1);
79  }
80  yansdataset.Add (snr, ps);
81 
82  ps = nist->GetChunkSuccessRate (WifiMode (modes[i]), txVector, std::pow (10.0,snr / 10.0), FrameSize * 8);
83  if (ps < 0.0 || ps > 1.0)
84  {
85  //error
86  exit (1);
87  }
88  nistdataset.Add (snr, ps);
89  }
90 
91  yansplot.AddDataset (yansdataset);
92  nistplot.AddDataset (nistdataset);
93  }
94 
95  yansplot.SetTerminal ("postscript eps color enh \"Times-BoldItalic\"");
96  yansplot.SetLegend ("SNR(dB)", "Frame Success Rate");
97  yansplot.SetExtra ("set xrange [-5:55]\n\
98 set yrange [0:1]\n\
99 set style line 1 linewidth 5\n\
100 set style line 2 linewidth 5\n\
101 set style line 3 linewidth 5\n\
102 set style line 4 linewidth 5\n\
103 set style line 5 linewidth 5\n\
104 set style line 6 linewidth 5\n\
105 set style line 7 linewidth 5\n\
106 set style line 8 linewidth 5\n\
107 set style line 9 linewidth 5\n\
108 set style line 10 linewidth 5\n\
109 set style line 11 linewidth 5\n\
110 set style increment user" );
111  yansplot.GenerateOutput (yansfile);
112  yansfile.close ();
113 
114  nistplot.SetTerminal ("postscript eps color enh \"Times-BoldItalic\"");
115  nistplot.SetLegend ("SNR(dB)", "Frame Success Rate");
116  nistplot.SetExtra ("set xrange [-5:55]\n\
117 set yrange [0:1]\n\
118 set style line 1 linewidth 5\n\
119 set style line 2 linewidth 5\n\
120 set style line 3 linewidth 5\n\
121 set style line 4 linewidth 5\n\
122 set style line 5 linewidth 5\n\
123 set style line 6 linewidth 5\n\
124 set style line 7 linewidth 5\n\
125 set style line 8 linewidth 5\n\
126 set style line 9 linewidth 5\n\
127 set style line 10 linewidth 5\n\
128 set style line 11 linewidth 5\n\
129 set style increment user" );
130 
131  nistplot.GenerateOutput (nistfile);
132  nistfile.close ();
133 }
134 
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
Class to represent a 2D points plot.
Definition: gnuplot.h:117
void AddDataset(const GnuplotDataset &dataset)
Definition: gnuplot.cc:756
cmd
Definition: second.py:35
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
Definition: wifi-mode.h:97
a simple class to generate gnuplot-ready plotting commands from a set of datasets.
Definition: gnuplot.h:371
void GenerateOutput(std::ostream &os)
Writes gnuplot commands and data values to a single output stream.
Definition: gnuplot.cc:762
Parse command-line arguments.
Definition: command-line.h:213
void SetLegend(const std::string &xLegend, const std::string &yLegend)
Definition: gnuplot.cc:736
Every class exported by the ns3 library is enclosed in the ns3 namespace.
virtual double GetChunkSuccessRate(WifiMode mode, WifiTxVector txVector, double snr, uint64_t nbits) const
A pure virtual method that must be implemented in the subclass.
void SetExtra(const std::string &extra)
Definition: gnuplot.cc:743
void SetTerminal(const std::string &terminal)
Definition: gnuplot.cc:724