35 #include "ns3/command-line.h" 36 #include "ns3/config.h" 37 #include "ns3/string.h" 39 #include "ns3/yans-wifi-helper.h" 41 #include "ns3/mobility-helper.h" 42 #include "ns3/on-off-helper.h" 43 #include "ns3/yans-wifi-channel.h" 44 #include "ns3/mobility-model.h" 45 #include "ns3/packet-sink.h" 46 #include "ns3/packet-sink-helper.h" 47 #include "ns3/tcp-westwood.h" 48 #include "ns3/internet-stack-helper.h" 49 #include "ns3/ipv4-address-helper.h" 50 #include "ns3/ipv4-global-routing-helper.h" 64 std::cout << now.
GetSeconds () <<
"s: \t" << cur <<
" Mbit/s" << std::endl;
70 main (
int argc,
char *argv[])
72 uint32_t payloadSize = 1472;
73 std::string dataRate =
"100Mbps";
74 std::string tcpVariant =
"TcpNewReno";
75 std::string phyRate =
"HtMcs7";
76 double simulationTime = 10;
77 bool pcapTracing =
false;
81 cmd.AddValue (
"payloadSize",
"Payload size in bytes", payloadSize);
82 cmd.AddValue (
"dataRate",
"Application data ate", dataRate);
83 cmd.AddValue (
"tcpVariant",
"Transport protocol to use: TcpNewReno, " 84 "TcpHybla, TcpHighSpeed, TcpHtcp, TcpVegas, TcpScalable, TcpVeno, " 85 "TcpBic, TcpYeah, TcpIllinois, TcpWestwood, TcpWestwoodPlus, TcpLedbat ", tcpVariant);
86 cmd.AddValue (
"phyRate",
"Physical layer bitrate", phyRate);
87 cmd.AddValue (
"simulationTime",
"Simulation time in seconds", simulationTime);
88 cmd.AddValue (
"pcap",
"Enable/disable PCAP Tracing", pcapTracing);
89 cmd.Parse (argc, argv);
91 tcpVariant = std::string (
"ns3::") + tcpVariant;
93 if (tcpVariant.compare (
"ns3::TcpWestwoodPlus") == 0)
142 wifiMac.
SetType (
"ns3::ApWifiMac",
146 apDevice = wifiHelper.
Install (wifiPhy, wifiMac, apWifiNode);
149 wifiMac.
SetType (
"ns3::StaWifiMac",
158 positionAlloc->
Add (Vector (0.0, 0.0, 0.0));
159 positionAlloc->
Add (Vector (1.0, 1.0, 0.0));
161 mobility.SetPositionAllocator (positionAlloc);
162 mobility.SetMobilityModel (
"ns3::ConstantPositionMobilityModel");
168 stack.Install (networkNodes);
171 address.SetBase (
"10.0.0.0",
"255.255.255.0");
173 apInterface =
address.Assign (apDevice);
183 sink = StaticCast<PacketSink> (sinkApp.
Get (0));
188 server.SetAttribute (
"OnTime",
StringValue (
"ns3::ConstantRandomVariable[Constant=1]"));
189 server.SetAttribute (
"OffTime",
StringValue (
"ns3::ConstantRandomVariable[Constant=0]"));
210 double averageThroughput = ((
sink->
GetTotalRx () * 8) / (1e6 * simulationTime));
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;
void AddPropagationLoss(std::string name, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
void Set(std::string name, const AttributeValue &v)
holds a vector of ns3::Application pointers.
Simulation virtual time values and global simulation resolution.
static Ipv4Address GetAny(void)
HT PHY for the 5 GHz band (clause 20)
virtual NetDeviceContainer Install(const WifiPhyHelper &phy, const WifiMacHelper &mac, NodeContainer::Iterator first, NodeContainer::Iterator last) const
holds a vector of std::pair of Ptr<Ipv4> and interface index.
void SetRemoteStationManager(std::string type, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
static void PopulateRoutingTables(void)
Build a routing database and initialize the routing tables of the nodes in the simulation.
Hold variables of type string.
Make it easy to create and manage PHY objects for the yans model.
double GetSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
uint64_t GetTotalRx() const
static void Run(void)
Run the simulation.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
aggregate IP/TCP/UDP functionality to existing Nodes.
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes...
static bool LookupByNameFailSafe(std::string name, TypeId *tid)
Get a TypeId by name.
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.
Ptr< YansWifiChannel > Create(void) const
Class for representing data rates.
virtual void SetStandard(WifiPhyStandard standard)
void SetChannel(Ptr< YansWifiChannel > channel)
Hold variables of type enum.
static EventId Schedule(Time const &delay, MEM mem_ptr, OBJ obj)
Schedule an event to expire after delay.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
Hold an unsigned integer type.
holds a vector of ns3::NetDevice pointers
AttributeValue implementation for TypeId.
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.
static void Destroy(void)
Execute the events scheduled with ScheduleDestroy().
Every class exported by the ns3 library is enclosed in the ns3 namespace.
keep track of a set of node pointers.
void CalculateThroughput()
static TypeId GetTypeId(void)
Get the type ID.
manage and create wifi channel objects for the yans model.
create MAC layers for a ns3::WifiNetDevice.
static Time Now(void)
Return the current simulation virtual time.
void SetPcapDataLinkType(SupportedPcapDataLinkTypes dlt)
Set the data link type of PCAP traces to be used.
void SetErrorRateModel(std::string name, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
The IEEE 802.11 SSID Information Element.
virtual void SetType(std::string type, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue(), std::string n8="", const AttributeValue &v8=EmptyAttributeValue(), std::string n9="", const AttributeValue &v9=EmptyAttributeValue(), std::string n10="", const AttributeValue &v10=EmptyAttributeValue())
Helper class used to assign positions and mobility models to nodes.
#define NS_ABORT_MSG_UNLESS(cond, msg)
Abnormal program termination if a condition is false, with a message.
AttributeValue implementation for DataRate.
static void Stop(void)
Tell the Simulator the calling event should be the last one executed.
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.
#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.
void SetPropagationDelay(std::string name, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
void EnablePcap(std::string prefix, Ptr< NetDevice > nd, bool promiscuous=false, bool explicitFilename=false)
Enable pcap output the indicated net device.
This class can be used to hold variables of floating point type such as 'double' or 'float'...
a unique identifier for an interface.
Include Radiotap link layer information.
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.
static TypeId LookupByName(std::string name)
Get a TypeId by name.