A Discrete-Event Network Simulator
lorawan @ (+)
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
l
m
n
o
p
q
r
s
t
w
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
Related Symbols
:
a
b
c
d
e
g
h
i
j
l
m
n
o
p
q
r
s
t
u
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerations
Enumerator
e
l
v
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
▼
ns-3
►
ns-3 Documentation
►
All Environment Variables
Todo List
Deprecated List
Bug List
►
Topics
►
Namespaces
►
Classes
▼
Files
▼
File List
►
doc
►
examples
▼
src
▼
antenna
►
doc
▼
model
►
angles.cc
►
angles.h
antenna-model.cc
antenna-model.h
►
circular-aperture-antenna-model.cc
►
circular-aperture-antenna-model.h
cosine-antenna-model.cc
cosine-antenna-model.h
isotropic-antenna-model.cc
isotropic-antenna-model.h
parabolic-antenna-model.cc
parabolic-antenna-model.h
phased-array-model.cc
phased-array-model.h
three-gpp-antenna-model.cc
►
three-gpp-antenna-model.h
uniform-planar-array.cc
uniform-planar-array.h
►
test
►
aodv
►
applications
►
bridge
►
brite
►
buildings
►
click
►
config-store
►
core
►
csma
►
csma-layout
►
dsdv
►
dsr
►
energy
►
fd-net-device
►
flow-monitor
►
internet
►
internet-apps
►
lorawan
►
lr-wpan
►
lte
►
mesh
►
mobility
►
mpi
►
netanim
►
network
►
nix-vector-routing
►
olsr
►
openflow
►
point-to-point
►
point-to-point-layout
►
propagation
►
sixlowpan
►
spectrum
►
stats
►
tap-bridge
►
test
►
topology-read
►
traffic-control
►
uan
►
virtual-net-device
►
visualizer
►
wifi
►
wimax
►
utils
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
parabolic-antenna-model.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2012 CTTC
3
*
4
* SPDX-License-Identifier: GPL-2.0-only
5
*
6
* Author: Nicola Baldo <nbaldo@cttc.es>
7
*/
8
9
#ifndef PARABOLIC_ANTENNA_MODEL_H
10
#define PARABOLIC_ANTENNA_MODEL_H
11
12
#include "
antenna-model.h
"
13
14
#include <ns3/object.h>
15
16
namespace
ns3
17
{
18
19
/**
20
* \ingroup antenna
21
*
22
* \brief Antenna model based on a parabolic approximation of the main lobe radiation pattern.
23
*
24
* This class implements the parabolic model as described in some 3GPP document, e.g., R4-092042
25
*
26
* A similar model appears in:
27
*
28
* George Calcev and Matt Dillon, "Antenna Tilt Control in CDMA Networks"
29
* in Proc. of the 2nd Annual International Wireless Internet Conference (WICON), 2006
30
*
31
* though the latter addresses also the elevation plane, which the present model doesn't.
32
*
33
*
34
*/
35
class
ParabolicAntennaModel
:
public
AntennaModel
36
{
37
public
:
38
/**
39
* \brief Get the type ID.
40
* \return The object TypeId.
41
*/
42
static
TypeId
GetTypeId
();
43
44
// inherited from AntennaModel
45
double
GetGainDb
(
Angles
a)
override
;
46
47
// attribute getters/setters
48
/**
49
* Set the Beam width
50
* \param beamwidthDegrees Beam width in degrees
51
*/
52
void
SetBeamwidth
(
double
beamwidthDegrees);
53
/**
54
* Get the Beam width
55
* \return beam width in degrees
56
*/
57
double
GetBeamwidth
()
const
;
58
/**
59
* Set the antenna orientation
60
* \param orientationDegrees antenna orientation in degrees
61
*/
62
void
SetOrientation
(
double
orientationDegrees);
63
/**
64
* Get the antenna orientation
65
* \return antenna orientation in degrees
66
*/
67
double
GetOrientation
()
const
;
68
69
private
:
70
double
m_beamwidthRadians
;
//!< Beam width in radians
71
double
m_orientationRadians
;
//!< Antenna orientation in radians
72
double
m_maxAttenuation
;
//!< Max attenuation
73
};
35
class
ParabolicAntennaModel
:
public
AntennaModel
{
…
};
74
75
}
// namespace ns3
76
77
#endif
// PARABOLIC_ANTENNA_MODEL_H
antenna-model.h
ns3::Angles
Class holding the azimuth and inclination angles of spherical coordinates.
Definition
angles.h:107
ns3::AntennaModel
interface for antenna radiation pattern models
Definition
antenna-model.h:44
ns3::ParabolicAntennaModel
Antenna model based on a parabolic approximation of the main lobe radiation pattern.
Definition
parabolic-antenna-model.h:36
ns3::ParabolicAntennaModel::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition
parabolic-antenna-model.cc:26
ns3::ParabolicAntennaModel::SetBeamwidth
void SetBeamwidth(double beamwidthDegrees)
Set the Beam width.
Definition
parabolic-antenna-model.cc:55
ns3::ParabolicAntennaModel::GetGainDb
double GetGainDb(Angles a) override
this method is expected to be re-implemented by each antenna model
Definition
parabolic-antenna-model.cc:81
ns3::ParabolicAntennaModel::GetBeamwidth
double GetBeamwidth() const
Get the Beam width.
Definition
parabolic-antenna-model.cc:62
ns3::ParabolicAntennaModel::m_orientationRadians
double m_orientationRadians
Antenna orientation in radians.
Definition
parabolic-antenna-model.h:71
ns3::ParabolicAntennaModel::GetOrientation
double GetOrientation() const
Get the antenna orientation.
Definition
parabolic-antenna-model.cc:75
ns3::ParabolicAntennaModel::m_maxAttenuation
double m_maxAttenuation
Max attenuation.
Definition
parabolic-antenna-model.h:72
ns3::ParabolicAntennaModel::SetOrientation
void SetOrientation(double orientationDegrees)
Set the antenna orientation.
Definition
parabolic-antenna-model.cc:68
ns3::ParabolicAntennaModel::m_beamwidthRadians
double m_beamwidthRadians
Beam width in radians.
Definition
parabolic-antenna-model.h:70
ns3::TypeId
a unique identifier for an interface.
Definition
type-id.h:48
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
src
antenna
model
parabolic-antenna-model.h
Generated on Mon Jan 27 2025 16:35:45 for ns-3 by
1.11.0