A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
cost231-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) 2007,2008, 2009 INRIA, UDcast
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: Mohamed Amine Ismail <amine.ismail@sophia.inria.fr>
19  * <amine.ismail@udcast.com>
20  */
21 
22 #include "ns3/propagation-loss-model.h"
23 #include "ns3/log.h"
24 #include "ns3/mobility-model.h"
25 #include "ns3/double.h"
26 #include "ns3/pointer.h"
27 #include <cmath>
29 
30 namespace ns3 {
31 
32 NS_LOG_COMPONENT_DEFINE ("Cost231PropagationLossModel");
33 NS_OBJECT_ENSURE_REGISTERED (Cost231PropagationLossModel);
34 
35 TypeId
37 {
38  static TypeId tid = TypeId ("ns3::Cost231PropagationLossModel")
39 
41 
42  .AddConstructor<Cost231PropagationLossModel> ()
43 
44  .AddAttribute ("Lambda",
45  "The wavelength (default is 2.3 GHz at 300 000 km/s).",
46  DoubleValue (300000000.0 / 2.3e9),
47  MakeDoubleAccessor (&Cost231PropagationLossModel::m_lambda),
48  MakeDoubleChecker<double> ())
49 
50  .AddAttribute ("Frequency",
51  "The Frequency (default is 2.3 GHz).",
52  DoubleValue (2.3e9),
53  MakeDoubleAccessor (&Cost231PropagationLossModel::m_frequency),
54  MakeDoubleChecker<double> ())
55 
56  .AddAttribute ("BSAntennaHeight",
57  " BS Antenna Height (default is 50m).",
58  DoubleValue (50.0),
60  MakeDoubleChecker<double> ())
61 
62  .AddAttribute ("SSAntennaHeight",
63  " SS Antenna Height (default is 3m).",
64  DoubleValue (3),
66  MakeDoubleChecker<double> ())
67 
68  .AddAttribute ("MinDistance",
69  "The distance under which the propagation model refuses to give results (m) ",
70  DoubleValue (0.5),
72  MakeDoubleChecker<double> ());
73  return tid;
74 }
75 
77 {
78  C = 0;
79  m_shadowing = 10;
80 }
81 
82 void
83 Cost231PropagationLossModel::SetLambda (double frequency, double speed)
84 {
85  m_lambda = speed / frequency;
86  m_frequency = frequency;
87 }
88 
89 double
91 {
92  return m_shadowing;
93 }
94 void
96 {
97  m_shadowing = shadowing;
98 }
99 
100 void
102 {
103  m_lambda = lambda;
104  m_frequency = 300000000 / lambda;
105 }
106 
107 double
109 {
110  return m_lambda;
111 }
112 
113 void
115 {
116  m_minDistance = minDistance;
117 }
118 double
120 {
121  return m_minDistance;
122 }
123 
124 void
126 {
127  m_BSAntennaHeight = height;
128 }
129 
130 double
132 {
133  return m_BSAntennaHeight;
134 }
135 
136 void
138 {
139  m_SSAntennaHeight = height;
140 }
141 
142 double
144 {
145  return m_SSAntennaHeight;
146 }
147 
148 void
150 {
151  m_environment = env;
152 }
155 {
156  return m_environment;
157 }
158 
159 double
161 {
162 
163  double distance = a->GetDistanceFrom (b);
164  if (distance <= m_minDistance)
165  {
166  return 0.0;
167  }
168 
169  double frequency_MHz = m_frequency * 1e-6;
170 
171  double distance_km = distance * 1e-3;
172 
173  double C_H = 0.8 + ((1.11 * std::log10(frequency_MHz)) - 0.7) * m_SSAntennaHeight - (1.56 * std::log10(frequency_MHz));
174 
175  // from the COST231 wiki entry
176  // See also http://www.lx.it.pt/cost231/final_report.htm
177  // Ch. 4, eq. 4.4.3, pg. 135
178 
179  double loss_in_db = 46.3 + (33.9 * std::log10(frequency_MHz)) - (13.82 * std::log10 (m_BSAntennaHeight)) - C_H
180  + ((44.9 - 6.55 * std::log10 (m_BSAntennaHeight)) * std::log10 (distance_km)) + C + m_shadowing;
181 
182  NS_LOG_DEBUG ("dist =" << distance << ", Path Loss = " << loss_in_db);
183 
184  return (0 - loss_in_db);
185 
186 }
187 
188 double
190 {
191  return txPowerDbm + GetLoss (a, b);
192 }
193 
194 int64_t
196 {
197  return 0;
198 }
199 
200 }
double GetDistanceFrom(Ptr< const MobilityModel > position) const
#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
virtual double DoCalcRxPower(double txPowerDbm, Ptr< MobilityModel > a, Ptr< MobilityModel > b) const
virtual int64_t DoAssignStreams(int64_t stream)
Subclasses must implement this; those not using random variables can return zero. ...
Modelize the propagation loss through a transmission medium.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Definition: log.h:213
double GetLoss(Ptr< MobilityModel > a, Ptr< MobilityModel > b) const
Hold a floating point type.
Definition: double.h:41
a unique identifier for an interface.
Definition: type-id.h:49
TypeId SetParent(TypeId tid)
Definition: type-id.cc:610