A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
probabilistic-v2v-channel-condition-model.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 SIGNET Lab, Department of Information Engineering,
3 * University of Padova
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
19#ifndef PROBABILISTIC_V2V_CHANNEL_CONDITION_MODEL_H
20#define PROBABILISTIC_V2V_CHANNEL_CONDITION_MODEL_H
21
23
24namespace ns3
25{
26
27class MobilityModel;
28
29/**
30 * \ingroup propagation
31 *
32 * \brief Computes the channel condition for the V2V Urban scenario
33 *
34 * Computes the channel condition following the probabilistic model described in
35 * M. Boban, X.Gong, and W. Xu, “Modeling the evolution of line-of-sight
36 * blockage for V2V channels,” in IEEE 84th Vehicular Technology
37 * Conference (VTC-Fall), 2016.
38 */
40{
41 public:
42 /**
43 * Get the type ID.
44 * \brief Get the type ID.
45 * \return the object TypeId
46 */
47 static TypeId GetTypeId();
48
49 /**
50 * Constructor for the ProbabilisticV2vUrbanChannelConditionModel class
51 */
53
54 /**
55 * Destructor for the ProbabilisticV2vUrbanChannelConditionModel class
56 */
58
59 private:
60 /**
61 * Compute the LOS probability
62 *
63 * \param a tx mobility model
64 * \param b rx mobility model
65 * \return the LOS probability
66 */
68
69 /**
70 * Compute the NLOS probability
71 *
72 * \param a tx mobility model
73 * \param b rx mobility model
74 * \return the NLOS probability
75 */
77
79};
80
81/**
82 * \ingroup propagation
83 *
84 * \brief Computes the channel condition for the V2V Highway scenario
85 *
86 * Computes the channel condition following the probabilistic model described in
87 * M. Boban, X.Gong, and W. Xu, “Modeling the evolution of line-of-sight
88 * blockage for V2V channels,” in IEEE 84th Vehicular Technology
89 * Conference (VTC-Fall), 2016.
90 */
92{
93 public:
94 /**
95 * Get the type ID.
96 * \brief Get the type ID.
97 * \return the object TypeId
98 */
99 static TypeId GetTypeId();
100
101 /**
102 * Constructor for the ProbabilisticV2vHighwayChannelConditionModel class
103 */
105
106 /**
107 * Destructor for the ProbabilisticV2vHighwayChannelConditionModel class
108 */
110
111 private:
112 /**
113 * Compute the LOS probability
114 *
115 * \param a tx mobility model
116 * \param b rx mobility model
117 * \return the LOS probability
118 */
120
121 /**
122 * Compute the NLOS probability
123 *
124 * \param a tx mobility model
125 * \param b rx mobility model
126 * \return the NLOS probability
127 */
129
131};
132
133} // namespace ns3
134
135#endif /* PROBABILISTIC_V2V_CHANNEL_CONDITION_MODEL_H */
Computes the channel condition for the V2V Highway scenario.
double ComputePnlos(Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const override
Compute the NLOS probability.
~ProbabilisticV2vHighwayChannelConditionModel() override
Destructor for the ProbabilisticV2vHighwayChannelConditionModel class.
ProbabilisticV2vHighwayChannelConditionModel()
Constructor for the ProbabilisticV2vHighwayChannelConditionModel class.
double ComputePlos(Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const override
Compute the LOS probability.
Computes the channel condition for the V2V Urban scenario.
double ComputePnlos(Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const override
Compute the NLOS probability.
~ProbabilisticV2vUrbanChannelConditionModel() override
Destructor for the ProbabilisticV2vUrbanChannelConditionModel class.
ProbabilisticV2vUrbanChannelConditionModel()
Constructor for the ProbabilisticV2vUrbanChannelConditionModel class.
double ComputePlos(Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const override
Compute the LOS probability.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:77
Base class for the 3GPP channel condition models.
VehicleDensity
Determine the density of vehicles in a V2V scenario.
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.