A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
wifi-vht-network.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 SEBASTIEN DERONNE
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Sebastien Deronne <sebastien.deronne@gmail.com>
18 */
19
20#include "ns3/boolean.h"
21#include "ns3/command-line.h"
22#include "ns3/config.h"
23#include "ns3/double.h"
24#include "ns3/internet-stack-helper.h"
25#include "ns3/ipv4-address-helper.h"
26#include "ns3/ipv4-global-routing-helper.h"
27#include "ns3/log.h"
28#include "ns3/mobility-helper.h"
29#include "ns3/on-off-helper.h"
30#include "ns3/packet-sink-helper.h"
31#include "ns3/packet-sink.h"
32#include "ns3/ssid.h"
33#include "ns3/string.h"
34#include "ns3/udp-client-server-helper.h"
35#include "ns3/uinteger.h"
36#include "ns3/vht-phy.h"
37#include "ns3/yans-wifi-channel.h"
38#include "ns3/yans-wifi-helper.h"
39
40// This is a simple example in order to show how to configure an IEEE 802.11ac Wi-Fi network.
41//
42// It outputs the UDP or TCP goodput for every VHT MCS value, which depends on the MCS value (0 to
43// 9, where 9 is forbidden when the channel width is 20 MHz), the channel width (20, 40, 80 or 160
44// MHz) and the guard interval (long or short). The PHY bitrate is constant over all the simulation
45// run. The user can also specify the distance between the access point and the station: the larger
46// the distance the smaller the goodput.
47//
48// The simulation assumes a single station in an infrastructure network:
49//
50// STA AP
51// * *
52// | |
53// n1 n2
54//
55// Packets in this simulation belong to BestEffort Access Class (AC_BE).
56
57using namespace ns3;
58
59NS_LOG_COMPONENT_DEFINE("vht-wifi-network");
60
61int
62main(int argc, char* argv[])
63{
64 bool udp = true;
65 bool useRts = false;
66 double simulationTime = 10; // seconds
67 double distance = 1.0; // meters
68 int mcs = -1; // -1 indicates an unset value
69 double minExpectedThroughput = 0;
70 double maxExpectedThroughput = 0;
71
72 CommandLine cmd(__FILE__);
73 cmd.AddValue("distance",
74 "Distance in meters between the station and the access point",
75 distance);
76 cmd.AddValue("simulationTime", "Simulation time in seconds", simulationTime);
77 cmd.AddValue("udp", "UDP if set to 1, TCP otherwise", udp);
78 cmd.AddValue("useRts", "Enable/disable RTS/CTS", useRts);
79 cmd.AddValue("mcs", "if set, limit testing to a specific MCS (0-9)", mcs);
80 cmd.AddValue("minExpectedThroughput",
81 "if set, simulation fails if the lowest throughput is below this value",
82 minExpectedThroughput);
83 cmd.AddValue("maxExpectedThroughput",
84 "if set, simulation fails if the highest throughput is above this value",
85 maxExpectedThroughput);
86 cmd.Parse(argc, argv);
87
88 if (useRts)
89 {
90 Config::SetDefault("ns3::WifiRemoteStationManager::RtsCtsThreshold", StringValue("0"));
91 }
92
93 double prevThroughput[8] = {0};
94
95 std::cout << "MCS value"
96 << "\t\t"
97 << "Channel width"
98 << "\t\t"
99 << "short GI"
100 << "\t\t"
101 << "Throughput" << '\n';
102 int minMcs = 0;
103 int maxMcs = 9;
104 if (mcs >= 0 && mcs <= 9)
105 {
106 minMcs = mcs;
107 maxMcs = mcs;
108 }
109 for (int mcs = minMcs; mcs <= maxMcs; mcs++)
110 {
111 uint8_t index = 0;
112 double previous = 0;
113 for (int channelWidth = 20; channelWidth <= 160;)
114 {
115 if (mcs == 9 && channelWidth == 20)
116 {
117 channelWidth *= 2;
118 continue;
119 }
120 for (int sgi = 0; sgi < 2; sgi++)
121 {
122 uint32_t payloadSize; // 1500 byte IP packet
123 if (udp)
124 {
125 payloadSize = 1472; // bytes
126 }
127 else
128 {
129 payloadSize = 1448; // bytes
130 Config::SetDefault("ns3::TcpSocket::SegmentSize", UintegerValue(payloadSize));
131 }
132
133 NodeContainer wifiStaNode;
134 wifiStaNode.Create(1);
136 wifiApNode.Create(1);
137
140 phy.SetChannel(channel.Create());
141
142 phy.Set("ChannelSettings",
143 StringValue("{0, " + std::to_string(channelWidth) + ", BAND_5GHZ, 0}"));
144
146 wifi.SetStandard(WIFI_STANDARD_80211ac);
148
149 std::ostringstream ossControlMode;
150 auto nonHtRefRateMbps = VhtPhy::GetNonHtReferenceRate(mcs) / 1e6;
151 ossControlMode << "OfdmRate" << nonHtRefRateMbps << "Mbps";
152
153 std::ostringstream ossDataMode;
154 ossDataMode << "VhtMcs" << mcs;
155 wifi.SetRemoteStationManager("ns3::ConstantRateWifiManager",
156 "DataMode",
157 StringValue(ossDataMode.str()),
158 "ControlMode",
159 StringValue(ossControlMode.str()));
160
161 // Set guard interval
162 wifi.ConfigHtOptions("ShortGuardIntervalSupported", BooleanValue(sgi));
163
164 Ssid ssid = Ssid("ns3-80211ac");
165
166 mac.SetType("ns3::StaWifiMac", "Ssid", SsidValue(ssid));
167
168 NetDeviceContainer staDevice;
169 staDevice = wifi.Install(phy, mac, wifiStaNode);
170
171 mac.SetType("ns3::ApWifiMac",
172 "EnableBeaconJitter",
173 BooleanValue(false),
174 "Ssid",
175 SsidValue(ssid));
176
177 NetDeviceContainer apDevice;
178 apDevice = wifi.Install(phy, mac, wifiApNode);
179
180 // mobility.
182 Ptr<ListPositionAllocator> positionAlloc = CreateObject<ListPositionAllocator>();
183
184 positionAlloc->Add(Vector(0.0, 0.0, 0.0));
185 positionAlloc->Add(Vector(distance, 0.0, 0.0));
186 mobility.SetPositionAllocator(positionAlloc);
187
188 mobility.SetMobilityModel("ns3::ConstantPositionMobilityModel");
189
190 mobility.Install(wifiApNode);
191 mobility.Install(wifiStaNode);
192
193 /* Internet stack*/
195 stack.Install(wifiApNode);
196 stack.Install(wifiStaNode);
197
199 address.SetBase("192.168.1.0", "255.255.255.0");
200 Ipv4InterfaceContainer staNodeInterface;
201 Ipv4InterfaceContainer apNodeInterface;
202
203 staNodeInterface = address.Assign(staDevice);
204 apNodeInterface = address.Assign(apDevice);
205
206 /* Setting applications */
207 ApplicationContainer serverApp;
208 if (udp)
209 {
210 // UDP flow
211 uint16_t port = 9;
213 serverApp = server.Install(wifiStaNode.Get(0));
214 serverApp.Start(Seconds(0.0));
215 serverApp.Stop(Seconds(simulationTime + 1));
216
217 UdpClientHelper client(staNodeInterface.GetAddress(0), port);
218 client.SetAttribute("MaxPackets", UintegerValue(4294967295U));
219 client.SetAttribute("Interval", TimeValue(Time("0.00002"))); // packets/s
220 client.SetAttribute("PacketSize", UintegerValue(payloadSize));
221 ApplicationContainer clientApp = client.Install(wifiApNode.Get(0));
222 clientApp.Start(Seconds(1.0));
223 clientApp.Stop(Seconds(simulationTime + 1));
224 }
225 else
226 {
227 // TCP flow
228 uint16_t port = 50000;
230 PacketSinkHelper packetSinkHelper("ns3::TcpSocketFactory", localAddress);
231 serverApp = packetSinkHelper.Install(wifiStaNode.Get(0));
232 serverApp.Start(Seconds(0.0));
233 serverApp.Stop(Seconds(simulationTime + 1));
234
235 OnOffHelper onoff("ns3::TcpSocketFactory", Ipv4Address::GetAny());
236 onoff.SetAttribute("OnTime",
237 StringValue("ns3::ConstantRandomVariable[Constant=1]"));
238 onoff.SetAttribute("OffTime",
239 StringValue("ns3::ConstantRandomVariable[Constant=0]"));
240 onoff.SetAttribute("PacketSize", UintegerValue(payloadSize));
241 onoff.SetAttribute("DataRate", DataRateValue(1000000000)); // bit/s
243 InetSocketAddress(staNodeInterface.GetAddress(0), port));
244 onoff.SetAttribute("Remote", remoteAddress);
245 ApplicationContainer clientApp = onoff.Install(wifiApNode.Get(0));
246 clientApp.Start(Seconds(1.0));
247 clientApp.Stop(Seconds(simulationTime + 1));
248 }
249
251
252 Simulator::Stop(Seconds(simulationTime + 1));
254
255 uint64_t rxBytes = 0;
256 if (udp)
257 {
258 rxBytes = payloadSize * DynamicCast<UdpServer>(serverApp.Get(0))->GetReceived();
259 }
260 else
261 {
262 rxBytes = DynamicCast<PacketSink>(serverApp.Get(0))->GetTotalRx();
263 }
264 double throughput = (rxBytes * 8) / (simulationTime * 1000000.0); // Mbit/s
265
267
268 std::cout << mcs << "\t\t\t" << channelWidth << " MHz\t\t\t" << sgi << "\t\t\t"
269 << throughput << " Mbit/s" << std::endl;
270
271 // test first element
272 if (mcs == 0 && channelWidth == 20 && sgi == 0)
273 {
274 if (throughput < minExpectedThroughput)
275 {
276 NS_LOG_ERROR("Obtained throughput " << throughput << " is not expected!");
277 exit(1);
278 }
279 }
280 // test last element
281 if (mcs == 9 && channelWidth == 160 && sgi == 1)
282 {
283 if (maxExpectedThroughput > 0 && throughput > maxExpectedThroughput)
284 {
285 NS_LOG_ERROR("Obtained throughput " << throughput << " is not expected!");
286 exit(1);
287 }
288 }
289 // test previous throughput is smaller (for the same mcs)
290 if (throughput > previous)
291 {
292 previous = throughput;
293 }
294 else
295 {
296 NS_LOG_ERROR("Obtained throughput " << throughput << " is not expected!");
297 exit(1);
298 }
299 // test previous throughput is smaller (for the same channel width and GI)
300 if (throughput > prevThroughput[index])
301 {
302 prevThroughput[index] = throughput;
303 }
304 else
305 {
306 NS_LOG_ERROR("Obtained throughput " << throughput << " is not expected!");
307 exit(1);
308 }
309 index++;
310 }
311 channelWidth *= 2;
312 }
313 }
314 return 0;
315}
a polymophic address class
Definition: address.h:100
AttributeValue implementation for Address.
holds a vector of ns3::Application pointers.
void Start(Time start) const
Start all of the Applications in this container at the start time given as a parameter.
Ptr< Application > Get(uint32_t i) const
Get the Ptr<Application> stored in this container at a given index.
void Stop(Time stop) const
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter.
AttributeValue implementation for Boolean.
Definition: boolean.h:37
Parse command-line arguments.
Definition: command-line.h:232
AttributeValue implementation for DataRate.
an Inet address class
aggregate IP/TCP/UDP functionality to existing Nodes.
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
static Ipv4Address GetAny()
static void PopulateRoutingTables()
Build a routing database and initialize the routing tables of the nodes in the simulation.
holds a vector of std::pair of Ptr<Ipv4> and interface index.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
Helper class used to assign positions and mobility models to nodes.
holds a vector of ns3::NetDevice pointers
keep track of a set of node pointers.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
A helper to make it easier to instantiate an ns3::OnOffApplication on a set of nodes.
Definition: on-off-helper.h:44
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:78
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
Definition: simulator.cc:140
static void Run()
Run the simulation.
Definition: simulator.cc:176
static void Stop()
Tell the Simulator the calling event should be the last one executed.
Definition: simulator.cc:184
The IEEE 802.11 SSID Information Element.
Definition: ssid.h:36
AttributeValue implementation for Ssid.
Hold variables of type string.
Definition: string.h:56
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
AttributeValue implementation for Time.
Definition: nstime.h:1423
Create a client application which sends UDP packets carrying a 32bit sequence number and a 64 bit tim...
Create a server application which waits for input UDP packets and uses the information carried into t...
Hold an unsigned integer type.
Definition: uinteger.h:45
static uint64_t GetNonHtReferenceRate(uint8_t mcsValue)
Calculate the rate in bps of the non-HT Reference Rate corresponding to the supplied VHT MCS index.
Definition: vht-phy.cc:485
helps to create WifiNetDevice objects
Definition: wifi-helper.h:324
create MAC layers for a ns3::WifiNetDevice.
manage and create wifi channel objects for the YANS model.
static YansWifiChannelHelper Default()
Create a channel helper in a default working state.
Make it easy to create and manage PHY objects for the YANS model.
uint16_t port
Definition: dsdv-manet.cc:44
void SetDefault(std::string name, const AttributeValue &value)
Definition: config.cc:891
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
Definition: log.h:254
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:202
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1336
@ WIFI_STANDARD_80211ac
ns address
Definition: first.py:40
ns stack
Definition: first.py:37
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns cmd
Definition: second.py:33
ns wifi
Definition: third.py:88
ns ssid
Definition: third.py:86
ns mac
Definition: third.py:85
ns wifiApNode
Definition: third.py:79
ns channel
Definition: third.py:81
ns mobility
Definition: third.py:96
ns phy
Definition: third.py:82