34#include "ns3/command-line.h"
35#include "ns3/config.h"
36#include "ns3/internet-stack-helper.h"
37#include "ns3/ipv4-address-helper.h"
38#include "ns3/ipv4-global-routing-helper.h"
40#include "ns3/mobility-helper.h"
41#include "ns3/mobility-model.h"
42#include "ns3/on-off-helper.h"
43#include "ns3/packet-sink-helper.h"
44#include "ns3/packet-sink.h"
46#include "ns3/string.h"
47#include "ns3/tcp-westwood.h"
48#include "ns3/yans-wifi-channel.h"
49#include "ns3/yans-wifi-helper.h"
67 std::cout << now.
GetSeconds() <<
"s: \t" << cur <<
" Mbit/s" << std::endl;
73main(
int argc,
char* argv[])
76 std::string dataRate =
"100Mbps";
77 std::string tcpVariant =
"TcpNewReno";
78 std::string phyRate =
"HtMcs7";
79 double simulationTime = 10;
80 bool pcapTracing =
false;
84 cmd.AddValue(
"payloadSize",
"Payload size in bytes", payloadSize);
85 cmd.AddValue(
"dataRate",
"Application data ate", dataRate);
86 cmd.AddValue(
"tcpVariant",
87 "Transport protocol to use: TcpNewReno, "
88 "TcpHybla, TcpHighSpeed, TcpHtcp, TcpVegas, TcpScalable, TcpVeno, "
89 "TcpBic, TcpYeah, TcpIllinois, TcpWestwood, TcpWestwoodPlus, TcpLedbat ",
91 cmd.AddValue(
"phyRate",
"Physical layer bitrate", phyRate);
92 cmd.AddValue(
"simulationTime",
"Simulation time in seconds", simulationTime);
93 cmd.AddValue(
"pcap",
"Enable/disable PCAP Tracing", pcapTracing);
94 cmd.Parse(argc, argv);
96 tcpVariant = std::string(
"ns3::") + tcpVariant;
98 if (tcpVariant ==
"ns3::TcpWestwoodPlus")
109 "TypeId " << tcpVariant <<
" not found");
146 apDevice = wifiHelper.
Install(wifiPhy, wifiMac, apWifiNode);
157 positionAlloc->Add(
Vector(0.0, 0.0, 0.0));
158 positionAlloc->Add(
Vector(1.0, 1.0, 0.0));
160 mobility.SetPositionAllocator(positionAlloc);
161 mobility.SetMobilityModel(
"ns3::ConstantPositionMobilityModel");
167 stack.Install(networkNodes);
170 address.SetBase(
"10.0.0.0",
"255.255.255.0");
172 apInterface =
address.Assign(apDevice);
177 Ipv4GlobalRoutingHelper::PopulateRoutingTables();
183 sink = StaticCast<PacketSink>(sinkApp.
Get(0));
187 server.SetAttribute(
"PacketSize",
UintegerValue(payloadSize));
188 server.SetAttribute(
"OnTime",
StringValue(
"ns3::ConstantRandomVariable[Constant=1]"));
189 server.SetAttribute(
"OffTime",
StringValue(
"ns3::ConstantRandomVariable[Constant=0]"));
207 Simulator::Stop(
Seconds(simulationTime + 1));
210 double averageThroughput = ((
sink->
GetTotalRx() * 8) / (1e6 * simulationTime));
212 Simulator::Destroy();
214 if (averageThroughput < 50)
216 NS_LOG_ERROR(
"Obtained throughput is not in the expected boundaries!");
219 std::cout <<
"\nAverage throughput: " << averageThroughput <<
" Mbit/s" << std::endl;
holds a vector of ns3::Application pointers.
Ptr< Application > Get(uint32_t i) const
Get the Ptr<Application> stored in this container at a given index.
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.
AttributeValue implementation for DataRate.
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Hold variables of type enum.
aggregate IP/TCP/UDP functionality to existing Nodes.
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
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.
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes.
uint64_t GetTotalRx() const
void EnablePcap(std::string prefix, Ptr< NetDevice > nd, bool promiscuous=false, bool explicitFilename=false)
Enable pcap output the indicated net device.
The IEEE 802.11 SSID Information Element.
AttributeValue implementation for Ssid.
Hold variables of type string.
Simulation virtual time values and global simulation resolution.
double GetSeconds() const
Get an approximation of the time stored in this instance in the indicated unit.
a unique identifier for an interface.
AttributeValue implementation for TypeId.
Hold an unsigned integer type.
Vector3D Vector
Vector alias typedef for compatibility with mobility models.
helps to create WifiNetDevice objects
void SetRemoteStationManager(std::string type, Args &&... args)
Helper function used to set the station manager.
virtual void SetStandard(WifiStandard standard)
virtual NetDeviceContainer Install(const WifiPhyHelper &phy, const WifiMacHelper &mac, NodeContainer::Iterator first, NodeContainer::Iterator last) const
create MAC layers for a ns3::WifiNetDevice.
void SetType(std::string type, Args &&... args)
void SetPcapDataLinkType(SupportedPcapDataLinkTypes dlt)
Set the data link type of PCAP traces to be used.
void SetErrorRateModel(std::string type, Args &&... args)
Helper function used to set the error rate model.
manage and create wifi channel objects for the YANS model.
void SetPropagationDelay(std::string name, Ts &&... args)
void AddPropagationLoss(std::string name, Ts &&... args)
Ptr< YansWifiChannel > Create() const
Make it easy to create and manage PHY objects for the YANS model.
void SetChannel(Ptr< YansWifiChannel > channel)
void SetDefault(std::string name, const AttributeValue &value)
#define NS_ABORT_MSG_UNLESS(cond, msg)
Abnormal program termination if a condition is false, with a message.
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
void(* DataRate)(DataRate oldValue, DataRate newValue)
TracedValue callback signature for DataRate.
Time Now()
create an ns3::Time instance which contains the current simulation time.
Time Seconds(double value)
Construct a Time in the indicated unit.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< PacketSink > sink
Pointer to the packet sink application.
void CalculateThroughput()
Calulate the throughput.
uint64_t lastTotalRx
The value of the last total received bytes.