20#include "ns3/applications-module.h"
21#include "ns3/core-module.h"
22#include "ns3/dsr-module.h"
23#include "ns3/internet-module.h"
24#include "ns3/mobility-module.h"
25#include "ns3/network-module.h"
26#include "ns3/yans-wifi-helper.h"
80 std::string rate =
"0.512kbps";
81 std::string dataMode(
"DsssRate11Mbps");
82 std::string
phyMode(
"DsssRate11Mbps");
86 cmd.AddValue(
"nWifis",
"Number of wifi nodes",
nWifis);
87 cmd.AddValue(
"nSinks",
"Number of SINK traffic nodes",
nSinks);
88 cmd.AddValue(
"rate",
"CBR traffic rate(in kbps), Default:8", rate);
89 cmd.AddValue(
"nodeSpeed",
"Node speed in RandomWayPoint model, Default:20",
nodeSpeed);
91 cmd.AddValue(
"txpDistance",
"Specify node's transmit range, Default:300",
txpDistance);
92 cmd.AddValue(
"pauseTime",
"pauseTime for mobility model, Default: 0",
pauseTime);
102 NS_LOG_INFO(
"setting the default phy and channel parameters");
109 NS_LOG_INFO(
"setting the default phy and channel parameters ");
116 wifiChannel.AddPropagationLoss(
"ns3::RangePropagationLossModel",
123 wifi.SetRemoteStationManager(
"ns3::ConstantRateWifiManager",
129 wifiMac.SetType(
"ns3::AdhocWifiMac");
136 wifiPhy.EnableAsciiAll(stream);
140 pos.
SetTypeId(
"ns3::RandomRectanglePositionAllocator");
141 pos.
Set(
"X",
StringValue(
"ns3::UniformRandomVariable[Min=0.0|Max=300.0]"));
142 pos.
Set(
"Y",
StringValue(
"ns3::UniformRandomVariable[Min=0.0|Max=1500.0]"));
154 "ns3::RandomWaypointMobilityModel",
173 address.SetBase(
"10.1.1.0",
"255.255.255.0");
191 onoff1.SetAttribute(
"OnTime",
StringValue(
"ns3::ConstantRandomVariable[Constant=1.0]"));
192 onoff1.SetAttribute(
"OffTime",
StringValue(
"ns3::ConstantRandomVariable[Constant=0.0]"));
a polymophic address class
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.
Manage ASCII trace files for device models.
Parse command-line arguments.
Class for representing data rates.
AttributeValue implementation for DataRate.
This class can be used to hold variables of floating point type such as 'double' or 'float'.
DSR helper class to manage creation of DSR routing instance and to insert it on a node as a sublayer ...
Helper class that adds DSR routing to nodes.
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()
holds a vector of std::pair of Ptr<Ipv4> and interface index.
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.
Instantiate subclasses of ns3::Object.
Ptr< Object > Create() const
Create an Object instance of the configured TypeId.
void Set(const std::string &name, const AttributeValue &value, Args &&... args)
Set an attribute to be set during construction.
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
Ptr< T > GetObject() const
Get a pointer to the requested aggregated Object.
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.
AttributeValue implementation for Pointer.
Allocate a set of positions.
Smart pointer class similar to boost::intrusive_ptr.
static void SetRun(uint64_t run)
Set the run number of simulation.
static void SetSeed(uint32_t seed)
Set the seed.
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
static void Run()
Run the simulation.
static void Stop()
Tell the Simulator the calling event should be the last one executed.
Hold variables of type string.
Hold an unsigned integer type.
helps to create WifiNetDevice objects
create MAC layers for a ns3::WifiNetDevice.
manage and create wifi channel objects for the YANS model.
void SetPropagationDelay(std::string name, Ts &&... args)
Make it easy to create and manage PHY objects for the YANS model.
void SetDefault(std::string name, const AttributeValue &value)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Ptr< T > Create(Ts &&... args)
Create class instances by constructors with varying numbers of arguments and return them by Ptr.
Time Seconds(double value)
Construct a Time in the indicated unit.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void LogComponentEnable(const std::string &name, LogLevel level)
Enable the logging output associated with that log component.
@ LOG_LEVEL_ALL
Print everything.
static const uint32_t packetSize
Packet size generated at the AP.
Ptr< PacketSink > sink
Pointer to the packet sink application.