A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
adhoc-aloha-ideal-phy.cc
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2010 CTTC
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Nicola Baldo <nbaldo@cttc.es>
19  */
20 
21 
22 
23 #include <iostream>
24 
25 #include <ns3/core-module.h>
26 #include <ns3/network-module.h>
27 #include <ns3/spectrum-model-ism2400MHz-res1MHz.h>
28 #include <ns3/spectrum-model-300kHz-300GHz-log.h>
29 #include <ns3/wifi-spectrum-value-helper.h>
30 #include <ns3/single-model-spectrum-channel.h>
31 #include <ns3/waveform-generator.h>
32 #include <ns3/spectrum-analyzer.h>
33 #include <ns3/log.h>
34 #include <string>
35 #include <ns3/friis-spectrum-propagation-loss.h>
36 #include <ns3/propagation-delay-model.h>
37 #include <ns3/mobility-module.h>
38 #include <ns3/spectrum-helper.h>
39 #include <ns3/applications-module.h>
40 #include <ns3/adhoc-aloha-noack-ideal-phy-helper.h>
41 
42 NS_LOG_COMPONENT_DEFINE ("TestAdhocOfdmAloha");
43 
44 using namespace ns3;
45 
46 static bool g_verbose = false;
47 
48 void
49 PhyTxStartTrace (std::string context, Ptr<const Packet> p)
50 {
51  if (g_verbose)
52  {
53  std::cout << context << " PHY TX START p: " << p << std::endl;
54  }
55 }
56 
57 
58 void
59 PhyTxEndTrace (std::string context, Ptr<const Packet> p)
60 {
61  if (g_verbose)
62  {
63  std::cout << context << " PHY TX END p: " << p << std::endl;
64  }
65 }
66 
67 void
68 PhyRxStartTrace (std::string context, Ptr<const Packet> p)
69 {
70  if (g_verbose)
71  {
72  std::cout << context << " PHY RX START p:" << p << std::endl;
73  }
74 }
75 
76 void
77 PhyRxEndOkTrace (std::string context, Ptr<const Packet> p)
78 {
79  if (g_verbose)
80  {
81  std::cout << context << " PHY RX END OK p:" << p << std::endl;
82  }
83 }
84 
85 void
86 PhyRxEndErrorTrace (std::string context, Ptr<const Packet> p)
87 {
88  if (g_verbose)
89  {
90  std::cout << context << " PHY RX END ERROR p:" << p << std::endl;
91  }
92 }
93 
94 
95 void
96 ReceivePacket (Ptr<Socket> socket)
97 {
98  Ptr<Packet> packet;
99  uint64_t bytes = 0;
100  while ((packet = socket->Recv ()))
101  {
102  bytes += packet->GetSize ();
103  }
104  if (g_verbose)
105  {
106  std::cout << "SOCKET received " << bytes << " bytes" << std::endl;
107  }
108 }
109 
111 SetupPacketReceive (Ptr<Node> node)
112 {
113  TypeId tid = TypeId::LookupByName ("ns3::PacketSocketFactory");
114  Ptr<Socket> sink = Socket::CreateSocket (node, tid);
115  sink->Bind ();
116  sink->SetRecvCallback (MakeCallback (&ReceivePacket));
117  return sink;
118 }
119 
120 int main (int argc, char** argv)
121 {
122  CommandLine cmd;
123  cmd.AddValue ("verbose", "Print trace information if true", g_verbose);
124  cmd.Parse (argc, argv);
125 
126  NodeContainer c;
127  c.Create (2);
128 
129  MobilityHelper mobility;
130  Ptr<ListPositionAllocator> positionAlloc = CreateObject<ListPositionAllocator> ();
131  positionAlloc->Add (Vector (0.0, 0.0, 0.0));
132  positionAlloc->Add (Vector (5.0, 0.0, 0.0));
133  mobility.SetPositionAllocator (positionAlloc);
134  mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
135 
136  mobility.Install (c);
137 
138 
139  SpectrumChannelHelper channelHelper = SpectrumChannelHelper::Default ();
140  Ptr<SpectrumChannel> channel = channelHelper.Create ();
141 
143 
144  double txPower = 0.1; // Watts
145  uint32_t channelNumber = 1;
146  Ptr<SpectrumValue> txPsd = sf.CreateTxPowerSpectralDensity (txPower, channelNumber);
147 
148  // for the noise, we use the Power Spectral Density of thermal noise
149  // at room temperature. The value of the PSD will be constant over the band of interest.
150  const double k = 1.381e-23; //Boltzmann's constant
151  const double T = 290; // temperature in Kelvin
152  double noisePsdValue = k * T; // watts per hertz
153  Ptr<SpectrumValue> noisePsd = sf.CreateConstant (noisePsdValue);
154 
155  AdhocAlohaNoackIdealPhyHelper deviceHelper;
156  deviceHelper.SetChannel (channel);
157  deviceHelper.SetTxPowerSpectralDensity (txPsd);
158  deviceHelper.SetNoisePowerSpectralDensity (noisePsd);
159  deviceHelper.SetPhyAttribute ("Rate", DataRateValue (DataRate ("1Mbps")));
160  NetDeviceContainer devices = deviceHelper.Install (c);
161 
162  PacketSocketHelper packetSocket;
163  packetSocket.Install (c);
164 
165  PacketSocketAddress socket;
166  socket.SetSingleDevice (devices.Get (0)->GetIfIndex ());
167  socket.SetPhysicalAddress (devices.Get (1)->GetAddress ());
168  socket.SetProtocol (1);
169 
170  OnOffHelper onoff ("ns3::PacketSocketFactory", Address (socket));
171  onoff.SetConstantRate (DataRate ("0.5Mbps"));
172  onoff.SetAttribute ("PacketSize", UintegerValue (125));
173 
174  ApplicationContainer apps = onoff.Install (c.Get (0));
175  apps.Start (Seconds (0.1));
176  apps.Stop (Seconds (0.104));
177 
178  Ptr<Socket> recvSink = SetupPacketReceive (c.Get (1));
179 
180  Simulator::Stop (Seconds (10.0));
181 
182  Config::Connect ("/NodeList/*/DeviceList/*/Phy/TxStart", MakeCallback (&PhyTxStartTrace));
183  Config::Connect ("/NodeList/*/DeviceList/*/Phy/TxEnd", MakeCallback (&PhyTxEndTrace));
184  Config::Connect ("/NodeList/*/DeviceList/*/Phy/RxStart", MakeCallback (&PhyRxStartTrace));
185  Config::Connect ("/NodeList/*/DeviceList/*/Phy/RxEndOk", MakeCallback (&PhyRxEndOkTrace));
186  Config::Connect ("/NodeList/*/DeviceList/*/Phy/RxEndError", MakeCallback (&PhyRxEndErrorTrace));
187 
188 
189  Simulator::Run ();
190 
192 
193  return 0;
194 }
holds a vector of ns3::Application pointers.
void SetTxPowerSpectralDensity(Ptr< SpectrumValue > txPsd)
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
void SetPhyAttribute(std::string name, const AttributeValue &v)
an address for a packet socket
static void Run(void)
Definition: simulator.cc:157
#define NS_LOG_COMPONENT_DEFINE(name)
Definition: log.h:122
Ptr< SpectrumChannel > Create(void) const
uint32_t GetSize(void) const
Definition: packet.h:620
void Connect(std::string path, const CallbackBase &cb)
Definition: config.cc:728
A helper to make it easier to instantiate an ns3::OnOffApplication on a set of nodes.
Definition: on-off-helper.h:41
a 3d vector
Definition: vector.h:31
Give ns3::PacketSocket powers to ns3::Node.
a polymophic address class
Definition: address.h:86
Class for representing data rates.
Definition: data-rate.h:71
void Install(Ptr< Node > node) const
"Layout" a single node according to the current position allocator type.
Hold an unsigned integer type.
Definition: uinteger.h:46
holds a vector of ns3::NetDevice pointers
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
Definition: callback.h:502
void SetRecvCallback(Callback< void, Ptr< Socket > >)
Notify application when new data is available to be read.
Definition: socket.cc:127
static Ptr< Socket > CreateSocket(Ptr< Node > node, TypeId tid)
Definition: socket.cc:70
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 argumentsInstances of this class can be used to parse command-line arguments: user...
Definition: command-line.h:50
static void Destroy(void)
Definition: simulator.cc:121
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket.
keep track of a set of node pointers.
virtual Ptr< Packet > Recv(uint32_t maxSize, uint32_t flags)=0
Read data from the socket.
void SetMobilityModel(std::string type, 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())
void Install(Ptr< Node > node) const
Helper class used to assign positions and mobility models to nodes.
void Stop(Time stop)
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter...
Time Seconds(double seconds)
create ns3::Time instances in units of seconds.
Definition: nstime.h:586
hold objects of type ns3::DataRate
void AddValue(const std::string &name, const std::string &help, T &value)
Definition: command-line.h:134
static void Stop(void)
Definition: simulator.cc:164
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
void Parse(int argc, char *argv[]) const
Definition: command-line.cc:84
void SetChannel(Ptr< SpectrumChannel > channel)
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
void SetPositionAllocator(Ptr< PositionAllocator > allocator)
NetDeviceContainer Install(NodeContainer c) const
a unique identifier for an interface.
Definition: type-id.h:44
void SetNoisePowerSpectralDensity(Ptr< SpectrumValue > noisePsd)
static TypeId LookupByName(std::string name)
Definition: type-id.cc:415