A Discrete-Event Network Simulator
API
cost231-propagation-loss-model.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007,2008, 2009 INRIA, UDcast
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation;
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16  *
17  * Author: Mohamed Amine Ismail <amine.ismail@sophia.inria.fr>
18  * <amine.ismail@udcast.com>
19  */
20 
21 #ifndef COST231_PROPAGATION_LOSS_MODEL_H
22 #define COST231_PROPAGATION_LOSS_MODEL_H
23 
24 #include "propagation-loss-model.h"
25 
26 #include "ns3/nstime.h"
27 
28 namespace ns3
29 {
30 
52 {
53  public:
58  static TypeId GetTypeId();
60 
61  // Delete copy constructor and assignment operator to avoid misuse
64 
72 
77  void SetBSAntennaHeight(double height);
82  void SetSSAntennaHeight(double height);
83 
88  void SetLambda(double lambda);
94  void SetLambda(double frequency, double speed);
99  void SetMinDistance(double minDistance);
104  double GetBSAntennaHeight() const;
109  double GetSSAntennaHeight() const;
114  double GetMinDistance() const;
119  double GetLambda() const;
124  double GetShadowing() const;
129  void SetShadowing(double shadowing);
130 
131  private:
132  double DoCalcRxPower(double txPowerDbm,
134  Ptr<MobilityModel> b) const override;
135  int64_t DoAssignStreams(int64_t stream) override;
136 
139  double m_lambda;
140  double m_minDistance;
141  double m_frequency;
142  double m_shadowing;
143 };
144 
145 } // namespace ns3
146 
147 #endif /* COST231PROPAGATIONMODEL_H */
The COST-Hata-Model is the most often cited of the COST 231 models.
double GetShadowing() const
Get the shadowing value.
void SetShadowing(double shadowing)
Set the shadowing value.
double m_SSAntennaHeight
SS Antenna Height [m].
double GetLambda() const
Get the wavelength.
void SetBSAntennaHeight(double height)
Set the BS antenna height.
static TypeId GetTypeId()
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.
Cost231PropagationLossModel & operator=(const Cost231PropagationLossModel &)=delete
Cost231PropagationLossModel(const Cost231PropagationLossModel &)=delete
double GetBSAntennaHeight() const
Get the BS antenna height.
double GetSSAntennaHeight() const
Get the SS antenna height.
double GetMinDistance() const
Get the minimum model distance.
void SetSSAntennaHeight(double height)
Set the SS antenna height.
void SetLambda(double lambda)
Set the wavelength.
void SetMinDistance(double minDistance)
Set the minimum model distance.
double m_BSAntennaHeight
BS Antenna Height [m].
double GetLoss(Ptr< MobilityModel > a, Ptr< MobilityModel > b) const
Get the propagation loss.
double DoCalcRxPower(double txPowerDbm, Ptr< MobilityModel > a, Ptr< MobilityModel > b) const override
PropagationLossModel.
Models the propagation loss through a transmission medium.
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.