A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h
Go to the documentation of this file.
1
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2011, 2012 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: Marco Miozzo <marco.miozzo@cttc.es>
19
* Nicola Baldo <nbaldo@cttc.es>
20
*
21
*/
22
23
#ifndef ITU_R_1411_NLOS_OVER_ROOFTOP_PROPAGATION_LOSS_MODEL_H
24
#define ITU_R_1411_NLOS_OVER_ROOFTOP_PROPAGATION_LOSS_MODEL_H
25
26
#include <ns3/propagation-loss-model.h>
27
#include <ns3/propagation-environment.h>
28
29
namespace
ns3 {
30
42
class
ItuR1411NlosOverRooftopPropagationLossModel
:
public
PropagationLossModel
43
{
44
45
public
:
46
47
// inherited from Object
48
static
TypeId
GetTypeId
(
void
);
49
50
ItuR1411NlosOverRooftopPropagationLossModel
();
51
virtual
~ItuR1411NlosOverRooftopPropagationLossModel
();
52
58
void
SetFrequency
(
double
freq);
59
69
double
GetLoss
(
Ptr<MobilityModel>
a,
Ptr<MobilityModel>
b)
const
;
70
71
private
:
72
73
// inherited from PropagationLossModel
74
virtual
double
DoCalcRxPower
(
double
txPowerDbm,
75
Ptr<MobilityModel>
a,
76
Ptr<MobilityModel>
b)
const
;
77
virtual
int64_t
DoAssignStreams
(int64_t stream);
78
79
double
m_frequency
;
80
double
m_lambda
;
81
EnvironmentType
m_environment
;
82
CitySize
m_citySize
;
83
double
m_rooftopHeight
;
84
double
m_streetsOrientation
;
85
double
m_streetsWidth
;
86
double
m_buildingsExtend
;
87
double
m_buildingSeparation
;
88
89
};
90
91
}
// namespace ns3
92
93
94
#endif // ITU_R_1411_NLOS_OVER_ROOFTOP_PROPAGATION_LOSS_MODEL_H
95
ns3::Ptr< MobilityModel >
ns3::ItuR1411NlosOverRooftopPropagationLossModel::GetLoss
double GetLoss(Ptr< MobilityModel > a, Ptr< MobilityModel > b) const
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.cc:111
ns3::ItuR1411NlosOverRooftopPropagationLossModel
the ITU-R 1411 NLOS over rooftop propagation model
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h:42
ns3::EnvironmentType
EnvironmentType
The type of propagation environment.
Definition:
propagation-environment.h:36
ns3::ItuR1411NlosOverRooftopPropagationLossModel::GetTypeId
static TypeId GetTypeId(void)
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.cc:38
ns3::ItuR1411NlosOverRooftopPropagationLossModel::m_frequency
double m_frequency
frequency in MHz
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h:79
ns3::ItuR1411NlosOverRooftopPropagationLossModel::m_rooftopHeight
double m_rooftopHeight
in meters
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h:83
ns3::ItuR1411NlosOverRooftopPropagationLossModel::m_streetsWidth
double m_streetsWidth
in meters
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h:85
ns3::ItuR1411NlosOverRooftopPropagationLossModel::m_environment
EnvironmentType m_environment
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h:81
ns3::ItuR1411NlosOverRooftopPropagationLossModel::m_citySize
CitySize m_citySize
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h:82
ns3::ItuR1411NlosOverRooftopPropagationLossModel::DoAssignStreams
virtual int64_t DoAssignStreams(int64_t stream)
Subclasses must implement this; those not using random variables can return zero. ...
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.cc:233
ns3::ItuR1411NlosOverRooftopPropagationLossModel::m_streetsOrientation
double m_streetsOrientation
in degrees [0,90]
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h:84
ns3::ItuR1411NlosOverRooftopPropagationLossModel::SetFrequency
void SetFrequency(double freq)
Set the operating frequency.
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.cc:217
ns3::ItuR1411NlosOverRooftopPropagationLossModel::m_buildingsExtend
double m_buildingsExtend
in meters
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h:86
ns3::ItuR1411NlosOverRooftopPropagationLossModel::m_buildingSeparation
double m_buildingSeparation
in meters
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h:87
ns3::ItuR1411NlosOverRooftopPropagationLossModel::ItuR1411NlosOverRooftopPropagationLossModel
ItuR1411NlosOverRooftopPropagationLossModel()
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.cc:101
ns3::ItuR1411NlosOverRooftopPropagationLossModel::DoCalcRxPower
virtual double DoCalcRxPower(double txPowerDbm, Ptr< MobilityModel > a, Ptr< MobilityModel > b) const
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.cc:225
ns3::CitySize
CitySize
The size of the city in which propagation takes place.
Definition:
propagation-environment.h:48
ns3::PropagationLossModel
Modelize the propagation loss through a transmission medium.
Definition:
propagation-loss-model.h:49
ns3::ItuR1411NlosOverRooftopPropagationLossModel::m_lambda
double m_lambda
wavelength
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h:80
ns3::ItuR1411NlosOverRooftopPropagationLossModel::~ItuR1411NlosOverRooftopPropagationLossModel
virtual ~ItuR1411NlosOverRooftopPropagationLossModel()
Definition:
itu-r-1411-nlos-over-rooftop-propagation-loss-model.cc:106
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:49
src
propagation
model
itu-r-1411-nlos-over-rooftop-propagation-loss-model.h
Generated on Wed Sep 17 2014 23:33:39 for ns-3 by
1.8.6