A Discrete-Event Network Simulator
API
wifi-tx-current-model.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014 Universita' degli Studi di Napoli "Federico II"
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: Stefano Avallone <stefano.avallone@unina.it>
19  */
20 
21 #include "wifi-tx-current-model.h"
22 #include "ns3/log.h"
23 #include "ns3/double.h"
24 #include "wifi-utils.h"
25 
26 namespace ns3 {
27 
28 NS_LOG_COMPONENT_DEFINE ("WifiTxCurrentModel");
29 
30 NS_OBJECT_ENSURE_REGISTERED (WifiTxCurrentModel);
31 
32 TypeId
34 {
35  static TypeId tid = TypeId ("ns3::WifiTxCurrentModel")
36  .SetParent<Object> ()
37  .SetGroupName ("Wifi")
38  ;
39  return tid;
40 }
41 
43 {
44 }
45 
47 {
48 }
49 
51 
52 TypeId
54 {
55  static TypeId tid = TypeId ("ns3::LinearWifiTxCurrentModel")
57  .SetGroupName ("Wifi")
58  .AddConstructor<LinearWifiTxCurrentModel> ()
59  .AddAttribute ("Eta", "The efficiency of the power amplifier.",
60  DoubleValue (0.10),
63  MakeDoubleChecker<double> ())
64  .AddAttribute ("Voltage", "The supply voltage (in Volts).",
65  DoubleValue (3.0),
68  MakeDoubleChecker<double> ())
69  .AddAttribute ("IdleCurrent", "The current in the IDLE state (in Watts).",
70  DoubleValue (0.273333),
73  MakeDoubleChecker<double> ())
74  ;
75  return tid;
76 }
77 
79 {
80  NS_LOG_FUNCTION (this);
81 }
82 
84 {
85  NS_LOG_FUNCTION (this);
86 }
87 
88 void
90 {
91  NS_LOG_FUNCTION (this << eta);
92  m_eta = eta;
93 }
94 
95 void
97 {
98  NS_LOG_FUNCTION (this << voltage);
99  m_voltage = voltage;
100 }
101 
102 void
104 {
105  NS_LOG_FUNCTION (this << idleCurrent);
106  m_idleCurrent = idleCurrent;
107 }
108 
109 double
111 {
112  return m_eta;
113 }
114 
115 double
117 {
118  return m_voltage;
119 }
120 
121 double
123 {
124  return m_idleCurrent;
125 }
126 
127 double
129 {
130  NS_LOG_FUNCTION (this << txPowerDbm);
131  return DbmToW (txPowerDbm) / (m_voltage * m_eta) + m_idleCurrent;
132 }
133 
134 } // namespace ns3
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:45
double DbmToW(double dBm)
Convert from dBm to Watts.
Definition: wifi-utils.cc:41
static TypeId GetTypeId(void)
Get the type ID.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:201
static TypeId GetTypeId(void)
Get the type ID.
double CalcTxCurrent(double txPowerDbm) const
a linear model of the Wifi transmit current
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Definition: double.h:42
void SetIdleCurrent(double idleCurrent)
A base class which provides memory management and object aggregation.
Definition: object.h:87
Modelize the transmit current as a function of the transmit power and mode.
This class can be used to hold variables of floating point type such as 'double' or 'float'...
Definition: double.h:41
a unique identifier for an interface.
Definition: type-id.h:58
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:914