A Discrete-Event Network Simulator
API
spectrum-wifi-helper.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2008 INRIA
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  * Authors: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19  * Sébastien Deronne <sebastien.deronne@gmail.com>
20  */
21 
22 #include "ns3/trace-helper.h"
23 #include "spectrum-wifi-helper.h"
24 #include "ns3/error-rate-model.h"
25 #include "ns3/spectrum-channel.h"
26 #include "ns3/spectrum-wifi-phy.h"
27 #include "ns3/wifi-net-device.h"
28 #include "ns3/names.h"
29 #include "ns3/log.h"
30 
31 namespace ns3 {
32 
33 NS_LOG_COMPONENT_DEFINE ("SpectrumWifiHelper");
34 
36  : m_channel (0)
37 {
38  m_phy.SetTypeId ("ns3::SpectrumWifiPhy");
39 }
40 
43 {
44  SpectrumWifiPhyHelper helper;
45  helper.SetErrorRateModel ("ns3::NistErrorRateModel");
46  return helper;
47 }
48 
49 void
51 {
53 }
54 
55 void
56 SpectrumWifiPhyHelper::SetChannel (std::string channelName)
57 {
58  Ptr<SpectrumChannel> channel = Names::Find<SpectrumChannel> (channelName);
60 }
61 
64 {
66  phy->CreateWifiSpectrumPhyInterface (device);
68  phy->SetErrorRateModel (error);
69  phy->SetChannel (m_channel);
70  phy->SetDevice (device);
71  phy->SetMobility (node->GetObject<MobilityModel> ());
72  return phy;
73 }
74 
75 } //namespace ns3
tuple channel
Definition: third.py:85
void SetDevice(Ptr< NetDevice > device)
Sets the device this PHY is associated with.
Definition: wifi-phy.cc:598
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
Definition: object.h:462
void SetChannel(Ptr< SpectrumChannel > channel)
Set the SpectrumChannel this SpectrumWifiPhy is to be connected to.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:201
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
ObjectFactory m_errorRateModel
Definition: wifi-helper.h:185
SpectrumWifiPhyHelper()
Create a phy helper without any parameter set.
the interface for Wifi's error models
Keep track of the current position and velocity of an object.
tuple phy
Definition: third.py:86
static SpectrumWifiPhyHelper Default(void)
Create a phy helper in a default working state.
Ptr< Object > Create(void) const
Create an Object instance of the configured TypeId.
void SetChannel(Ptr< SpectrumChannel > channel)
802.11 PHY layer modelThis PHY implements a spectrum-aware enhancement of the 802.11 SpectrumWifiPhy model.
Ptr< SpectrumChannel > m_channel
virtual Ptr< WifiPhy > Create(Ptr< Node > node, Ptr< NetDevice > device) const
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void SetMobility(Ptr< MobilityModel > mobility)
assign a mobility model to this device
Definition: wifi-phy.cc:610
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())
Definition: wifi-helper.cc:118
ObjectFactory m_phy
Definition: wifi-helper.h:184
void CreateWifiSpectrumPhyInterface(Ptr< NetDevice > device)
Method to encapsulate the creation of the WifiSpectrumPhyInterface object (used to bind the WifiSpect...
void SetErrorRateModel(Ptr< ErrorRateModel > rate)
Sets the error rate model.
Definition: wifi-phy.cc:629
Make it easy to create and manage PHY objects for the spectrum model.