A Discrete-Event Network Simulator
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 
38 {
39 public:
44  static TypeId GetTypeId (void);
45  virtual ~PropagationDelayModel ();
64  int64_t AssignStreams (int64_t stream);
65 protected:
75  virtual int64_t DoAssignStreams (int64_t stream) = 0;
76 };
77 
84 {
85 public:
90  static TypeId GetTypeId (void);
91 
97  Time GetDelay (Ptr<MobilityModel> a, Ptr<MobilityModel> b) const override;
98 private:
99  int64_t DoAssignStreams (int64_t stream) override;
101 };
102 
109 {
110 public:
115  static TypeId GetTypeId (void);
116 
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 */
Time GetDelay(Ptr< MobilityModel > a, Ptr< MobilityModel > b) const override
static TypeId GetTypeId(void)
Get the type ID.
int64_t DoAssignStreams(int64_t stream) override
Assign a fixed random variable stream number to the random variables used by this model.
ConstantSpeedPropagationDelayModel()
Use the default parameters from PropagationDelayConstantSpeed.
A base class which provides memory management and object aggregation.
Definition: object.h:88
calculate a propagation delay.
virtual int64_t DoAssignStreams(int64_t stream)=0
Assign a fixed random variable stream number to the random variables used by this model.
int64_t AssignStreams(int64_t stream)
If this delay model uses objects of type RandomVariableStream, set the stream numbers to the integers...
static TypeId GetTypeId(void)
Get the type ID.
virtual Time GetDelay(Ptr< MobilityModel > a, Ptr< MobilityModel > b) const =0
the propagation delay is random
RandomPropagationDelayModel()
Use the default parameters from PropagationDelayRandomDistribution.
Ptr< RandomVariableStream > m_variable
random generator
int64_t DoAssignStreams(int64_t stream) override
Assign a fixed random variable stream number to the random variables used by this model.
static TypeId GetTypeId(void)
Get the type ID.
Time GetDelay(Ptr< MobilityModel > a, Ptr< MobilityModel > b) const override
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.