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/log.h"
23 #include "ns3/names.h"
24 #include "ns3/spectrum-wifi-phy.h"
25 #include "ns3/error-rate-model.h"
26 #include "ns3/frame-capture-model.h"
27 #include "ns3/preamble-detection-model.h"
28 #include "ns3/mobility-model.h"
29 #include "spectrum-wifi-helper.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);
70  {
72  phy->SetFrameCaptureModel (capture);
73  }
75  {
77  phy->SetPreambleDetectionModel (capture);
78  }
79  phy->SetChannel (m_channel);
80  phy->SetDevice (device);
81  phy->SetMobility (node->GetObject<MobilityModel> ());
82  return phy;
83 }
84 
85 } //namespace ns3
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:204
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
ObjectFactory m_errorRateModel
error rate model
Definition: wifi-helper.h:235
SpectrumWifiPhyHelper()
Create a phy helper without any parameter set.
the interface for Wifi&#39;s frame capture models
the interface for Wifi&#39;s error models
channel
Definition: third.py:85
phy
Definition: third.py:86
ObjectFactory m_preambleDetectionModel
preamble detection model
Definition: wifi-helper.h:237
Keep track of the current position and velocity of an object.
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< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
Definition: object.h:459
Ptr< SpectrumChannel > m_channel
the channel
Every class exported by the ns3 library is enclosed in the ns3 namespace.
the interface for Wifi&#39;s preamble detection models
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:148
bool IsTypeIdSet(void) const
Check if the ObjectFactory has been configured with a TypeId.
ObjectFactory m_phy
PHY object.
Definition: wifi-helper.h:234
ObjectFactory m_frameCaptureModel
frame capture model
Definition: wifi-helper.h:236
virtual Ptr< WifiPhy > Create(Ptr< Node > node, Ptr< NetDevice > device) const
Make it easy to create and manage PHY objects for the spectrum model.