A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
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
35
ConstantSpectrumPropagationLossModel::ConstantSpectrumPropagationLossModel
()
36
{
37
NS_LOG_FUNCTION
(
this
);
38
}
39
40
ConstantSpectrumPropagationLossModel::~ConstantSpectrumPropagationLossModel
()
41
{
42
NS_LOG_FUNCTION
(
this
);
43
}
44
45
TypeId
46
ConstantSpectrumPropagationLossModel::GetTypeId
(
void
)
47
{
48
static
TypeId
tid =
TypeId
(
"ns3::ConstantSpectrumPropagationLossModel"
)
49
.
SetParent
<
SpectrumPropagationLossModel
> ()
50
.SetGroupName (
"Spectrum"
)
51
.AddConstructor<
ConstantSpectrumPropagationLossModel
> ()
52
.AddAttribute (
"Loss"
,
53
"Path loss (dB) between transmitter and receiver"
,
54
DoubleValue
(1.0),
55
MakeDoubleAccessor
(&
ConstantSpectrumPropagationLossModel::SetLossDb
,
56
&
ConstantSpectrumPropagationLossModel::GetLossDb
),
57
MakeDoubleChecker<double> ())
58
;
59
return
tid;
60
}
61
62
63
void
64
ConstantSpectrumPropagationLossModel::SetLossDb
(
double
lossDb)
65
{
66
NS_LOG_FUNCTION
(
this
);
67
m_lossDb
= lossDb;
68
m_lossLinear
= std::pow (10,
m_lossDb
/ 10);
69
}
70
71
72
double
73
ConstantSpectrumPropagationLossModel::GetLossDb
()
const
74
{
75
NS_LOG_FUNCTION
(
this
);
76
return
m_lossDb
;
77
}
78
79
80
Ptr<SpectrumValue>
81
ConstantSpectrumPropagationLossModel::DoCalcRxPowerSpectralDensity
(
Ptr<const SpectrumValue>
txPsd,
82
Ptr<const MobilityModel>
a,
83
Ptr<const MobilityModel>
b)
const
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
ns3::ConstantSpectrumPropagationLossModel
A Constant (fixed) propagation loss.
Definition:
constant-spectrum-propagation-loss.h:34
ns3::ConstantSpectrumPropagationLossModel::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition:
constant-spectrum-propagation-loss.cc:46
ns3::ConstantSpectrumPropagationLossModel::SetLossDb
void SetLossDb(double lossDb)
Set the propagation loss.
Definition:
constant-spectrum-propagation-loss.cc:64
ns3::ConstantSpectrumPropagationLossModel::GetLossDb
double GetLossDb() const
Get the propagation loss.
Definition:
constant-spectrum-propagation-loss.cc:73
ns3::ConstantSpectrumPropagationLossModel::m_lossDb
double m_lossDb
Propagation loss [dB].
Definition:
constant-spectrum-propagation-loss.h:60
ns3::ConstantSpectrumPropagationLossModel::DoCalcRxPowerSpectralDensity
virtual Ptr< SpectrumValue > DoCalcRxPowerSpectralDensity(Ptr< const SpectrumValue > txPsd, Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const
Definition:
constant-spectrum-propagation-loss.cc:81
ns3::ConstantSpectrumPropagationLossModel::~ConstantSpectrumPropagationLossModel
~ConstantSpectrumPropagationLossModel()
Definition:
constant-spectrum-propagation-loss.cc:40
ns3::ConstantSpectrumPropagationLossModel::ConstantSpectrumPropagationLossModel
ConstantSpectrumPropagationLossModel()
Definition:
constant-spectrum-propagation-loss.cc:35
ns3::ConstantSpectrumPropagationLossModel::m_lossLinear
double m_lossLinear
Propagation loss (linear)
Definition:
constant-spectrum-propagation-loss.h:61
ns3::DoubleValue
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition:
double.h:41
ns3::Ptr< SpectrumValue >
ns3::SpectrumPropagationLossModel
spectrum-aware propagation loss model
Definition:
spectrum-propagation-loss-model.h:45
ns3::SpectrumValue::ConstBandsEnd
Bands::const_iterator ConstBandsEnd() const
Definition:
spectrum-value.cc:100
ns3::SpectrumValue::ValuesBegin
Values::iterator ValuesBegin()
Definition:
spectrum-value.cc:82
ns3::SpectrumValue::ConstBandsBegin
Bands::const_iterator ConstBandsBegin() const
Definition:
spectrum-value.cc:94
ns3::SpectrumValue::ValuesEnd
Values::iterator ValuesEnd()
Definition:
spectrum-value.cc:88
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:59
ns3::TypeId::SetParent
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition:
type-id.cc:922
NS_ASSERT
#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
ns3::MakeDoubleAccessor
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
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition:
log.h:205
NS_LOG_LOGIC
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Definition:
log.h:289
NS_LOG_FUNCTION
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Definition:
log-macros-enabled.h:244
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition:
object-base.h:45
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
src
spectrum
model
constant-spectrum-propagation-loss.cc
Generated on Tue Feb 6 2024 19:21:27 for ns-3 by
1.9.1