20#include <ns3/adhoc-aloha-noack-ideal-phy-helper.h>
21#include <ns3/applications-module.h>
22#include <ns3/core-module.h>
23#include <ns3/friis-spectrum-propagation-loss.h>
25#include <ns3/mobility-module.h>
26#include <ns3/network-module.h>
27#include <ns3/propagation-delay-model.h>
28#include <ns3/single-model-spectrum-channel.h>
29#include <ns3/spectrum-analyzer.h>
30#include <ns3/spectrum-helper.h>
31#include <ns3/spectrum-model-300kHz-300GHz-log.h>
32#include <ns3/spectrum-model-ism2400MHz-res1MHz.h>
33#include <ns3/waveform-generator.h>
34#include <ns3/wifi-spectrum-value-helper.h>
57 std::cout << context <<
" PHY TX START p: " << p << std::endl;
72 std::cout << context <<
" PHY TX END p: " << p << std::endl;
87 std::cout << context <<
" PHY RX START p:" << p << std::endl;
102 std::cout << context <<
" PHY RX END OK p:" << p << std::endl;
117 std::cout << context <<
" PHY RX END ERROR p:" << p << std::endl;
131 while ((packet = socket->
Recv()))
137 std::cout <<
"SOCKET received " << bytes <<
" bytes" << std::endl;
150 TypeId tid = TypeId::LookupByName(
"ns3::PacketSocketFactory");
158main(
int argc,
char** argv)
161 cmd.AddValue(
"verbose",
"Print trace information if true",
g_verbose);
162 cmd.Parse(argc, argv);
169 positionAlloc->Add(
Vector(0.0, 0.0, 0.0));
170 positionAlloc->Add(
Vector(5.0, 0.0, 0.0));
171 mobility.SetPositionAllocator(positionAlloc);
172 mobility.SetMobilityModel(
"ns3::ConstantPositionMobilityModel");
181 double txPower = 0.1;
187 const double k = 1.381e-23;
188 const double T = 290;
189 double noisePsdValue =
k * T;
208 onoff.SetConstantRate(
DataRate(
"0.5Mbps"));
217 Simulator::Stop(
Seconds(10.0));
227 Simulator::Destroy();
void PhyTxEndTrace(std::string context, Ptr< const Packet > p)
PHY end TX trace.
Ptr< Socket > SetupPacketReceive(Ptr< Node > node)
Create a socket and prepare it for packet reception.
void PhyRxEndErrorTrace(std::string context, Ptr< const Packet > p)
PHY end error RX trace.
void PhyRxStartTrace(std::string context, Ptr< const Packet > p)
PHY start RX trace.
void ReceivePacket(Ptr< Socket > socket)
Receive callback.
static bool g_verbose
True for verbose output.
void PhyRxEndOkTrace(std::string context, Ptr< const Packet > p)
PHY end OK RX trace.
void PhyTxStartTrace(std::string context, Ptr< const Packet > p)
PHY start TX trace.
a polymophic address class
create the AlohaNoackNetDevice
void SetPhyAttribute(std::string name, const AttributeValue &v)
void SetTxPowerSpectralDensity(Ptr< SpectrumValue > txPsd)
void SetNoisePowerSpectralDensity(Ptr< SpectrumValue > noisePsd)
void SetChannel(Ptr< SpectrumChannel > channel)
set the SpectrumChannel that will be used by SpectrumPhy instances created by this helper
NetDeviceContainer Install(NodeContainer c) const
holds a vector of ns3::Application pointers.
void Start(Time start)
Arrange for all of the Applications in this container to Start() at the Time given as a parameter.
void Stop(Time stop)
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter.
Parse command-line arguments.
AttributeValue implementation for DataRate.
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.
uint32_t GetSize() const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
an address for a packet socket
void SetProtocol(uint16_t protocol)
Set the protocol.
void SetPhysicalAddress(const Address address)
Set the destination address.
void SetSingleDevice(uint32_t device)
Set the address to match only a specified NetDevice.
Give ns3::PacketSocket powers to ns3::Node.
void Install(Ptr< Node > node) const
Aggregate an instance of a ns3::PacketSocketFactory onto the provided node.
virtual Ptr< Packet > Recv(uint32_t maxSize, uint32_t flags)=0
Read data from the socket.
Ptr< SpectrumChannel > Create() const
a unique identifier for an interface.
Hold an unsigned integer type.
Vector3D Vector
Vector alias typedef for compatibility with mobility models.
Implements Wifi SpectrumValue for the 2.4 GHz ISM band only, with a 5 MHz spectrum resolution.
virtual Ptr< SpectrumValue > CreateConstant(double psd)
Creates a SpectrumValue instance with a constant value for all frequencies.
virtual Ptr< SpectrumValue > CreateTxPowerSpectralDensity(double txPower, uint8_t channel)
Creates a SpectrumValue instance that represents the TX Power Spectral Density of a wifi device corre...
void Connect(std::string path, const CallbackBase &cb)
#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 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...
Ptr< PacketSink > sink
Pointer to the packet sink application.