A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
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
35
SpectrumWifiPhyHelper::SpectrumWifiPhyHelper
()
36
: m_channel (0)
37
{
38
m_phy
.
SetTypeId
(
"ns3::SpectrumWifiPhy"
);
39
SetErrorRateModel
(
"ns3::TableBasedErrorRateModel"
);
40
}
41
42
void
43
SpectrumWifiPhyHelper::SetChannel
(
Ptr<SpectrumChannel>
channel
)
44
{
45
m_channel
=
channel
;
46
}
47
48
void
49
SpectrumWifiPhyHelper::SetChannel
(std::string channelName)
50
{
51
Ptr<SpectrumChannel>
channel
= Names::Find<SpectrumChannel> (channelName);
52
m_channel
=
channel
;
53
}
54
55
Ptr<WifiPhy>
56
SpectrumWifiPhyHelper::Create
(
Ptr<Node>
node,
Ptr<NetDevice>
device)
const
57
{
58
Ptr<SpectrumWifiPhy>
phy
=
m_phy
.
Create
<
SpectrumWifiPhy
> ();
59
phy
->CreateWifiSpectrumPhyInterface (device);
60
Ptr<ErrorRateModel>
error =
m_errorRateModel
.
Create
<
ErrorRateModel
> ();
61
phy
->SetErrorRateModel (error);
62
if
(
m_frameCaptureModel
.
IsTypeIdSet
())
63
{
64
auto
frameCapture =
m_frameCaptureModel
.
Create
<
FrameCaptureModel
> ();
65
phy
->SetFrameCaptureModel (frameCapture);
66
}
67
if
(
m_preambleDetectionModel
.
IsTypeIdSet
())
68
{
69
auto
preambleDetection =
m_preambleDetectionModel
.
Create
<
PreambleDetectionModel
> ();
70
phy
->SetPreambleDetectionModel (preambleDetection);
71
}
72
phy
->SetChannel (
m_channel
);
73
phy
->SetDevice (device);
74
phy
->SetMobility (node->
GetObject
<
MobilityModel
> ());
75
return
phy
;
76
}
77
78
}
//namespace ns3
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition:
log.h:205
ns3::SpectrumWifiPhyHelper::Create
Ptr< WifiPhy > Create(Ptr< Node > node, Ptr< NetDevice > device) const override
Definition:
spectrum-wifi-helper.cc:56
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::Object::GetObject
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
Definition:
object.h:470
third.channel
channel
Definition:
third.py:92
ns3::WifiPhyHelper::m_errorRateModel
ObjectFactory m_errorRateModel
error rate model
Definition:
wifi-helper.h:241
ns3::WifiPhyHelper::m_preambleDetectionModel
ObjectFactory m_preambleDetectionModel
preamble detection model
Definition:
wifi-helper.h:243
ns3::ObjectFactory::IsTypeIdSet
bool IsTypeIdSet(void) const
Check if the ObjectFactory has been configured with a TypeId.
Definition:
object-factory.cc:58
ns3::WifiPhyHelper::SetErrorRateModel
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:146
ns3::PreambleDetectionModel
the interface for Wifi's preamble detection models
Definition:
preamble-detection-model.h:34
ns3::SpectrumWifiPhy
802.11 PHY layer model
Definition:
spectrum-wifi-phy.h:55
ns3::SpectrumWifiPhyHelper::m_channel
Ptr< SpectrumChannel > m_channel
the channel
Definition:
spectrum-wifi-helper.h:68
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition:
ptr.h:74
ns3::FrameCaptureModel
the interface for Wifi's frame capture models
Definition:
frame-capture-model.h:37
ns3::WifiPhyHelper::m_frameCaptureModel
ObjectFactory m_frameCaptureModel
frame capture model
Definition:
wifi-helper.h:242
ns3::ErrorRateModel
the interface for Wifi's error models
Definition:
error-rate-model.h:35
ns3::WifiPhyHelper::m_phy
ObjectFactory m_phy
PHY object.
Definition:
wifi-helper.h:240
ns3::SpectrumWifiPhyHelper::SpectrumWifiPhyHelper
SpectrumWifiPhyHelper()
Create a PHY helper.
Definition:
spectrum-wifi-helper.cc:35
ns3::MobilityModel
Keep track of the current position and velocity of an object.
Definition:
mobility-model.h:40
ns3::ObjectFactory::SetTypeId
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
Definition:
object-factory.cc:40
ns3::ObjectFactory::Create
Ptr< Object > Create(void) const
Create an Object instance of the configured TypeId.
Definition:
object-factory.cc:98
ns3::SpectrumWifiPhyHelper::SetChannel
void SetChannel(Ptr< SpectrumChannel > channel)
Definition:
spectrum-wifi-helper.cc:43
spectrum-wifi-helper.h
third.phy
phy
Definition:
third.py:93
src
wifi
helper
spectrum-wifi-helper.cc
Generated on Fri Oct 1 2021 17:03:42 for ns-3 by
1.8.20