A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
adhoc-aloha-noack-ideal-phy-helper.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2010 CTTC
3
*
4
* This program is free software; you can redistribute it and/or modify
5
* it under the terms of the GNU General Public License version 2 as
6
* published by the Free Software Foundation;
7
*
8
* This program is distributed in the hope that it will be useful,
9
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
* GNU General Public License for more details.
12
*
13
* You should have received a copy of the GNU General Public License
14
* along with this program; if not, write to the Free Software
15
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
*
17
* Author: Nicola Baldo <nbaldo@cttc.es>
18
*/
19
20
#ifndef ADHOC_ALOHA_NOACK_IDEAL_PHY_HELPER_H
21
#define ADHOC_ALOHA_NOACK_IDEAL_PHY_HELPER_H
22
23
#include <ns3/attribute.h>
24
#include <ns3/net-device-container.h>
25
#include <ns3/node-container.h>
26
#include <ns3/object-factory.h>
27
#include <ns3/queue.h>
28
29
#include <string>
30
31
namespace
ns3
32
{
33
34
class
SpectrumValue;
35
class
SpectrumChannel;
36
41
class
AdhocAlohaNoackIdealPhyHelper
42
{
43
public
:
44
AdhocAlohaNoackIdealPhyHelper
();
45
~AdhocAlohaNoackIdealPhyHelper
();
46
52
void
SetChannel
(
Ptr<SpectrumChannel>
channel
);
53
59
void
SetChannel
(std::string channelName);
60
66
void
SetTxPowerSpectralDensity
(
Ptr<SpectrumValue>
txPsd);
67
73
void
SetNoisePowerSpectralDensity
(
Ptr<SpectrumValue>
noisePsd);
74
81
void
SetPhyAttribute
(std::string name,
const
AttributeValue
& v);
82
89
void
SetDeviceAttribute
(std::string n1,
const
AttributeValue
& v1);
90
98
template
<
typename
... Ts>
99
void
SetAntenna
(std::string
type
, Ts&&...
args
);
100
105
NetDeviceContainer
Install
(
NodeContainer
c)
const
;
110
NetDeviceContainer
Install
(
Ptr<Node>
node)
const
;
115
NetDeviceContainer
Install
(std::string nodeName)
const
;
116
117
protected
:
118
ObjectFactory
m_phy
;
119
ObjectFactory
m_device
;
120
ObjectFactory
m_queue
;
121
ObjectFactory
m_antenna
;
122
Ptr<SpectrumChannel>
m_channel
;
123
Ptr<SpectrumValue>
m_txPsd
;
124
Ptr<SpectrumValue>
m_noisePsd
;
125
};
126
127
/***************************************************************
128
* Implementation of the templates declared above.
129
***************************************************************/
130
131
template
<
typename
... Ts>
132
void
133
AdhocAlohaNoackIdealPhyHelper::SetAntenna
(std::string
type
, Ts&&...
args
)
134
{
135
m_antenna
=
ObjectFactory
(std::forward<Ts>(
args
)...);
136
}
137
138
}
// namespace ns3
139
140
#endif
/* ADHOC_ALOHA_NOACK_IDEAL_PHY_HELPER_H */
ns3::AdhocAlohaNoackIdealPhyHelper
create the AlohaNoackNetDevice
Definition:
adhoc-aloha-noack-ideal-phy-helper.h:42
ns3::AdhocAlohaNoackIdealPhyHelper::SetPhyAttribute
void SetPhyAttribute(std::string name, const AttributeValue &v)
Definition:
adhoc-aloha-noack-ideal-phy-helper.cc:79
ns3::AdhocAlohaNoackIdealPhyHelper::m_queue
ObjectFactory m_queue
Object factory for the Queue objects.
Definition:
adhoc-aloha-noack-ideal-phy-helper.h:120
ns3::AdhocAlohaNoackIdealPhyHelper::SetTxPowerSpectralDensity
void SetTxPowerSpectralDensity(Ptr< SpectrumValue > txPsd)
Definition:
adhoc-aloha-noack-ideal-phy-helper.cc:65
ns3::AdhocAlohaNoackIdealPhyHelper::m_channel
Ptr< SpectrumChannel > m_channel
Channel.
Definition:
adhoc-aloha-noack-ideal-phy-helper.h:122
ns3::AdhocAlohaNoackIdealPhyHelper::AdhocAlohaNoackIdealPhyHelper
AdhocAlohaNoackIdealPhyHelper()
Definition:
adhoc-aloha-noack-ideal-phy-helper.cc:39
ns3::AdhocAlohaNoackIdealPhyHelper::SetDeviceAttribute
void SetDeviceAttribute(std::string n1, const AttributeValue &v1)
Definition:
adhoc-aloha-noack-ideal-phy-helper.cc:85
ns3::AdhocAlohaNoackIdealPhyHelper::m_noisePsd
Ptr< SpectrumValue > m_noisePsd
Noise power spectral density.
Definition:
adhoc-aloha-noack-ideal-phy-helper.h:124
ns3::AdhocAlohaNoackIdealPhyHelper::SetAntenna
void SetAntenna(std::string type, Ts &&... args)
Definition:
adhoc-aloha-noack-ideal-phy-helper.h:133
ns3::AdhocAlohaNoackIdealPhyHelper::m_txPsd
Ptr< SpectrumValue > m_txPsd
Tx power spectral density.
Definition:
adhoc-aloha-noack-ideal-phy-helper.h:123
ns3::AdhocAlohaNoackIdealPhyHelper::SetNoisePowerSpectralDensity
void SetNoisePowerSpectralDensity(Ptr< SpectrumValue > noisePsd)
Definition:
adhoc-aloha-noack-ideal-phy-helper.cc:72
ns3::AdhocAlohaNoackIdealPhyHelper::m_phy
ObjectFactory m_phy
Object factory for the phy objects.
Definition:
adhoc-aloha-noack-ideal-phy-helper.h:118
ns3::AdhocAlohaNoackIdealPhyHelper::m_antenna
ObjectFactory m_antenna
Object factory for the Antenna objects.
Definition:
adhoc-aloha-noack-ideal-phy-helper.h:121
ns3::AdhocAlohaNoackIdealPhyHelper::m_device
ObjectFactory m_device
Object factory for the NetDevice objects.
Definition:
adhoc-aloha-noack-ideal-phy-helper.h:119
ns3::AdhocAlohaNoackIdealPhyHelper::SetChannel
void SetChannel(Ptr< SpectrumChannel > channel)
set the SpectrumChannel that will be used by SpectrumPhy instances created by this helper
Definition:
adhoc-aloha-noack-ideal-phy-helper.cc:52
ns3::AdhocAlohaNoackIdealPhyHelper::~AdhocAlohaNoackIdealPhyHelper
~AdhocAlohaNoackIdealPhyHelper()
Definition:
adhoc-aloha-noack-ideal-phy-helper.cc:47
ns3::AdhocAlohaNoackIdealPhyHelper::Install
NetDeviceContainer Install(NodeContainer c) const
Definition:
adhoc-aloha-noack-ideal-phy-helper.cc:91
ns3::AttributeValue
Hold a value for an Attribute.
Definition:
attribute.h:70
ns3::NetDeviceContainer
holds a vector of ns3::NetDevice pointers
Definition:
net-device-container.h:43
ns3::NodeContainer
keep track of a set of node pointers.
Definition:
node-container.h:40
ns3::ObjectFactory
Instantiate subclasses of ns3::Object.
Definition:
object-factory.h:48
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition:
ptr.h:77
check-style-clang-format.args
args
Definition:
check-style-clang-format.py:754
check-style-clang-format.type
type
Definition:
check-style-clang-format.py:704
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
third.channel
channel
Definition:
third.py:88
src
spectrum
helper
adhoc-aloha-noack-ideal-phy-helper.h
Generated on Sun Mar 3 2024 17:11:08 for ns-3 by
1.9.1