A Discrete-Event Network Simulator
API
dsss-phy.cc
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2020 Orange Labs
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 * Authors: Rediet <getachew.redieteab@orange.com>
19 * Sébastien Deronne <sebastien.deronne@gmail.com> (for logic ported from wifi-phy)
20 * Mathieu Lacage <mathieu.lacage@sophia.inria.fr> (for logic ported from wifi-phy)
21 */
22
23#include <array>
24#include "dsss-phy.h"
25#include "dsss-ppdu.h"
26#include "ns3/wifi-psdu.h"
27#include "ns3/wifi-phy.h" //only used for static mode constructor
28#include "ns3/wifi-utils.h"
29#include "ns3/simulator.h"
30#include "ns3/log.h"
31
32namespace ns3 {
33
34NS_LOG_COMPONENT_DEFINE ("DsssPhy");
35
36/*******************************************************
37 * HR/DSSS PHY (IEEE 802.11-2016, clause 16)
38 *******************************************************/
39
40/* *NS_CHECK_STYLE_OFF* */
45 { WIFI_PREAMBLE_SHORT, { WIFI_PPDU_FIELD_PREAMBLE, //Short PHY preamble
46 WIFI_PPDU_FIELD_NON_HT_HEADER, //Short PHY header
48};
49
51 // Unique name Code rate Constellation size
52 { "DsssRate1Mbps", { WIFI_CODE_RATE_UNDEFINED, 2 } },
53 { "DsssRate2Mbps", { WIFI_CODE_RATE_UNDEFINED, 4 } },
54 { "DsssRate5_5Mbps", { WIFI_CODE_RATE_UNDEFINED, 16 } },
55 { "DsssRate11Mbps", { WIFI_CODE_RATE_UNDEFINED, 256 } }
56};
57/* *NS_CHECK_STYLE_ON* */
58
60static const std::array<uint64_t, 4> s_dsssRatesBpsList = {1000000, 2000000, 5500000, 11000000};
61
67const std::array<uint64_t, 4>& GetDsssRatesBpsList (void)
68{
69 return s_dsssRatesBpsList;
70};
71
73{
74 NS_LOG_FUNCTION (this);
75 for (const auto & rate : GetDsssRatesBpsList ())
76 {
77 WifiMode mode = GetDsssRate (rate);
78 NS_LOG_LOGIC ("Add " << mode << " to list");
79 m_modeList.emplace_back (mode);
80 }
81}
82
84{
85 NS_LOG_FUNCTION (this);
86}
87
89DsssPhy::GetSigMode (WifiPpduField field, const WifiTxVector& txVector) const
90{
91 switch (field)
92 {
93 case WIFI_PPDU_FIELD_PREAMBLE: //consider header mode for preamble (useful for InterferenceHelper)
95 return GetHeaderMode (txVector);
96 default:
97 return PhyEntity::GetSigMode (field, txVector);
98 }
99}
100
103{
104 if (txVector.GetPreambleType () == WIFI_PREAMBLE_LONG
105 || txVector.GetMode () == GetDsssRate1Mbps ())
106 {
107 //Section 16.2.3 "PPDU field definitions" and Section 16.2.2.2 "Long PPDU format"; IEEE Std 802.11-2016
108 return GetDsssRate1Mbps ();
109 }
110 else
111 {
112 //Section 16.2.2.3 "Short PPDU format"; IEEE Std 802.11-2016
113 return GetDsssRate2Mbps ();
114 }
115}
116
119{
120 return m_dsssPpduFormats;
121}
122
123Time
124DsssPhy::GetDuration (WifiPpduField field, const WifiTxVector& txVector) const
125{
126 if (field == WIFI_PPDU_FIELD_PREAMBLE)
127 {
128 return GetPreambleDuration (txVector); //SYNC + SFD or shortSYNC + shortSFD
129 }
130 else if (field == WIFI_PPDU_FIELD_NON_HT_HEADER)
131 {
132 return GetHeaderDuration (txVector); //PHY header or short PHY header
133 }
134 else
135 {
136 return PhyEntity::GetDuration (field, txVector);
137 }
138}
139
140Time
142{
143 if (txVector.GetPreambleType () == WIFI_PREAMBLE_SHORT
144 && (txVector.GetMode ().GetDataRate (22) > 1000000))
145 {
146 //Section 16.2.2.3 "Short PPDU format" Figure 16-2 "Short PPDU format"; IEEE Std 802.11-2016
147 return MicroSeconds (72);
148 }
149 else
150 {
151 //Section 16.2.2.2 "Long PPDU format" Figure 16-1 "Long PPDU format"; IEEE Std 802.11-2016
152 return MicroSeconds (144);
153 }
154}
155
156Time
158{
159 if (txVector.GetPreambleType () == WIFI_PREAMBLE_SHORT
160 && (txVector.GetMode ().GetDataRate (22) > 1000000))
161 {
162 //Section 16.2.2.3 "Short PPDU format" and Figure 16-2 "Short PPDU format"; IEEE Std 802.11-2016
163 return MicroSeconds (24);
164 }
165 else
166 {
167 //Section 16.2.2.2 "Long PPDU format" and Figure 16-1 "Short PPDU format"; IEEE Std 802.11-2016
168 return MicroSeconds (48);
169 }
170}
171
172Time
173DsssPhy::GetPayloadDuration (uint32_t size, const WifiTxVector& txVector, WifiPhyBand /* band */, MpduType /* mpdutype */,
174 bool /* incFlag */, uint32_t & /* totalAmpduSize */, double & /* totalAmpduNumSymbols */,
175 uint16_t /* staId */) const
176{
177 return MicroSeconds (lrint (ceil ((size * 8.0) / (txVector.GetMode ().GetDataRate (22) / 1.0e6))));
178}
179
181DsssPhy::BuildPpdu (const WifiConstPsduMap & psdus, const WifiTxVector& txVector, Time ppduDuration)
182{
183 NS_LOG_FUNCTION (this << psdus << txVector << ppduDuration);
184 return Create<DsssPpdu> (psdus.begin ()->second, txVector, ppduDuration,
185 ObtainNextUid (txVector));
186}
187
190{
191 NS_LOG_FUNCTION (this << field << *event);
193 {
194 return EndReceiveHeader (event); //PHY header or short PHY header
195 }
196 return PhyEntity::DoEndReceiveField (field, event);
197}
198
201{
202 NS_LOG_FUNCTION (this << *event);
204 NS_LOG_DEBUG ("Long/Short PHY header: SNR(dB)=" << RatioToDb (snrPer.snr) << ", PER=" << snrPer.per);
205 PhyFieldRxStatus status (GetRandomValue () > snrPer.per);
206 if (status.isSuccess)
207 {
208 NS_LOG_DEBUG ("Received long/short PHY header");
209 if (!IsConfigSupported (event->GetPpdu ()))
210 {
211 status = PhyFieldRxStatus (false, UNSUPPORTED_SETTINGS, DROP);
212 }
213 }
214 else
215 {
216 NS_LOG_DEBUG ("Abort reception because long/short PHY header reception failed");
217 status.reason = L_SIG_FAILURE;
218 status.actionIfFailure = ABORT;
219 }
220 return status;
221}
222
223uint16_t
225{
226 if (m_wifiPhy->GetChannelWidth () > 20)
227 {
228 /*
229 * This is a workaround necessary with HE-capable PHYs,
230 * since their DSSS entity will reuse its RxSpectrumModel.
231 * Without this hack, SpectrumWifiPhy::GetBand will crash.
232 * FIXME: see issue #402 for a better solution.
233 */
234 return 20;
235 }
236 return PhyEntity::GetRxChannelWidth (txVector);
237}
238
241{
242 const WifiTxVector& txVector = ppdu->GetTxVector ();
243 uint16_t centerFrequency = GetCenterFrequencyForChannelWidth (txVector);
244 uint16_t channelWidth = txVector.GetChannelWidth ();
245 NS_LOG_FUNCTION (this << centerFrequency << channelWidth << txPowerW);
246 NS_ABORT_MSG_IF (channelWidth != 22, "Invalid channel width for DSSS");
248 return v;
249}
250
251void
253{
254 for (const auto & rate : GetDsssRatesBpsList ())
255 {
256 GetDsssRate (rate);
257 }
258}
259
261DsssPhy::GetDsssRate (uint64_t rate)
262{
263 switch (rate)
264 {
265 case 1000000:
266 return GetDsssRate1Mbps ();
267 case 2000000:
268 return GetDsssRate2Mbps ();
269 case 5500000:
270 return GetDsssRate5_5Mbps ();
271 case 11000000:
272 return GetDsssRate11Mbps ();
273 default:
274 NS_ABORT_MSG ("Inexistent rate (" << rate << " bps) requested for HR/DSSS");
275 return WifiMode ();
276 }
277}
278
279#define GET_DSSS_MODE(x, m) \
280WifiMode \
281DsssPhy::Get ## x (void) \
282{ \
283 static WifiMode mode = CreateDsssMode (#x, WIFI_MOD_CLASS_ ## m); \
284 return mode; \
285}; \
286
287// Clause 15 rates (DSSS)
288GET_DSSS_MODE (DsssRate1Mbps, DSSS)
289GET_DSSS_MODE (DsssRate2Mbps, DSSS)
290// Clause 16 rates (HR/DSSS)
291GET_DSSS_MODE (DsssRate5_5Mbps, HR_DSSS)
292GET_DSSS_MODE (DsssRate11Mbps, HR_DSSS)
293#undef GET_DSSS_MODE
294
295WifiMode
296DsssPhy::CreateDsssMode (std::string uniqueName,
297 WifiModulationClass modClass)
298{
299 // Check whether uniqueName is in lookup table
300 const auto it = m_dsssModulationLookupTable.find (uniqueName);
301 NS_ASSERT_MSG (it != m_dsssModulationLookupTable.end (), "DSSS or HR/DSSS mode cannot be created because it is not in the lookup table!");
302 NS_ASSERT_MSG (modClass == WIFI_MOD_CLASS_DSSS || modClass == WIFI_MOD_CLASS_HR_DSSS, "DSSS or HR/DSSS mode must be either WIFI_MOD_CLASS_DSSS or WIFI_MOD_CLASS_HR_DSSS!");
303
304 return WifiModeFactory::CreateWifiMode (uniqueName,
305 modClass,
306 true,
307 MakeBoundCallback (&GetCodeRate, uniqueName),
309 MakeCallback (&GetDataRateFromTxVector), //PhyRate is equivalent to DataRate
312}
313
315DsssPhy::GetCodeRate (const std::string& name)
316{
317 return m_dsssModulationLookupTable.at (name).first;
318}
319
320uint16_t
321DsssPhy::GetConstellationSize (const std::string& name)
322{
323 return m_dsssModulationLookupTable.at (name).second;
324}
325
326uint64_t
327DsssPhy::GetDataRateFromTxVector (const WifiTxVector& txVector, uint16_t /* staId */)
328{
329 WifiMode mode = txVector.GetMode ();
330 return DsssPhy::GetDataRate (mode.GetUniqueName (),
331 mode.GetModulationClass ());
332}
333
334uint64_t
335DsssPhy::GetDataRate (const std::string& name, WifiModulationClass modClass)
336{
337 uint16_t constellationSize = GetConstellationSize (name);
338 uint16_t divisor = 0;
339 if (modClass == WIFI_MOD_CLASS_DSSS)
340 {
341 divisor = 11;
342 }
343 else if (modClass == WIFI_MOD_CLASS_HR_DSSS)
344 {
345 divisor = 8;
346 }
347 else
348 {
349 NS_FATAL_ERROR ("Incorrect modulation class, must specify either WIFI_MOD_CLASS_DSSS or WIFI_MOD_CLASS_HR_DSSS!");
350 }
351 uint16_t numberOfBitsPerSubcarrier = static_cast<uint16_t> (log2 (constellationSize));
352 uint64_t dataRate = ((11000000 / divisor) * numberOfBitsPerSubcarrier);
353 return dataRate;
354}
355
356bool
357DsssPhy::IsAllowed (const WifiTxVector& /*txVector*/)
358{
359 return true;
360}
361
364{
365 return 4095;
366}
367
368} //namespace ns3
369
370namespace {
371
375static class ConstructorDsss
376{
377public:
379 {
381 ns3::Ptr<ns3::DsssPhy> phyEntity = ns3::Create<ns3::DsssPhy> ();
383 ns3::WifiPhy::AddStaticPhyEntity (ns3::WIFI_MOD_CLASS_DSSS, phyEntity); //use same entity when plain DSSS modes are used
384 }
386
387}
Constructor class for DSSS modes.
Definition: dsss-phy.cc:376
uint32_t GetMaxPsduSize(void) const override
Get the maximum PSDU size in bytes.
Definition: dsss-phy.cc:363
PhyFieldRxStatus DoEndReceiveField(WifiPpduField field, Ptr< Event > event) override
End receiving a given field, perform amendment-specific actions, and provide the status of the recept...
Definition: dsss-phy.cc:189
static uint16_t GetConstellationSize(const std::string &name)
Return the constellation size from the DSSS or HR/DSSS mode's unique name using ModulationLookupTable...
Definition: dsss-phy.cc:321
static const PpduFormats m_dsssPpduFormats
DSSS and HR/DSSS PPDU formats.
Definition: dsss-phy.h:196
PhyFieldRxStatus EndReceiveHeader(Ptr< Event > event)
End receiving the header, perform DSSS-specific actions, and provide the status of the reception.
Definition: dsss-phy.cc:200
static WifiMode CreateDsssMode(std::string uniqueName, WifiModulationClass modClass)
Create a DSSS or HR/DSSS mode from a unique name, the unique name must already be contained inside Mo...
Definition: dsss-phy.cc:296
static WifiMode GetDsssRate2Mbps(void)
Return a WifiMode for DSSS at 2 Mbps.
static WifiCodeRate GetCodeRate(const std::string &name)
Return the WifiCodeRate from the DSSS or HR/DSSS mode's unique name using ModulationLookupTable.
Definition: dsss-phy.cc:315
static WifiMode GetDsssRate5_5Mbps(void)
Return a WifiMode for HR/DSSS at 5.5 Mbps.
static const ModulationLookupTable m_dsssModulationLookupTable
lookup table to retrieve code rate and constellation size corresponding to a unique name of modulatio...
Definition: dsss-phy.h:198
static uint64_t GetDataRateFromTxVector(const WifiTxVector &txVector, uint16_t staId)
Return the data rate corresponding to the supplied TXVECTOR.
Definition: dsss-phy.cc:327
const PpduFormats & GetPpduFormats(void) const override
Return the PPDU formats of the PHY.
Definition: dsss-phy.cc:118
Ptr< SpectrumValue > GetTxPowerSpectralDensity(double txPowerW, Ptr< const WifiPpdu > ppdu) const override
Definition: dsss-phy.cc:240
static WifiMode GetDsssRate1Mbps(void)
Return a WifiMode for DSSS at 1 Mbps.
WifiMode GetSigMode(WifiPpduField field, const WifiTxVector &txVector) const override
Get the WifiMode for the SIG field specified by the PPDU field.
Definition: dsss-phy.cc:89
uint16_t GetRxChannelWidth(const WifiTxVector &txVector) const override
Return the channel width used in the reception spectrum model.
Definition: dsss-phy.cc:224
static uint64_t GetDataRate(const std::string &name, WifiModulationClass modClass)
Return the data rate from the DSSS or HR/DSSS mode's unique name and the supplied parameters.
Definition: dsss-phy.cc:335
virtual ~DsssPhy()
Destructor for HR/DSSS PHY.
Definition: dsss-phy.cc:83
static bool IsAllowed(const WifiTxVector &txVector)
Check whether the combination in TXVECTOR is allowed.
Definition: dsss-phy.cc:357
Time GetHeaderDuration(const WifiTxVector &txVector) const
Definition: dsss-phy.cc:157
Time GetPayloadDuration(uint32_t size, const WifiTxVector &txVector, WifiPhyBand band, MpduType mpdutype, bool incFlag, uint32_t &totalAmpduSize, double &totalAmpduNumSymbols, uint16_t staId) const override
Definition: dsss-phy.cc:173
DsssPhy()
Constructor for HR/DSSS PHY.
Definition: dsss-phy.cc:72
static WifiMode GetDsssRate(uint64_t rate)
Return a WifiMode for HR/DSSS corresponding to the provided rate.
Definition: dsss-phy.cc:261
static void InitializeModes(void)
Initialize all HR/DSSS modes.
Definition: dsss-phy.cc:252
Time GetPreambleDuration(const WifiTxVector &txVector) const
Definition: dsss-phy.cc:141
WifiMode GetHeaderMode(const WifiTxVector &txVector) const
Definition: dsss-phy.cc:102
static WifiMode GetDsssRate11Mbps(void)
Return a WifiMode for HR/DSSS at 11 Mbps.
Ptr< WifiPpdu > BuildPpdu(const WifiConstPsduMap &psdus, const WifiTxVector &txVector, Time ppduDuration) override
Build amendment-specific PPDU.
Definition: dsss-phy.cc:181
Time GetDuration(WifiPpduField field, const WifiTxVector &txVector) const override
Get the duration of the PPDU field (or group of fields) used by this entity for the given transmissio...
Definition: dsss-phy.cc:124
virtual Time GetDuration(WifiPpduField field, const WifiTxVector &txVector) const
Get the duration of the PPDU field (or group of fields) used by this entity for the given transmissio...
Definition: phy-entity.cc:176
virtual uint64_t ObtainNextUid(const WifiTxVector &txVector)
Obtain the next UID for the PPDU to transmit.
Definition: phy-entity.cc:1026
Ptr< WifiPhy > m_wifiPhy
Pointer to the owning WifiPhy.
Definition: phy-entity.h:791
std::map< std::string, CodeRateConstellationSizePair > ModulationLookupTable
A modulation lookup table using unique name of modulation as key.
Definition: phy-entity.h:487
double GetRandomValue(void) const
Obtain a random value from the WifiPhy's generator.
Definition: phy-entity.cc:996
std::map< WifiPreamble, std::vector< WifiPpduField > > PpduFormats
A map of PPDU field elements per preamble type.
Definition: phy-entity.h:477
virtual WifiMode GetSigMode(WifiPpduField field, const WifiTxVector &txVector) const
Get the WifiMode for the SIG field specified by the PPDU field.
Definition: phy-entity.cc:141
virtual uint16_t GetRxChannelWidth(const WifiTxVector &txVector) const
Return the channel width used in the reception spectrum model.
Definition: phy-entity.cc:1020
uint16_t GetGuardBandwidth(uint16_t currentChannelWidth) const
Definition: phy-entity.cc:1073
std::list< WifiMode > m_modeList
the list of supported modes
Definition: phy-entity.h:794
SnrPer GetPhyHeaderSnrPer(WifiPpduField field, Ptr< Event > event) const
Obtain the SNR and PER of the PPDU field from the WifiPhy's InterferenceHelper class.
Definition: phy-entity.cc:250
uint16_t GetCenterFrequencyForChannelWidth(const WifiTxVector &txVector) const
Get the center frequency of the channel corresponding the current TxVector rather than that of the su...
Definition: phy-entity.cc:1033
virtual bool IsConfigSupported(Ptr< const WifiPpdu > ppdu) const
Checks if the signaled configuration (excluding bandwidth) is supported by the PHY.
Definition: phy-entity.cc:901
@ DROP
drop PPDU and set CCA_BUSY
Definition: phy-entity.h:102
@ ABORT
abort reception of PPDU
Definition: phy-entity.h:103
virtual PhyFieldRxStatus DoEndReceiveField(WifiPpduField field, Ptr< Event > event)
End receiving a given field, perform amendment-specific actions, and provide the status of the recept...
Definition: phy-entity.cc:350
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:74
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
static WifiMode CreateWifiMode(std::string uniqueName, WifiModulationClass modClass, bool isMandatory, CodeRateCallback codeRateCallback, ConstellationSizeCallback constellationSizeCallback, PhyRateCallback phyRateCallback, DataRateCallback dataRateCallback, AllowedCallback isAllowedCallback)
Definition: wifi-mode.cc:260
represent a single transmission mode
Definition: wifi-mode.h:48
WifiModulationClass GetModulationClass() const
Definition: wifi-mode.cc:177
std::string GetUniqueName(void) const
Definition: wifi-mode.cc:140
uint64_t GetDataRate(uint16_t channelWidth, uint16_t guardInterval, uint8_t nss) const
Definition: wifi-mode.cc:114
static void AddStaticPhyEntity(WifiModulationClass modulation, Ptr< PhyEntity > phyEntity)
Add the PHY entity to the map of implemented PHY entities for the given modulation class.
Definition: wifi-phy.cc:635
uint16_t GetChannelWidth(void) const
Definition: wifi-phy.cc:901
static Ptr< SpectrumValue > CreateDsssTxPowerSpectralDensity(uint32_t centerFrequency, double txPowerW, uint16_t guardBandwidth)
Create a transmit power spectral density corresponding to DSSS.
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
WifiMode GetMode(uint16_t staId=SU_STA_ID) const
If this TX vector is associated with an SU PPDU, return the selected payload transmission mode.
WifiPreamble GetPreambleType(void) const
uint16_t GetChannelWidth(void) const
#define GET_DSSS_MODE(x, m)
Definition: dsss-phy.cc:279
Declaration of ns3::DsssPhy class.
Declaration of ns3::DsssPpdu class.
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Definition: assert.h:88
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Definition: fatal-error.h:165
#define NS_ABORT_MSG(msg)
Unconditional abnormal program termination with a message.
Definition: abort.h:50
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
Definition: abort.h:108
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Definition: log.h:273
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Definition: log.h:289
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Callback< R > MakeBoundCallback(R(*fnPtr)(TX), ARG a1)
Make Callbacks with one bound argument.
Definition: callback.h:1709
Time MicroSeconds(uint64_t value)
Construct a Time in the indicated unit.
Definition: nstime.h:1260
WifiPhyBand
Identifies the PHY band.
Definition: wifi-phy-band.h:33
WifiModulationClass
This enumeration defines the modulation classes per (Table 10-6 "Modulation classes"; IEEE 802....
WifiPpduField
The type of PPDU field (grouped for convenience)
MpduType
The type of an MPDU.
@ UNSUPPORTED_SETTINGS
@ L_SIG_FAILURE
@ WIFI_PREAMBLE_LONG
@ WIFI_PREAMBLE_SHORT
@ WIFI_MOD_CLASS_HR_DSSS
HR/DSSS (Clause 16)
@ WIFI_MOD_CLASS_DSSS
DSSS (Clause 15)
@ WIFI_PPDU_FIELD_NON_HT_HEADER
PHY header field for DSSS or ERP, short PHY header field for HR/DSSS or ERP, field not present for HT...
@ WIFI_PPDU_FIELD_PREAMBLE
SYNC + SFD fields for DSSS or ERP, shortSYNC + shortSFD fields for HR/DSSS or ERP,...
@ WIFI_PPDU_FIELD_DATA
data field
static class anonymous_namespace{dsss-phy.cc}::ConstructorDsss g_constructor_dsss
the constructor for DSSS modes
Every class exported by the ns3 library is enclosed in the ns3 namespace.
const uint16_t WIFI_CODE_RATE_UNDEFINED
undefined coding rate
double RatioToDb(double ratio)
Convert from ratio to dB.
Definition: wifi-utils.cc:49
std::unordered_map< uint16_t, Ptr< const WifiPsdu > > WifiConstPsduMap
Map of const PSDUs indexed by STA-ID.
static const std::array< uint64_t, 4 > s_dsssRatesBpsList
DSSS rates in bits per second.
Definition: dsss-phy.cc:60
uint16_t WifiCodeRate
These constants define the various convolutional coding rates used for the OFDM transmission modes in...
const std::array< uint64_t, 4 > & GetDsssRatesBpsList(void)
Get the array of possible DSSS rates.
Definition: dsss-phy.cc:67
Callback< R, Ts... > MakeCallback(R(T::*memPtr)(Ts...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
Definition: callback.h:1648
Status of the reception of the PPDU field.
Definition: phy-entity.h:111
WifiPhyRxfailureReason reason
failure reason
Definition: phy-entity.h:114
PhyRxFailureAction actionIfFailure
action to perform in case of failure
Definition: phy-entity.h:115
bool isSuccess
outcome (true if success) of the reception
Definition: phy-entity.h:113
A struct for both SNR and PER.
Definition: phy-entity.h:137
double snr
SNR in linear scale.
Definition: phy-entity.h:138