A Discrete-Event Network Simulator
API
vht-phy.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Orange Labs
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  * Authors: Rediet <getachew.redieteab@orange.com>
18  * Sébastien Deronne <sebastien.deronne@gmail.com> (for logic ported from wifi-phy)
19  */
20 
21 #ifndef VHT_PHY_H
22 #define VHT_PHY_H
23 
24 #include "ns3/ht-phy.h"
25 
32 namespace ns3
33 {
34 
38 #define VHT_PHY 126
39 
48 class VhtPhy : public HtPhy
49 {
50  public:
57  VhtPhy(bool buildModeList = true);
61  ~VhtPhy() override;
62 
63  WifiMode GetSigMode(WifiPpduField field, const WifiTxVector& txVector) const override;
64  const PpduFormats& GetPpduFormats() const override;
65  Time GetDuration(WifiPpduField field, const WifiTxVector& txVector) const override;
66  Time GetLSigDuration(WifiPreamble preamble) const override;
67  Time GetTrainingDuration(const WifiTxVector& txVector,
68  uint8_t nDataLtf,
69  uint8_t nExtensionLtf = 0) const override;
71  const WifiTxVector& txVector,
72  Time ppduDuration) override;
73  double GetCcaThreshold(const Ptr<const WifiPpdu> ppdu,
74  WifiChannelListType channelType) const override;
75 
79  virtual WifiMode GetSigAMode() const;
84  virtual WifiMode GetSigBMode(const WifiTxVector& txVector) const;
85 
90  virtual Time GetSigADuration(WifiPreamble preamble) const;
95  virtual Time GetSigBDuration(const WifiTxVector& txVector) const;
96 
100  static void InitializeModes();
108  static WifiMode GetVhtMcs(uint8_t index);
109 
170 
180  static WifiCodeRate GetCodeRate(uint8_t mcsValue);
190  static uint16_t GetConstellationSize(uint8_t mcsValue);
204  static uint64_t GetPhyRate(uint8_t mcsValue,
205  uint16_t channelWidth,
206  uint16_t guardInterval,
207  uint8_t nss);
218  static uint64_t GetPhyRateFromTxVector(const WifiTxVector& txVector, uint16_t staId);
229  static uint64_t GetDataRateFromTxVector(const WifiTxVector& txVector, uint16_t staId);
242  static uint64_t GetDataRate(uint8_t mcsValue,
243  uint16_t channelWidth,
244  uint16_t guardInterval,
245  uint8_t nss);
254  static uint64_t GetNonHtReferenceRate(uint8_t mcsValue);
264  static bool IsCombinationAllowed(uint8_t mcsValue, uint16_t channelWidth, uint8_t nss);
272  static bool IsAllowed(const WifiTxVector& txVector);
273 
274  protected:
275  WifiMode GetHtSigMode() const override;
276  Time GetHtSigDuration() const override;
277  uint8_t GetNumberBccEncoders(const WifiTxVector& txVector) const override;
279  bool IsAllConfigSupported(WifiPpduField field, Ptr<const WifiPpdu> ppdu) const override;
280  uint32_t GetMaxPsduSize() const override;
282 
295 
303 
314  virtual PhyFieldRxStatus ProcessSig(Ptr<Event> event,
315  PhyFieldRxStatus status,
316  WifiPpduField field);
317 
331  static uint64_t CalculateNonHtReferenceRate(WifiCodeRate codeRate, uint16_t constellationSize);
336  static uint16_t GetUsableSubcarriers(uint16_t channelWidth);
337 
338  private:
339  void BuildModeList() override;
340 
349  static WifiMode CreateVhtMcs(uint8_t index);
350 
354  typedef std::map<
355  std::tuple<uint16_t /* channelWidth in MHz */, uint8_t /* Nss */, uint8_t /* MCS index */>,
356  uint8_t /* Nes */>
361 }; // class VhtPhy
362 
363 } // namespace ns3
364 
365 #endif /* VHT_PHY_H */
PHY entity for HT (11n)
Definition: ht-phy.h:54
static uint16_t GetUsableSubcarriers()
Definition: ofdm-phy.cc:631
std::map< WifiPreamble, std::vector< WifiPpduField > > PpduFormats
A map of PPDU field elements per preamble type.
Definition: phy-entity.h:561
std::optional< std::pair< Time, WifiChannelListType > > CcaIndication
CCA end time and its corresponding channel list type (can be std::nullopt if IDLE)
Definition: phy-entity.h:969
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:77
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
PHY entity for VHT (11ac)
Definition: vht-phy.h:49
static bool IsAllowed(const WifiTxVector &txVector)
Check whether the combination in TXVECTOR is allowed.
Definition: vht-phy.cc:516
static WifiMode GetVhtMcs0()
Return MCS 0 from VHT MCS values.
static WifiCodeRate GetCodeRate(uint8_t mcsValue)
Return the coding rate corresponding to the supplied VHT MCS index.
Definition: vht-phy.cc:403
static bool IsCombinationAllowed(uint8_t mcsValue, uint16_t channelWidth, uint8_t nss)
Check whether the combination of <MCS, channel width, NSS> is allowed.
Definition: vht-phy.cc:524
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: vht-phy.cc:173
static const NesExceptionMap m_exceptionsMap
exception map for number of BCC encoders (extracted from VHT-MCS tables)
Definition: vht-phy.h:358
~VhtPhy() override
Destructor for VHT PHY.
Definition: vht-phy.cc:110
double GetCcaThreshold(const Ptr< const WifiPpdu > ppdu, WifiChannelListType channelType) const override
Return the CCA threshold in dBm for a given channel type.
Definition: vht-phy.cc:544
static const PpduFormats m_vhtPpduFormats
VHT PPDU formats.
Definition: vht-phy.h:360
std::map< std::tuple< uint16_t, uint8_t, uint8_t >, uint8_t > NesExceptionMap
Typedef for storing exceptions in the number of BCC encoders for VHT MCSs.
Definition: vht-phy.h:357
bool IsAllConfigSupported(WifiPpduField field, Ptr< const WifiPpdu > ppdu) const override
Checks if the signaled configuration (including bandwidth) is supported by the PHY.
Definition: vht-phy.cc:323
static WifiMode GetVhtMcs5()
Return MCS 5 from VHT MCS values.
static uint64_t GetDataRateFromTxVector(const WifiTxVector &txVector, uint16_t staId)
Return the data rate corresponding to the supplied TXVECTOR.
Definition: vht-phy.cc:447
PhyFieldRxStatus EndReceiveSig(Ptr< Event > event, WifiPpduField field)
End receiving the SIG-A or SIG-B, perform VHT-specific actions, and provide the status of the recepti...
Definition: vht-phy.cc:274
uint8_t GetNumberBccEncoders(const WifiTxVector &txVector) const override
Definition: vht-phy.cc:223
Time GetTrainingDuration(const WifiTxVector &txVector, uint8_t nDataLtf, uint8_t nExtensionLtf=0) const override
Definition: vht-phy.cc:199
virtual Time GetSigBDuration(const WifiTxVector &txVector) const
Definition: vht-phy.cc:215
static uint64_t GetPhyRateFromTxVector(const WifiTxVector &txVector, uint16_t staId)
Return the PHY rate corresponding to the supplied TXVECTOR.
Definition: vht-phy.cc:438
CcaIndication GetCcaIndication(const Ptr< const WifiPpdu > ppdu) override
Get CCA end time and its corresponding channel list type when a new signal has been received by the P...
Definition: vht-phy.cc:584
static WifiMode GetVhtMcs(uint8_t index)
Return the VHT MCS corresponding to the provided index.
Definition: vht-phy.cc:342
static uint64_t CalculateNonHtReferenceRate(WifiCodeRate codeRate, uint16_t constellationSize)
Return the rate (in bps) of the non-HT Reference Rate which corresponds to the supplied code rate and...
Definition: vht-phy.cc:493
static WifiMode GetVhtMcs3()
Return MCS 3 from VHT MCS values.
Ptr< WifiPpdu > BuildPpdu(const WifiConstPsduMap &psdus, const WifiTxVector &txVector, Time ppduDuration) override
Build amendment-specific PPDU.
Definition: vht-phy.cc:248
static uint64_t GetPhyRate(uint8_t mcsValue, uint16_t channelWidth, uint16_t guardInterval, uint8_t nss)
Return the PHY rate corresponding to the supplied VHT MCS index, channel width, guard interval,...
Definition: vht-phy.cc:430
static WifiMode GetVhtMcs1()
Return MCS 1 from VHT MCS values.
void BuildModeList() override
Build mode list.
Definition: vht-phy.cc:116
virtual WifiMode GetSigAMode() const
Definition: vht-phy.cc:159
static WifiMode GetVhtMcs4()
Return MCS 4 from VHT MCS values.
Time GetLSigDuration(WifiPreamble preamble) const override
Definition: vht-phy.cc:187
virtual PhyFieldRxStatus ProcessSig(Ptr< Event > event, PhyFieldRxStatus status, WifiPpduField field)
Process SIG-A or SIG-B, perform amendment-specific actions, and provide an updated status of the rece...
Definition: vht-phy.cc:314
static WifiMode GetVhtMcs2()
Return MCS 2 from VHT MCS values.
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: vht-phy.cc:259
static void InitializeModes()
Initialize all VHT modes.
Definition: vht-phy.cc:333
static uint64_t GetDataRate(uint8_t mcsValue, uint16_t channelWidth, uint16_t guardInterval, uint8_t nss)
Return the data rate corresponding to the supplied VHT MCS index, channel width, guard interval,...
Definition: vht-phy.cc:456
static WifiMode GetVhtMcs9()
Return MCS 9 from VHT MCS values.
static WifiMode CreateVhtMcs(uint8_t index)
Return the VHT MCS corresponding to the provided index.
Definition: vht-phy.cc:387
static uint16_t GetConstellationSize(uint8_t mcsValue)
Return the constellation size corresponding to the supplied VHT MCS index.
Definition: vht-phy.cc:417
static WifiMode GetVhtMcs6()
Return MCS 6 from VHT MCS values.
uint32_t GetMaxPsduSize() const override
Get the maximum PSDU size in bytes.
Definition: vht-phy.cc:538
static uint64_t GetNonHtReferenceRate(uint8_t mcsValue)
Calculate the rate in bps of the non-HT Reference Rate corresponding to the supplied VHT MCS index.
Definition: vht-phy.cc:485
virtual Time GetSigADuration(WifiPreamble preamble) const
Definition: vht-phy.cc:209
const PpduFormats & GetPpduFormats() const override
Return the PPDU formats of the PHY.
Definition: vht-phy.cc:129
static WifiMode GetVhtMcs8()
Return MCS 8 from VHT MCS values.
static WifiMode GetVhtMcs7()
Return MCS 7 from VHT MCS values.
WifiMode GetHtSigMode() const override
Definition: vht-phy.cc:151
VhtPhy(bool buildModeList=true)
Constructor for VHT PHY.
Definition: vht-phy.cc:97
virtual WifiMode GetSigBMode(const WifiTxVector &txVector) const
Definition: vht-phy.cc:165
virtual WifiPhyRxfailureReason GetFailureReason(WifiPpduField field) const
Get the failure reason corresponding to the unsuccessful processing of a given PPDU field.
Definition: vht-phy.cc:299
Time GetHtSigDuration() const override
Definition: vht-phy.cc:193
WifiMode GetSigMode(WifiPpduField field, const WifiTxVector &txVector) const override
Get the WifiMode for the SIG field specified by the PPDU field.
Definition: vht-phy.cc:135
represent a single transmission mode
Definition: wifi-mode.h:51
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
WifiPhyRxfailureReason
Enumeration of the possible reception failure reasons.
WifiPreamble
The type of preamble to be used by an IEEE 802.11 transmission.
WifiChannelListType
Enumeration of the possible channel-list parameter elements defined in Table 8-5 of IEEE 802....
WifiPpduField
The type of PPDU field (grouped for convenience)
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::unordered_map< uint16_t, Ptr< const WifiPsdu > > WifiConstPsduMap
Map of const PSDUs indexed by STA-ID.
WifiCodeRate
These constants define the various convolutional coding rates used for the OFDM transmission modes in...
Status of the reception of the PPDU field.
Definition: phy-entity.h:112