A Discrete-Event Network Simulator
API
probabilistic-v2v-channel-condition-model.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2020 SIGNET Lab, Department of Information Engineering,
4  * University of Padova
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation;
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  */
19 
20 #ifndef PROBABILISTIC_V2V_CHANNEL_CONDITION_MODEL_H
21 #define PROBABILISTIC_V2V_CHANNEL_CONDITION_MODEL_H
22 
23 #include "ns3/channel-condition-model.h"
24 
25 namespace ns3 {
26 
27 class MobilityModel;
28 
40 {
41 public:
47  static TypeId GetTypeId (void);
48 
53 
58 
59 private:
67  virtual double ComputePlos (Ptr<const MobilityModel> a, Ptr<const MobilityModel> b) const override;
68 
76  virtual double ComputePnlos (Ptr<const MobilityModel> a, Ptr<const MobilityModel> b) const override;
77 
78  enum VehicleDensity m_densityUrban {VehicleDensity::INVALID};
79 };
80 
92 {
93 public:
99  static TypeId GetTypeId (void);
100 
105 
110 
111 private:
119  virtual double ComputePlos (Ptr<const MobilityModel> a, Ptr<const MobilityModel> b) const override;
120 
128  virtual double ComputePnlos (Ptr<const MobilityModel> a, Ptr<const MobilityModel> b) const override;
129 
130  enum VehicleDensity m_densityHighway {VehicleDensity::INVALID};
131 };
132 
133 } // end ns3 namespace
134 
135 #endif /* PROBABILISTIC_V2V_CHANNEL_CONDITION_MODEL_H */
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
VehicleDensity
Determine the density of vehicles in a V2V scenario.
virtual double ComputePlos(Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const override
Compute the LOS probability.
Base class for the 3GPP channel condition models.
virtual double ComputePlos(Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const override
Compute the LOS probability.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ProbabilisticV2vUrbanChannelConditionModel()
Constructor for the ProbabilisticV2vUrbanChannelConditionModel class.
virtual ~ProbabilisticV2vHighwayChannelConditionModel() override
Destructor for the ProbabilisticV2vHighwayChannelConditionModel class.
Computes the channel condition for the V2V Urban scenario.
virtual ~ProbabilisticV2vUrbanChannelConditionModel() override
Destructor for the ProbabilisticV2vUrbanChannelConditionModel class.
virtual double ComputePnlos(Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const override
Compute the NLOS probability.
a unique identifier for an interface.
Definition: type-id.h:58
Computes the channel condition for the V2V Highway scenario.
ProbabilisticV2vHighwayChannelConditionModel()
Constructor for the ProbabilisticV2vHighwayChannelConditionModel class.
virtual double ComputePnlos(Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const override
Compute the NLOS probability.