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/interference-helper.h"
26 #include "ns3/error-rate-model.h"
27 #include "ns3/frame-capture-model.h"
28 #include "ns3/preamble-detection-model.h"
29 #include "ns3/mobility-model.h"
30 #include "ns3/wifi-net-device.h"
31 #include "spectrum-wifi-helper.h"
32 
33 namespace ns3 {
34 
35 NS_LOG_COMPONENT_DEFINE ("SpectrumWifiHelper");
36 
38  : m_channel (0)
39 {
40  m_phy.SetTypeId ("ns3::SpectrumWifiPhy");
41  SetInterferenceHelper ("ns3::InterferenceHelper");
42  SetErrorRateModel ("ns3::TableBasedErrorRateModel");
43 }
44 
45 void
47 {
49 }
50 
51 void
52 SpectrumWifiPhyHelper::SetChannel (std::string channelName)
53 {
54  Ptr<SpectrumChannel> channel = Names::Find<SpectrumChannel> (channelName);
56 }
57 
60 {
62  phy->CreateWifiSpectrumPhyInterface (device);
64  phy->SetInterferenceHelper (interference);
66  phy->SetErrorRateModel (error);
68  {
69  auto frameCapture = m_frameCaptureModel.Create<FrameCaptureModel> ();
70  phy->SetFrameCaptureModel (frameCapture);
71  }
73  {
74  auto preambleDetection = m_preambleDetectionModel.Create<PreambleDetectionModel> ();
75  phy->SetPreambleDetectionModel (preambleDetection);
76  }
77  phy->SetChannel (m_channel);
78  phy->SetDevice (device);
79  phy->SetMobility (node->GetObject<MobilityModel> ());
80  return phy;
81 }
82 
83 } //namespace ns3
the interface for Wifi's error models
the interface for Wifi's frame capture models
handles interference calculations
Keep track of the current position and velocity of an object.
Ptr< Object > Create(void) const
Create an Object instance of the configured TypeId.
bool IsTypeIdSet(void) const
Check if the ObjectFactory has been configured with a TypeId.
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
Definition: object.h:470
the interface for Wifi's preamble detection models
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:74
Ptr< WifiPhy > Create(Ptr< Node > node, Ptr< WifiNetDevice > device) const override
void SetChannel(Ptr< SpectrumChannel > channel)
Ptr< SpectrumChannel > m_channel
the channel
SpectrumWifiPhyHelper()
Create a PHY helper.
802.11 PHY layer model
void SetErrorRateModel(std::string type, Args &&... args)
Helper function used to set the error rate model.
Definition: wifi-helper.h:440
void SetInterferenceHelper(std::string type, Args &&... args)
Helper function used to set the interference helper.
Definition: wifi-helper.h:432
ObjectFactory m_frameCaptureModel
frame capture model
Definition: wifi-helper.h:189
ObjectFactory m_preambleDetectionModel
preamble detection model
Definition: wifi-helper.h:190
ObjectFactory m_errorRateModel
error rate model
Definition: wifi-helper.h:188
ObjectFactory m_interferenceHelper
interference helper
Definition: wifi-helper.h:187
ObjectFactory m_phy
PHY object.
Definition: wifi-helper.h:186
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
Every class exported by the ns3 library is enclosed in the ns3 namespace.
channel
Definition: third.py:92
phy
Definition: third.py:93