A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
cost231-propagation-loss-model.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2007,2008, 2009 INRIA, UDcast
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: Mohamed Amine Ismail <amine.ismail@sophia.inria.fr>
18
* <amine.ismail@udcast.com>
19
*/
20
21
#ifndef COST231_PROPAGATION_LOSS_MODEL_H
22
#define COST231_PROPAGATION_LOSS_MODEL_H
23
24
#include "
propagation-loss-model.h
"
25
26
#include "ns3/nstime.h"
27
28
namespace
ns3
29
{
30
51
class
Cost231PropagationLossModel
:
public
PropagationLossModel
52
{
53
public
:
58
static
TypeId
GetTypeId
();
59
Cost231PropagationLossModel
();
60
61
// Delete copy constructor and assignment operator to avoid misuse
62
Cost231PropagationLossModel
(
const
Cost231PropagationLossModel
&) =
delete
;
63
Cost231PropagationLossModel
&
operator=
(
const
Cost231PropagationLossModel
&) =
delete
;
64
71
double
GetLoss
(
Ptr<MobilityModel>
a,
Ptr<MobilityModel>
b)
const
;
72
77
void
SetBSAntennaHeight
(
double
height);
82
void
SetSSAntennaHeight
(
double
height);
83
88
void
SetLambda
(
double
lambda);
94
void
SetLambda
(
double
frequency,
double
speed);
99
void
SetMinDistance
(
double
minDistance);
104
double
GetBSAntennaHeight
()
const
;
109
double
GetSSAntennaHeight
()
const
;
114
double
GetMinDistance
()
const
;
119
double
GetLambda
()
const
;
124
double
GetShadowing
()
const
;
129
void
SetShadowing
(
double
shadowing);
130
131
private
:
132
double
DoCalcRxPower
(
double
txPowerDbm,
133
Ptr<MobilityModel>
a,
134
Ptr<MobilityModel>
b)
const override
;
135
int64_t
DoAssignStreams
(int64_t stream)
override
;
136
137
double
m_BSAntennaHeight
;
138
double
m_SSAntennaHeight
;
139
double
m_lambda
;
140
double
m_minDistance
;
141
double
m_frequency
;
142
double
m_shadowing
;
143
};
144
145
}
// namespace ns3
146
147
#endif
/* COST231PROPAGATIONMODEL_H */
ns3::Cost231PropagationLossModel
The COST-Hata-Model is the most often cited of the COST 231 models.
Definition:
cost231-propagation-loss-model.h:52
ns3::Cost231PropagationLossModel::GetShadowing
double GetShadowing() const
Get the shadowing value.
Definition:
cost231-propagation-loss-model.cc:90
ns3::Cost231PropagationLossModel::SetShadowing
void SetShadowing(double shadowing)
Set the shadowing value.
Definition:
cost231-propagation-loss-model.cc:96
ns3::Cost231PropagationLossModel::m_SSAntennaHeight
double m_SSAntennaHeight
SS Antenna Height [m].
Definition:
cost231-propagation-loss-model.h:138
ns3::Cost231PropagationLossModel::GetLambda
double GetLambda() const
Get the wavelength.
Definition:
cost231-propagation-loss-model.cc:109
ns3::Cost231PropagationLossModel::m_lambda
double m_lambda
The wavelength.
Definition:
cost231-propagation-loss-model.h:139
ns3::Cost231PropagationLossModel::SetBSAntennaHeight
void SetBSAntennaHeight(double height)
Set the BS antenna height.
Definition:
cost231-propagation-loss-model.cc:127
ns3::Cost231PropagationLossModel::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition:
cost231-propagation-loss-model.cc:40
ns3::Cost231PropagationLossModel::DoAssignStreams
int64_t DoAssignStreams(int64_t stream) override
Assign a fixed random variable stream number to the random variables used by this model.
Definition:
cost231-propagation-loss-model.cc:187
ns3::Cost231PropagationLossModel::m_frequency
double m_frequency
frequency [Hz]
Definition:
cost231-propagation-loss-model.h:141
ns3::Cost231PropagationLossModel::operator=
Cost231PropagationLossModel & operator=(const Cost231PropagationLossModel &)=delete
ns3::Cost231PropagationLossModel::Cost231PropagationLossModel
Cost231PropagationLossModel(const Cost231PropagationLossModel &)=delete
ns3::Cost231PropagationLossModel::GetBSAntennaHeight
double GetBSAntennaHeight() const
Get the BS antenna height.
Definition:
cost231-propagation-loss-model.cc:133
ns3::Cost231PropagationLossModel::Cost231PropagationLossModel
Cost231PropagationLossModel()
Definition:
cost231-propagation-loss-model.cc:77
ns3::Cost231PropagationLossModel::GetSSAntennaHeight
double GetSSAntennaHeight() const
Get the SS antenna height.
Definition:
cost231-propagation-loss-model.cc:145
ns3::Cost231PropagationLossModel::GetMinDistance
double GetMinDistance() const
Get the minimum model distance.
Definition:
cost231-propagation-loss-model.cc:121
ns3::Cost231PropagationLossModel::SetSSAntennaHeight
void SetSSAntennaHeight(double height)
Set the SS antenna height.
Definition:
cost231-propagation-loss-model.cc:139
ns3::Cost231PropagationLossModel::SetLambda
void SetLambda(double lambda)
Set the wavelength.
Definition:
cost231-propagation-loss-model.cc:102
ns3::Cost231PropagationLossModel::m_minDistance
double m_minDistance
minimum distance [m]
Definition:
cost231-propagation-loss-model.h:140
ns3::Cost231PropagationLossModel::SetMinDistance
void SetMinDistance(double minDistance)
Set the minimum model distance.
Definition:
cost231-propagation-loss-model.cc:115
ns3::Cost231PropagationLossModel::m_BSAntennaHeight
double m_BSAntennaHeight
BS Antenna Height [m].
Definition:
cost231-propagation-loss-model.h:137
ns3::Cost231PropagationLossModel::GetLoss
double GetLoss(Ptr< MobilityModel > a, Ptr< MobilityModel > b) const
Get the propagation loss.
Definition:
cost231-propagation-loss-model.cc:151
ns3::Cost231PropagationLossModel::DoCalcRxPower
double DoCalcRxPower(double txPowerDbm, Ptr< MobilityModel > a, Ptr< MobilityModel > b) const override
PropagationLossModel.
Definition:
cost231-propagation-loss-model.cc:179
ns3::Cost231PropagationLossModel::m_shadowing
double m_shadowing
Shadowing loss [dB].
Definition:
cost231-propagation-loss-model.h:142
ns3::PropagationLossModel
Models the propagation loss through a transmission medium.
Definition:
propagation-loss-model.h:56
ns3::Ptr< MobilityModel >
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:59
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
propagation-loss-model.h
src
propagation
model
cost231-propagation-loss-model.h
Generated on Sun Mar 3 2024 17:11:07 for ns-3 by
1.9.1