A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
propagation-delay-model.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2005,2006,2007 INRIA
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: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19
*/
20
#ifndef PROPAGATION_DELAY_MODEL_H
21
#define PROPAGATION_DELAY_MODEL_H
22
23
#include "ns3/ptr.h"
24
#include "ns3/object.h"
25
#include "ns3/nstime.h"
26
#include "ns3/random-variable-stream.h"
27
28
namespace
ns3
{
29
30
class
MobilityModel;
31
37
class
PropagationDelayModel
:
public
Object
38
{
39
public
:
44
static
TypeId
GetTypeId
(
void
);
45
virtual
~PropagationDelayModel
();
54
virtual
Time
GetDelay
(
Ptr<MobilityModel>
a,
Ptr<MobilityModel>
b)
const
= 0;
64
int64_t
AssignStreams
(int64_t stream);
65
protected
:
75
virtual
int64_t
DoAssignStreams
(int64_t stream) = 0;
76
};
77
83
class
RandomPropagationDelayModel
:
public
PropagationDelayModel
84
{
85
public
:
90
static
TypeId
GetTypeId
(
void
);
91
95
RandomPropagationDelayModel
();
96
virtual
~RandomPropagationDelayModel
();
97
Time
GetDelay
(
Ptr<MobilityModel>
a,
Ptr<MobilityModel>
b)
const override
;
98
private
:
99
int64_t
DoAssignStreams
(int64_t stream)
override
;
100
Ptr<RandomVariableStream>
m_variable
;
101
};
102
108
class
ConstantSpeedPropagationDelayModel
:
public
PropagationDelayModel
109
{
110
public
:
115
static
TypeId
GetTypeId
(
void
);
116
120
ConstantSpeedPropagationDelayModel
();
121
Time
GetDelay
(
Ptr<MobilityModel>
a,
Ptr<MobilityModel>
b)
const override
;
125
void
SetSpeed
(
double
speed);
129
double
GetSpeed
(
void
)
const
;
130
private
:
131
int64_t
DoAssignStreams
(int64_t stream)
override
;
132
double
m_speed
;
133
};
134
135
}
// namespace ns3
136
137
#endif
/* PROPAGATION_DELAY_MODEL_H */
ns3::ConstantSpeedPropagationDelayModel
the propagation speed is constant
Definition:
propagation-delay-model.h:109
ns3::ConstantSpeedPropagationDelayModel::GetDelay
Time GetDelay(Ptr< MobilityModel > a, Ptr< MobilityModel > b) const override
Definition:
propagation-delay-model.cc:110
ns3::ConstantSpeedPropagationDelayModel::m_speed
double m_speed
speed
Definition:
propagation-delay-model.h:132
ns3::ConstantSpeedPropagationDelayModel::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
propagation-delay-model.cc:92
ns3::ConstantSpeedPropagationDelayModel::SetSpeed
void SetSpeed(double speed)
Definition:
propagation-delay-model.cc:117
ns3::ConstantSpeedPropagationDelayModel::DoAssignStreams
int64_t DoAssignStreams(int64_t stream) override
Assign a fixed random variable stream number to the random variables used by this model.
Definition:
propagation-delay-model.cc:128
ns3::ConstantSpeedPropagationDelayModel::ConstantSpeedPropagationDelayModel
ConstantSpeedPropagationDelayModel()
Use the default parameters from PropagationDelayConstantSpeed.
Definition:
propagation-delay-model.cc:106
ns3::ConstantSpeedPropagationDelayModel::GetSpeed
double GetSpeed(void) const
Definition:
propagation-delay-model.cc:122
ns3::Object
A base class which provides memory management and object aggregation.
Definition:
object.h:88
ns3::PropagationDelayModel
calculate a propagation delay.
Definition:
propagation-delay-model.h:38
ns3::PropagationDelayModel::DoAssignStreams
virtual int64_t DoAssignStreams(int64_t stream)=0
Assign a fixed random variable stream number to the random variables used by this model.
ns3::PropagationDelayModel::AssignStreams
int64_t AssignStreams(int64_t stream)
If this delay model uses objects of type RandomVariableStream, set the stream numbers to the integers...
Definition:
propagation-delay-model.cc:45
ns3::PropagationDelayModel::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
propagation-delay-model.cc:31
ns3::PropagationDelayModel::~PropagationDelayModel
virtual ~PropagationDelayModel()
Definition:
propagation-delay-model.cc:40
ns3::PropagationDelayModel::GetDelay
virtual Time GetDelay(Ptr< MobilityModel > a, Ptr< MobilityModel > b) const =0
ns3::Ptr< MobilityModel >
ns3::RandomPropagationDelayModel
the propagation delay is random
Definition:
propagation-delay-model.h:84
ns3::RandomPropagationDelayModel::RandomPropagationDelayModel
RandomPropagationDelayModel()
Use the default parameters from PropagationDelayRandomDistribution.
Definition:
propagation-delay-model.cc:70
ns3::RandomPropagationDelayModel::~RandomPropagationDelayModel
virtual ~RandomPropagationDelayModel()
Definition:
propagation-delay-model.cc:73
ns3::RandomPropagationDelayModel::m_variable
Ptr< RandomVariableStream > m_variable
random generator
Definition:
propagation-delay-model.h:100
ns3::RandomPropagationDelayModel::DoAssignStreams
int64_t DoAssignStreams(int64_t stream) override
Assign a fixed random variable stream number to the random variables used by this model.
Definition:
propagation-delay-model.cc:83
ns3::RandomPropagationDelayModel::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
propagation-delay-model.cc:55
ns3::RandomPropagationDelayModel::GetDelay
Time GetDelay(Ptr< MobilityModel > a, Ptr< MobilityModel > b) const override
Definition:
propagation-delay-model.cc:77
ns3::Time
Simulation virtual time values and global simulation resolution.
Definition:
nstime.h:103
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.
src
propagation
model
propagation-delay-model.h
Generated on Tue Feb 6 2024 19:21:26 for ns-3 by
1.9.1