A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
wifi
helper
wifi-radio-energy-model-helper.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2010 Network Security Lab, University of Washington, Seattle.
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
* Author: Sidharth Nabar <snabar@uw.edu>, He Wu <mdzz@u.washington.edu>
19
*/
20
21
#ifndef WIFI_RADIO_ENERGY_MODEL_HELPER_H
22
#define WIFI_RADIO_ENERGY_MODEL_HELPER_H
23
24
#include "ns3/energy-model-helper.h"
25
#include "ns3/wifi-radio-energy-model.h"
26
27
namespace
ns3
{
28
36
class
WifiRadioEnergyModelHelper
:
public
DeviceEnergyModelHelper
37
{
38
public
:
42
WifiRadioEnergyModelHelper
();
43
47
~WifiRadioEnergyModelHelper
();
48
55
void
Set
(std::string name,
const
AttributeValue
&v);
56
62
void
SetDepletionCallback
(
63
WifiRadioEnergyModel::WifiRadioEnergyDepletionCallback
callback);
64
70
void
SetRechargedCallback
(
71
WifiRadioEnergyModel::WifiRadioEnergyRechargedCallback
callback);
72
94
void
SetTxCurrentModel
(std::string name,
95
std::string n0 =
""
,
const
AttributeValue
&v0 =
EmptyAttributeValue
(),
96
std::string n1 =
""
,
const
AttributeValue
&v1 =
EmptyAttributeValue
(),
97
std::string n2 =
""
,
const
AttributeValue
&v2 =
EmptyAttributeValue
(),
98
std::string n3 =
""
,
const
AttributeValue
&v3 =
EmptyAttributeValue
(),
99
std::string n4 =
""
,
const
AttributeValue
&v4 =
EmptyAttributeValue
(),
100
std::string n5 =
""
,
const
AttributeValue
&v5 =
EmptyAttributeValue
(),
101
std::string n6 =
""
,
const
AttributeValue
&v6 =
EmptyAttributeValue
(),
102
std::string n7 =
""
,
const
AttributeValue
&v7 =
EmptyAttributeValue
());
103
104
private
:
112
virtual
Ptr<DeviceEnergyModel>
DoInstall
(
Ptr<NetDevice>
device,
113
Ptr<EnergySource>
source)
const
;
114
115
private
:
116
ObjectFactory
m_radioEnergy
;
117
WifiRadioEnergyModel::WifiRadioEnergyDepletionCallback
m_depletionCallback
;
118
WifiRadioEnergyModel::WifiRadioEnergyRechargedCallback
m_rechargedCallback
;
119
ObjectFactory
m_txCurrentModel
;
120
121
};
122
123
}
// namespace ns3
124
125
#endif
/* WIFI_RADIO_ENERGY_MODEL_HELPER_H */
ns3::DeviceEnergyModelHelper
Creates DeviceEnergyModel objects.
Definition:
energy-model-helper.h:116
ns3::WifiRadioEnergyModelHelper
Assign WifiRadioEnergyModel to wifi devices.
Definition:
wifi-radio-energy-model-helper.h:36
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition:
ptr.h:73
ns3::Callback< void >
ns3::WifiRadioEnergyModelHelper::SetDepletionCallback
void SetDepletionCallback(WifiRadioEnergyModel::WifiRadioEnergyDepletionCallback callback)
Definition:
wifi-radio-energy-model-helper.cc:46
ns3::AttributeValue
Hold a value for an Attribute.
Definition:
attribute.h:68
ns3::WifiRadioEnergyModelHelper::m_rechargedCallback
WifiRadioEnergyModel::WifiRadioEnergyRechargedCallback m_rechargedCallback
radio energy recharged callback
Definition:
wifi-radio-energy-model-helper.h:118
ns3::WifiRadioEnergyModelHelper::WifiRadioEnergyModelHelper
WifiRadioEnergyModelHelper()
Construct a helper which is used to add a radio energy model to a node.
Definition:
wifi-radio-energy-model-helper.cc:28
ns3::WifiRadioEnergyModelHelper::~WifiRadioEnergyModelHelper
~WifiRadioEnergyModelHelper()
Destroy a RadioEnergy Helper.
Definition:
wifi-radio-energy-model-helper.cc:35
ns3::EmptyAttributeValue
A class for an empty attribute value.
Definition:
attribute.h:232
ns3::WifiRadioEnergyModelHelper::m_radioEnergy
ObjectFactory m_radioEnergy
radio energy
Definition:
wifi-radio-energy-model-helper.h:116
ns3::WifiRadioEnergyModelHelper::m_depletionCallback
WifiRadioEnergyModel::WifiRadioEnergyDepletionCallback m_depletionCallback
radio energy depletion callback
Definition:
wifi-radio-energy-model-helper.h:117
ns3::WifiRadioEnergyModelHelper::DoInstall
virtual Ptr< DeviceEnergyModel > DoInstall(Ptr< NetDevice > device, Ptr< EnergySource > source) const
Definition:
wifi-radio-energy-model-helper.cc:89
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::WifiRadioEnergyModelHelper::Set
void Set(std::string name, const AttributeValue &v)
Definition:
wifi-radio-energy-model-helper.cc:40
ns3::ObjectFactory
Instantiate subclasses of ns3::Object.
Definition:
object-factory.h:47
ns3::WifiRadioEnergyModelHelper::SetTxCurrentModel
void SetTxCurrentModel(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-radio-energy-model-helper.cc:60
ns3::WifiRadioEnergyModelHelper::SetRechargedCallback
void SetRechargedCallback(WifiRadioEnergyModel::WifiRadioEnergyRechargedCallback callback)
Definition:
wifi-radio-energy-model-helper.cc:53
ns3::WifiRadioEnergyModelHelper::m_txCurrentModel
ObjectFactory m_txCurrentModel
transmit current model
Definition:
wifi-radio-energy-model-helper.h:119
Generated on Wed Nov 7 2018 10:02:13 for ns-3 by
1.8.14