21 #include "ns3/command-line.h" 22 #include "ns3/config.h" 23 #include "ns3/string.h" 24 #include "ns3/pointer.h" 26 #include "ns3/yans-wifi-helper.h" 28 #include "ns3/mobility-helper.h" 29 #include "ns3/internet-stack-helper.h" 30 #include "ns3/ipv4-address-helper.h" 31 #include "ns3/udp-client-server-helper.h" 32 #include "ns3/on-off-helper.h" 33 #include "ns3/yans-wifi-channel.h" 34 #include "ns3/wifi-net-device.h" 35 #include "ns3/qos-txop.h" 36 #include "ns3/wifi-mac.h" 37 #include "ns3/packet-sink-helper.h" 38 #include "ns3/packet-sink.h" 109 std::string apTypeString;
112 apTypeString =
"WIFI_PHY_STANDARD_80211g";
116 apTypeString =
"WIFI_PHY_STANDARD_80211n_2_4GHZ";
119 std::cout <<
"Run: " << params.
testName 124 <<
"\n\t apType=" << apTypeString
127 <<
"\n\t rifsMode=" << params.
rifsMode 128 <<
"\n\t nWifiB=" << params.
nWifiB 130 <<
"\n\t nWifiG=" << params.
nWifiG 140 double throughput = 0;
141 uint32_t nWifiB = params.
nWifiB;
142 uint32_t nWifiG = params.
nWifiG;
149 wifiBStaNodes.
Create (nWifiB);
151 wifiGStaNodes.
Create (nWifiG);
153 wifiNNGFStaNodes.
Create (nWifiNNGF);
155 wifiNGFStaNodes.
Create (nWifiNGF);
160 channel.AddPropagationLoss (
"ns3::RangePropagationLossModel");
167 wifi.SetRemoteStationManager (
"ns3::IdealWifiManager");
175 mac.SetType (
"ns3::StaWifiMac",
183 bStaDevice =
wifi.Install (
phy,
mac, wifiBStaNodes);
188 gStaDevice =
wifi.Install (
phy,
mac, wifiGStaNodes);
193 mac.SetType (
"ns3::StaWifiMac",
200 nNGFStaDevice =
wifi.Install (
phy,
mac, wifiNNGFStaNodes);
202 nGFStaDevice =
wifi.Install (
phy,
mac, wifiNGFStaNodes);
207 mac.SetType (
"ns3::ApWifiMac",
226 wifi_mac->GetAttribute (
"BE_Txop", ptr);
236 wifi_mac->GetAttribute (
"BE_Txop", ptr);
246 wifi_mac->GetAttribute (
"BE_Txop", ptr);
255 positionAlloc->
Add (Vector (0.0, 0.0, 0.0));
256 for (uint32_t i = 0; i < nWifiB; i++)
258 positionAlloc->
Add (Vector (5.0, 0.0, 0.0));
260 for (uint32_t i = 0; i < nWifiG; i++)
262 positionAlloc->
Add (Vector (0.0, 5.0, 0.0));
264 for (uint32_t i = 0; i < nWifiNNGF; i++)
266 positionAlloc->
Add (Vector (0.0, 0.0, 5.0));
268 for (uint32_t i = 0; i < nWifiNGF; i++)
270 positionAlloc->
Add (Vector (0.0, 0.0, 5.0));
273 mobility.SetPositionAllocator (positionAlloc);
274 mobility.SetMobilityModel (
"ns3::ConstantPositionMobilityModel");
278 mobility.Install (wifiNNGFStaNodes);
284 stack.Install (wifiBStaNodes);
285 stack.Install (wifiGStaNodes);
286 stack.Install (wifiNNGFStaNodes);
287 stack.Install (wifiNGFStaNodes);
290 address.SetBase (
"192.168.1.0",
"255.255.255.0");
292 bStaInterface =
address.Assign (bStaDevice);
294 gStaInterface =
address.Assign (gStaDevice);
296 nNGFStaInterface =
address.Assign (nNGFStaDevice);
298 nGFStaInterface =
address.Assign (nGFStaDevice);
300 ApInterface =
address.Assign (apDevice);
313 client.SetAttribute (
"Interval",
TimeValue (
Time (
"0.0002")));
314 client.SetAttribute (
"PacketSize",
UintegerValue (payloadSize));
319 clientApps.Add (client.Install (wifiBStaNodes));
323 clientApps.Add (client.Install (wifiGStaNodes));
327 clientApps.Add (client.Install (wifiNNGFStaNodes));
331 clientApps.Add (client.Install (wifiNGFStaNodes));
339 uint64_t totalPacketsThrough = DynamicCast<UdpServer> (serverApp.
Get (0))->GetReceived ();
340 throughput = totalPacketsThrough * payloadSize * 8 / (simulationTime * 1000000.0);
344 uint16_t
port = 50000;
384 uint64_t totalPacketsThrough = DynamicCast<PacketSink> (serverApp.
Get (0))->GetTotalRx ();
385 throughput += totalPacketsThrough * 8 / (simulationTime * 1000000.0);
391 int main (
int argc,
char *argv[])
415 bool verifyResults = 0;
418 cmd.AddValue (
"payloadSize",
"Payload size in bytes", params.
payloadSize);
419 cmd.AddValue (
"simulationTime",
"Simulation time in seconds", params.
simulationTime);
420 cmd.AddValue (
"isUdp",
"UDP if set to 1, TCP otherwise", params.
isUdp);
421 cmd.AddValue (
"verifyResults",
"Enable/disable results verification at the end of the simulation", verifyResults);
422 cmd.Parse (argc, argv);
425 double throughput = 0;
427 params.
testName =
"g only with all g features disabled";
429 if (verifyResults && (throughput < 22.5 || throughput > 23.5))
431 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
434 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
436 params.
testName =
"g only with short slot time enabled";
442 if (verifyResults && (throughput < 29 || throughput > 30))
444 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
447 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
449 params.
testName =
"Mixed b/g with all g features disabled";
455 if (verifyResults && (throughput < 22.5 || throughput > 23.5))
457 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
460 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
462 params.
testName =
"Mixed b/g with short plcp preamble enabled";
468 if (verifyResults && (throughput < 22.5 || throughput > 23.5))
470 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
473 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
475 params.
testName =
"Mixed b/g with short slot time enabled using RTS-CTS protection";
482 if (verifyResults && (throughput < 19 || throughput > 20))
484 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
487 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
489 params.
testName =
"Mixed b/g with short plcp preamble enabled using RTS-CTS protection";
495 if (verifyResults && (throughput < 19 || throughput > 20))
497 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
500 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
502 params.
testName =
"Mixed b/g with short slot time enabled using CTS-TO-SELF protection";
509 if (verifyResults && (throughput < 20.5 || throughput > 21.5))
511 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
514 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
516 params.
testName =
"Mixed b/g with short plcp preamble enabled using CTS-TO-SELF protection";
522 if (verifyResults && (throughput < 20.5 || throughput > 21.5))
524 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
527 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
529 params.
testName =
"HT GF not supported";
544 if (verifyResults && (throughput < 43 || throughput > 44))
546 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
549 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
551 params.
testName =
"HT only with GF used";
566 if (verifyResults && (throughput < 44 || throughput > 45))
568 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
571 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
573 params.
testName =
"HT only with GF allowed but disabled by protection";
588 if (verifyResults && (throughput < 43 || throughput > 44))
590 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
593 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
595 params.
testName =
"HT only with GF not supported by the receiver";
610 if (verifyResults && (throughput < 43 || throughput > 44))
612 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
615 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
617 params.
testName =
"Mixed HT/non-HT with GF enabled";
632 if (verifyResults && (throughput < 44 || throughput > 45))
634 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
637 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
639 params.
testName =
"HT only with RIFS enabled";
656 if (verifyResults && (throughput < 44 || throughput > 45))
658 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
661 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
663 params.
testName =
"Mixed HT/non-HT with RIFS enabled but not forbidden";
680 if (verifyResults && (throughput < 44 || throughput > 45))
682 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
685 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
687 params.
testName =
"Mixed HT/non-HT with RIFS enabled but forbidden";
704 if (verifyResults && (throughput < 43 || throughput > 44))
706 NS_LOG_ERROR (
"Obtained throughput " << throughput <<
" is not in the expected boundaries!");
709 std::cout <<
"Throughput: " << throughput <<
" Mbit/s \n" << std::endl;
ERP-OFDM PHY (Clause 19, Section 19.5)
Helper class for UAN CW MAC example.
holds a vector of ns3::Application pointers.
Simulation virtual time values and global simulation resolution.
static Ipv4Address GetAny(void)
Smart pointer class similar to boost::intrusive_ptr.
AttributeValue implementation for Boolean.
holds a vector of std::pair of Ptr<Ipv4> and interface index.
Hold variables of type string.
Make it easy to create and manage PHY objects for the yans model.
static YansWifiChannelHelper Default(void)
Create a channel helper in a default working state.
Ptr< NetDevice > GetDevice(uint32_t index) const
Retrieve the index-th NetDevice associated to this node.
Handle packet fragmentation and retransmissions for QoS data frames as well as MSDU aggregation (A-MS...
static void Run(void)
Run the simulation.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
ApplicationContainer Install(NodeContainer c) const
Install an ns3::PacketSinkApplication on each node of the input container configured with all the att...
aggregate IP/TCP/UDP functionality to existing Nodes.
uint32_t nWifiNGreenfield
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes...
HT PHY for the 2.4 GHz band (clause 20)
static YansWifiPhyHelper Default(void)
Create a phy helper in a default working state.
helps to create WifiNetDevice objects
A helper to make it easier to instantiate an ns3::OnOffApplication on a set of nodes.
a polymophic address class
WifiPhyStandard
Identifies the PHY specification that a Wifi device is configured to use.
ApplicationContainer Install(NodeContainer c) const
Install an ns3::OnOffApplication on each node of the input container configured with all the attribut...
double Run(Parameters params)
Create a client application which sends UDP packets carrying a 32bit sequence number and a 64 bit tim...
AttributeValue implementation for Time.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
Hold an unsigned integer type.
holds a vector of ns3::NetDevice pointers
Create a server application which waits for input UDP packets and uses the information carried into t...
void Start(Time start)
Arrange for all of the Applications in this container to Start() at the Time given as a parameter...
Parse command-line arguments.
bool nGreenfieldHasTraffic
static void Destroy(void)
Execute the events scheduled with ScheduleDestroy().
void SetAttribute(std::string name, const AttributeValue &value)
Record an attribute to be set in each Application after it is is created.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
keep track of a set of node pointers.
Hold objects of type Ptr<T>.
std::string erpProtectionMode
DSSS PHY (Clause 15) and HR/DSSS PHY (Clause 18)
manage and create wifi channel objects for the yans model.
create MAC layers for a ns3::WifiNetDevice.
uint32_t nWifiNNonGreenfield
The IEEE 802.11 SSID Information Element.
Helper class used to assign positions and mobility models to nodes.
AttributeValue implementation for Address.
void Stop(Time stop)
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter...
Ptr< WifiMac > GetMac(void) const
ApplicationContainer Install(NodeContainer c)
Create one UDP server application on each of the Nodes in the NodeContainer.
AttributeValue implementation for DataRate.
void SetTxopLimit(Time txopLimit)
Set the TXOP limit.
static void Stop(void)
Tell the Simulator the calling event should be the last one executed.
bool nNonGreenfieldHasTraffic
Time Seconds(double value)
Construct a Time in the indicated unit.
AttributeValue implementation for Ssid.
void SetDefault(std::string name, const AttributeValue &value)
void Add(Vector v)
Add a position to the list of positions.
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
Time MicroSeconds(uint64_t value)
Construct a Time in the indicated unit.
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Include Radiotap link layer information.
bool apSupportsGreenfield
Ptr< Application > Get(uint32_t i) const
Get the Ptr<Application> stored in this container at a given index.
void SetAttribute(std::string name, const AttributeValue &value)
Helper function used to set the underlying application attributes.
bool enableShortPlcpPreamble
void experiment(bool enableCtsRts, std::string wifiManager)
Run single 10 seconds experiment.