56 #include "ns3/boolean.h"
57 #include "ns3/command-line.h"
58 #include "ns3/config.h"
59 #include "ns3/gnuplot.h"
60 #include "ns3/internet-stack-helper.h"
61 #include "ns3/ipv4-address-helper.h"
63 #include "ns3/mobility-helper.h"
64 #include "ns3/mobility-model.h"
65 #include "ns3/on-off-helper.h"
66 #include "ns3/packet-sink-helper.h"
68 #include "ns3/uinteger.h"
69 #include "ns3/yans-wifi-channel.h"
70 #include "ns3/yans-wifi-helper.h"
119 uint32_t m_bytesTotal;
131 m_bytesTotal += packet->
GetSize();
151 Vector pos = GetPosition(node);
152 double mbs = ((m_bytesTotal * 8.0) / (1000000 * stepsTime));
154 m_output.Add(pos.x, mbs);
156 SetPosition(node, pos);
178 main(
int argc,
char* argv[])
180 uint32_t rtsThreshold = 65535;
181 std::string staManager =
"ns3::MinstrelHtWifiManager";
182 std::string apManager =
"ns3::MinstrelHtWifiManager";
183 std::string standard =
"802.11n-5GHz";
184 std::string outputFileName =
"minstrelHT";
185 uint32_t BeMaxAmpduSize = 65535;
186 bool shortGuardInterval =
false;
187 uint32_t chWidth = 20;
197 cmd.AddValue(
"staManager",
"PRC Manager of the STA", staManager);
198 cmd.AddValue(
"apManager",
"PRC Manager of the AP", apManager);
199 cmd.AddValue(
"standard",
"Wifi Phy Standard", standard);
200 cmd.AddValue(
"shortGuardInterval",
201 "Enable Short Guard Interval in all stations",
203 cmd.AddValue(
"channelWidth",
"Channel width of all the stations", chWidth);
204 cmd.AddValue(
"rtsThreshold",
"RTS threshold", rtsThreshold);
205 cmd.AddValue(
"BeMaxAmpduSize",
"BE Mac A-MPDU size", BeMaxAmpduSize);
206 cmd.AddValue(
"outputFileName",
"Output filename", outputFileName);
207 cmd.AddValue(
"steps",
"How many different distances to try", steps);
208 cmd.AddValue(
"stepsTime",
"Time on each step", stepsTime);
209 cmd.AddValue(
"stepsSize",
"Distance between steps", stepsSize);
210 cmd.AddValue(
"AP1_x",
"Position of AP1 in x coordinate", ap1_x);
211 cmd.AddValue(
"AP1_y",
"Position of AP1 in y coordinate", ap1_y);
212 cmd.AddValue(
"STA1_x",
"Position of STA1 in x coordinate", sta1_x);
213 cmd.AddValue(
"STA1_y",
"Position of STA1 in y coordinate", sta1_y);
214 cmd.Parse(argc, argv);
216 int simuTime = steps * stepsTime;
235 if (standard ==
"802.11a" || standard ==
"802.11b" || standard ==
"802.11g")
237 if (standard ==
"802.11a")
241 else if (standard ==
"802.11b")
245 else if (standard ==
"802.11g")
252 wifi.SetRemoteStationManager(staManager,
"RtsCtsThreshold",
UintegerValue(rtsThreshold));
259 wifi.SetRemoteStationManager(apManager,
"RtsCtsThreshold",
UintegerValue(rtsThreshold));
263 wifiApDevices.
Add(
wifi.Install(wifiPhy, wifiMac, wifiApNodes.
Get(0)));
265 else if (standard ==
"802.11n-2.4GHz" || standard ==
"802.11n-5GHz" || standard ==
"802.11ac")
267 if (standard ==
"802.11n-2.4GHz" || standard ==
"802.11n-5GHz")
271 else if (standard ==
"802.11ac")
279 wifi.SetRemoteStationManager(staManager,
"RtsCtsThreshold",
UintegerValue(rtsThreshold));
286 wifi.SetRemoteStationManager(apManager,
"RtsCtsThreshold",
UintegerValue(rtsThreshold));
290 wifiApDevices.
Add(
wifi.Install(wifiPhy, wifiMac, wifiApNodes.
Get(0)));
292 Config::Set(
"/NodeList/*/DeviceList/*/$ns3::WifiNetDevice/Mac/BE_MaxAmpduSize",
296 wifiDevices.
Add(wifiStaDevices);
297 wifiDevices.
Add(wifiApDevices);
300 Config::Set(
"/NodeList/*/DeviceList/*/$ns3::WifiNetDevice/Phy/ChannelWidth",
305 "/NodeList/*/DeviceList/*/$ns3::WifiNetDevice/HtConfiguration/ShortGuardIntervalSupported",
312 positionAlloc->Add(Vector(ap1_x, ap1_y, 0.0));
313 positionAlloc->Add(Vector(sta1_x, sta1_y, 0.0));
314 mobility.SetPositionAllocator(positionAlloc);
315 mobility.SetMobilityModel(
"ns3::ConstantPositionMobilityModel");
332 stack.Install(wifiApNodes);
335 address.SetBase(
"10.1.1.0",
"255.255.255.0");
345 onoff.SetConstantRate(
DataRate(
"400Mb/s"), 1420);
363 apManager +
"/RateChange",
369 std::ofstream outfile(
"throughput-" + outputFileName +
".plt");
370 Gnuplot gnuplot =
Gnuplot(
"throughput-" + outputFileName +
".eps",
"Throughput");
372 gnuplot.
SetLegend(
"Time (seconds)",
"Throughput (Mb/s)");
373 gnuplot.
SetTitle(
"Throughput (AP to STA) vs time");
Class to collect node statistics.
void SetPosition(Ptr< Node > node, Vector position)
Set node position.
Gnuplot2dDataset GetDatafile()
void RxCallback(std::string path, Ptr< const Packet > packet, const Address &from)
RX callback.
NodeStatistics(NetDeviceContainer aps, NetDeviceContainer stas)
Constructor.
Vector GetPosition(Ptr< Node > node)
Get node position.
void AdvancePosition(Ptr< Node > node, int stepsSize, int stepsTime)
Advance node position.
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.
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.
Parse command-line arguments.
Class to represent a 2D points plot.
a simple class to generate gnuplot-ready plotting commands from a set of datasets.
void AddDataset(const GnuplotDataset &dataset)
void SetLegend(const std::string &xLegend, const std::string &yLegend)
void SetTerminal(const std::string &terminal)
void GenerateOutput(std::ostream &os)
Writes gnuplot commands and data values to a single output stream.
void SetTitle(const std::string &title)
aggregate IP/TCP/UDP functionality to existing Nodes.
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
Ipv4 addresses are stored in host order in this class.
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.
Keep track of the current position and velocity of an object.
holds a vector of ns3::NetDevice pointers
void Add(NetDeviceContainer other)
Append the contents of another NetDeviceContainer to the end of this container.
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.
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.
uint32_t GetSize() const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes.
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
static Time Now()
Return the current simulation virtual time.
static void Run()
Run the simulation.
static void Stop()
Tell the Simulator the calling event should be the last one executed.
The IEEE 802.11 SSID Information Element.
AttributeValue implementation for Ssid.
AttributeValue implementation for Time.
Hold an unsigned integer type.
helps to create WifiNetDevice objects
create MAC layers for a ns3::WifiNetDevice.
void SetType(std::string type, Args &&... args)
manage and create wifi channel objects for the YANS model.
static YansWifiChannelHelper Default()
Create a channel helper in a default working state.
Ptr< YansWifiChannel > Create() const
Make it easy to create and manage PHY objects for the YANS model.
void SetChannel(Ptr< YansWifiChannel > channel)
void Connect(std::string path, const CallbackBase &cb)
bool ConnectFailSafe(std::string path, const CallbackBase &cb)
void Set(std::string path, 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.
void(* DataRate)(DataRate oldValue, DataRate newValue)
TracedValue callback signature for DataRate.
Time Seconds(double value)
Construct a Time in the indicated unit.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Callback< R, Args... > MakeCallback(R(T::*memPtr)(Args...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
void RateCallback(std::string path, uint64_t rate, Mac48Address dest)
Ptr< PacketSink > sink
Pointer to the packet sink application.