A Discrete-Event Network Simulator
API
constant-spectrum-propagation-loss.cc
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
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: Manuel Requena <manuel.requena@cttc.es>
19  */
20 
21 #include <cmath>
22 
23 #include "ns3/log.h"
24 
25 #include "ns3/constant-spectrum-propagation-loss.h"
26 #include "ns3/double.h"
27 
28 
29 namespace ns3 {
30 
31 NS_LOG_COMPONENT_DEFINE ("ConstantSpectrumPropagationLossModel");
32 
33 NS_OBJECT_ENSURE_REGISTERED (ConstantSpectrumPropagationLossModel);
34 
36 {
37  NS_LOG_FUNCTION (this);
38 }
39 
41 {
42  NS_LOG_FUNCTION (this);
43 }
44 
45 TypeId
47 {
48  static TypeId tid = TypeId ("ns3::ConstantSpectrumPropagationLossModel")
50  .SetGroupName ("Spectrum")
51  .AddConstructor<ConstantSpectrumPropagationLossModel> ()
52  .AddAttribute ("Loss",
53  "Path loss (dB) between transmitter and receiver",
54  DoubleValue (1.0),
57  MakeDoubleChecker<double> ())
58  ;
59  return tid;
60 }
61 
62 
63 void
65 {
66  NS_LOG_FUNCTION (this);
67  m_lossDb = lossDb;
68  m_lossLinear = std::pow (10, m_lossDb / 10);
69 }
70 
71 
72 double
74 {
75  NS_LOG_FUNCTION (this);
76  return m_lossDb;
77 }
78 
79 
84 {
85  NS_LOG_FUNCTION (this);
86 
87  Ptr<SpectrumValue> rxPsd = Copy<SpectrumValue> (txPsd);
88  Values::iterator vit = rxPsd->ValuesBegin ();
89  Bands::const_iterator fit = rxPsd->ConstBandsBegin ();
90 
91  while (vit != rxPsd->ValuesEnd ())
92  {
93  NS_ASSERT (fit != rxPsd->ConstBandsEnd ());
94  NS_LOG_LOGIC ("Ptx = " << *vit);
95  *vit /= m_lossLinear; // Prx = Ptx / loss
96  NS_LOG_LOGIC ("Prx = " << *vit);
97  ++vit;
98  ++fit;
99  }
100  return rxPsd;
101 }
102 
103 
104 } // 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
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
Definition: assert.h:67
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
Values::iterator ValuesEnd()
virtual Ptr< SpectrumValue > DoCalcRxPowerSpectralDensity(Ptr< const SpectrumValue > txPsd, Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const
double GetLossDb() const
Get the propagation loss.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Definition: log.h:289
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void SetLossDb(double lossDb)
Set the propagation loss.
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
Values::iterator ValuesBegin()
Bands::const_iterator ConstBandsEnd() const
spectrum-aware propagation loss model
This class can be used to hold variables of floating point type such as &#39;double&#39; or &#39;float&#39;...
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:923
Bands::const_iterator ConstBandsBegin() const