A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
jakes-propagation-loss-model.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2012 Telum (www.telum.ru)
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: Kirill Andreev <andreev@telum.ru>
19  */
20 
22 #include "ns3/double.h"
23 #include "ns3/log.h"
24 
25 NS_LOG_COMPONENT_DEFINE ("Jakes");
26 
27 namespace ns3
28 {
29 NS_OBJECT_ENSURE_REGISTERED (JakesPropagationLossModel);
30 
31 
32 const double JakesPropagationLossModel::PI = 3.14159265358979323846;
33 
35 {
36  m_uniformVariable = CreateObject<UniformRandomVariable> ();
37  m_uniformVariable->SetAttribute ("Min", DoubleValue (-1.0 * PI));
39 }
40 
42 {}
43 
44 TypeId
46 {
47  static TypeId tid = TypeId ("ns3::JakesPropagationLossModel")
49  .AddConstructor<JakesPropagationLossModel> ()
50  ;
51  return tid;
52 }
53 
54 double
57  Ptr<MobilityModel> b) const
58 {
59  Ptr<JakesProcess> pathData = m_propagationCache.GetPathData (a, b, 0 );
60  if (pathData == 0)
61  {
62  pathData = CreateObject<JakesProcess> ();
63  pathData->SetPropagationLossModel (this);
64  m_propagationCache.AddPathData (pathData, a, b, 0);
65  }
66  return txPowerDbm + pathData->GetChannelGainDb ();
67 }
68 
71 {
72  return m_uniformVariable;
73 }
74 
75 int64_t
77 {
78  m_uniformVariable->SetStream (stream);
79  return 1;
80 }
81 
82 } // namespace ns3
83 
void SetStream(int64_t stream)
Specifies the stream number for this RNG stream.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register the class in the ns-3 factory.
Definition: object-base.h:38
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:170
double DoCalcRxPower(double txPowerDbm, Ptr< MobilityModel > a, Ptr< MobilityModel > b) const
PropagationCache< JakesProcess > m_propagationCache
Modelize the propagation loss through a transmission medium.
Ptr< UniformRandomVariable > GetUniformRandomVariable() const
virtual int64_t DoAssignStreams(int64_t stream)
Subclasses must implement this; those not using random variables can return zero. ...
Hold a floating point type.
Definition: double.h:41
void SetAttribute(std::string name, const AttributeValue &value)
Definition: object-base.cc:176
a unique identifier for an interface.
Definition: type-id.h:49
TypeId SetParent(TypeId tid)
Definition: type-id.cc:610
Ptr< UniformRandomVariable > m_uniformVariable