A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
jakes-propagation-loss-model.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2012 Telum (www.telum.ru)
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: Kirill Andreev <andreev@telum.ru>
18
*/
19
20
#include "
jakes-propagation-loss-model.h
"
21
22
#include "ns3/double.h"
23
#include "ns3/log.h"
24
25
namespace
ns3
26
{
27
28
NS_LOG_COMPONENT_DEFINE
(
"Jakes"
);
29
30
NS_OBJECT_ENSURE_REGISTERED
(JakesPropagationLossModel);
31
32
JakesPropagationLossModel::JakesPropagationLossModel
()
33
{
34
m_uniformVariable
= CreateObject<UniformRandomVariable>();
35
m_uniformVariable
->
SetAttribute
(
"Min"
,
DoubleValue
(-1.0 * M_PI));
36
m_uniformVariable
->
SetAttribute
(
"Max"
,
DoubleValue
(M_PI));
37
}
38
39
JakesPropagationLossModel::~JakesPropagationLossModel
()
40
{
41
}
42
43
TypeId
44
JakesPropagationLossModel::GetTypeId
()
45
{
46
static
TypeId
tid =
TypeId
(
"ns3::JakesPropagationLossModel"
)
47
.
SetParent
<
PropagationLossModel
>()
48
.SetGroupName(
"Propagation"
)
49
.AddConstructor<
JakesPropagationLossModel
>();
50
return
tid;
51
}
52
53
void
54
JakesPropagationLossModel::DoDispose
()
55
{
56
m_uniformVariable
=
nullptr
;
57
m_propagationCache
.Cleanup();
58
}
59
60
double
61
JakesPropagationLossModel::DoCalcRxPower
(
double
txPowerDbm,
62
Ptr<MobilityModel>
a,
63
Ptr<MobilityModel>
b)
const
64
{
65
Ptr<JakesProcess>
pathData =
m_propagationCache
.GetPathData(
66
a,
67
b,
68
0 );
69
if
(!pathData)
70
{
71
pathData = CreateObject<JakesProcess>();
72
pathData->SetPropagationLossModel(
this
);
73
m_propagationCache
.AddPathData(
74
pathData,
75
a,
76
b,
77
0 );
78
}
79
return
txPowerDbm + pathData->GetChannelGainDb();
80
}
81
82
Ptr<UniformRandomVariable>
83
JakesPropagationLossModel::GetUniformRandomVariable
()
const
84
{
85
return
m_uniformVariable
;
86
}
87
88
int64_t
89
JakesPropagationLossModel::DoAssignStreams
(int64_t stream)
90
{
91
m_uniformVariable
->
SetStream
(stream);
92
return
1;
93
}
94
95
}
// namespace ns3
ns3::DoubleValue
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition:
double.h:42
ns3::JakesPropagationLossModel
a Jakes narrowband propagation model.
Definition:
jakes-propagation-loss-model.h:36
ns3::JakesPropagationLossModel::GetUniformRandomVariable
Ptr< UniformRandomVariable > GetUniformRandomVariable() const
Get the underlying RNG stream.
Definition:
jakes-propagation-loss-model.cc:83
ns3::JakesPropagationLossModel::JakesPropagationLossModel
JakesPropagationLossModel()
Definition:
jakes-propagation-loss-model.cc:32
ns3::JakesPropagationLossModel::DoAssignStreams
int64_t DoAssignStreams(int64_t stream) override
Assign a fixed random variable stream number to the random variables used by this model.
Definition:
jakes-propagation-loss-model.cc:89
ns3::JakesPropagationLossModel::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition:
jakes-propagation-loss-model.cc:44
ns3::JakesPropagationLossModel::m_propagationCache
PropagationCache< JakesProcess > m_propagationCache
Propagation cache.
Definition:
jakes-propagation-loss-model.h:69
ns3::JakesPropagationLossModel::~JakesPropagationLossModel
~JakesPropagationLossModel() override
Definition:
jakes-propagation-loss-model.cc:39
ns3::JakesPropagationLossModel::m_uniformVariable
Ptr< UniformRandomVariable > m_uniformVariable
random stream
Definition:
jakes-propagation-loss-model.h:68
ns3::JakesPropagationLossModel::DoCalcRxPower
double DoCalcRxPower(double txPowerDbm, Ptr< MobilityModel > a, Ptr< MobilityModel > b) const override
PropagationLossModel.
Definition:
jakes-propagation-loss-model.cc:61
ns3::JakesPropagationLossModel::DoDispose
void DoDispose() override
Destructor implementation.
Definition:
jakes-propagation-loss-model.cc:54
ns3::ObjectBase::SetAttribute
void SetAttribute(std::string name, const AttributeValue &value)
Set a single attribute, raising fatal errors if unsuccessful.
Definition:
object-base.cc:204
ns3::PropagationLossModel
Models the propagation loss through a transmission medium.
Definition:
propagation-loss-model.h:56
ns3::Ptr< MobilityModel >
ns3::RandomVariableStream::SetStream
void SetStream(int64_t stream)
Specifies the stream number for the RngStream.
Definition:
random-variable-stream.cc:113
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:931
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition:
log.h:202
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition:
object-base.h:46
jakes-propagation-loss-model.h
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
src
propagation
model
jakes-propagation-loss-model.cc
Generated on Sun Mar 3 2024 17:11:07 for ns-3 by
1.9.1