A Discrete-Event Network Simulator
API
erp-ofdm-phy.h
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 #ifndef ERP_OFDM_PHY_H
24 #define ERP_OFDM_PHY_H
25 
26 #include "ofdm-phy.h"
27 
34 namespace ns3 {
35 
45 class ErpOfdmPhy : public OfdmPhy
46 {
47 public:
51  ErpOfdmPhy ();
55  virtual ~ErpOfdmPhy ();
56 
57  Ptr<WifiPpdu> BuildPpdu (const WifiConstPsduMap & psdus, const WifiTxVector& txVector, Time ppduDuration) override;
58  uint32_t GetMaxPsduSize (void) const override;
59 
63  static void InitializeModes (void);
71  static WifiMode GetErpOfdmRate (uint64_t rate);
72 
78  static WifiMode GetErpOfdmRate6Mbps (void);
84  static WifiMode GetErpOfdmRate9Mbps (void);
90  static WifiMode GetErpOfdmRate12Mbps (void);
96  static WifiMode GetErpOfdmRate18Mbps (void);
102  static WifiMode GetErpOfdmRate24Mbps (void);
108  static WifiMode GetErpOfdmRate36Mbps (void);
114  static WifiMode GetErpOfdmRate48Mbps (void);
120  static WifiMode GetErpOfdmRate54Mbps (void);
121 
130  static WifiCodeRate GetCodeRate (const std::string& name);
139  static uint16_t GetConstellationSize (const std::string& name);
152  static uint64_t GetPhyRate (const std::string& name, uint16_t channelWidth, uint16_t guardInterval, uint8_t nss);
163  static uint64_t GetPhyRateFromTxVector (const WifiTxVector& txVector, uint16_t staId);
174  static uint64_t GetDataRateFromTxVector (const WifiTxVector& txVector, uint16_t staId);
187  static uint64_t GetDataRate (const std::string& name, uint16_t channelWidth, uint16_t guardInterval, uint8_t nss);
197  static bool IsModeAllowed (uint16_t channelWidth, uint8_t nss);
198 
199 private:
200  WifiMode GetHeaderMode (const WifiTxVector& txVector) const override;
201  Time GetPreambleDuration (const WifiTxVector& txVector) const override;
202  Time GetHeaderDuration (const WifiTxVector& txVector) const override;
203 
213  static WifiMode CreateErpOfdmMode (std::string uniqueName, bool isMandatory);
214 
216 }; //class ErpOfdmPhy
217 
218 } //namespace ns3
219 
220 #endif /* ERP_OFDM_PHY_H */
Declaration of ns3::OfdmPhy class and ns3::OfdmPhyVariant enum.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
static uint64_t GetDataRateFromTxVector(const WifiTxVector &txVector, uint16_t staId)
Return the data rate corresponding to the supplied TXVECTOR.
static WifiMode GetErpOfdmRate36Mbps(void)
Return a WifiMode for ERP-OFDM at 36 Mbps.
Time GetPreambleDuration(const WifiTxVector &txVector) const override
Definition: erp-ofdm-phy.cc:94
uint32_t GetMaxPsduSize(void) const override
Get the maximum PSDU size in bytes.
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
Definition: wifi-mode.h:47
std::map< std::string, CodeRateConstellationSizePair > ModulationLookupTable
A modulation lookup table using unique name of modulation as key.
Definition: phy-entity.h:487
ErpOfdmPhy()
Constructor for ERP-OFDM PHY.
Definition: erp-ofdm-phy.cc:69
virtual ~ErpOfdmPhy()
Destructor for ERP-OFDM PHY.
Definition: erp-ofdm-phy.cc:81
static uint16_t GetConstellationSize(const std::string &name)
Return the constellation size from the ERP-OFDM mode&#39;s unique name using ModulationLookupTable.
static bool IsModeAllowed(uint16_t channelWidth, uint8_t nss)
Check whether the combination of <WifiMode, channel width, NSS> is allowed.
static WifiMode GetErpOfdmRate18Mbps(void)
Return a WifiMode for ERP-OFDM at 18 Mbps.
static WifiMode GetErpOfdmRate12Mbps(void)
Return a WifiMode for ERP-OFDM at 12 Mbps.
Ptr< WifiPpdu > BuildPpdu(const WifiConstPsduMap &psdus, const WifiTxVector &txVector, Time ppduDuration) override
Build amendment-specific PPDU.
static uint64_t GetPhyRate(const std::string &name, uint16_t channelWidth, uint16_t guardInterval, uint8_t nss)
Return the PHY rate from the ERP-OFDM mode&#39;s unique name and the supplied parameters.
PHY entity for ERP-OFDM (11g)ERP-OFDM PHY is based on OFDM PHY.
Definition: erp-ofdm-phy.h:45
uint16_t WifiCodeRate
These constants define the various convolutional coding rates used for the OFDM transmission modes in...
static WifiCodeRate GetCodeRate(const std::string &name)
Return the WifiCodeRate from the ERP-OFDM mode&#39;s unique name using ModulationLookupTable.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static WifiMode GetErpOfdmRate24Mbps(void)
Return a WifiMode for ERP-OFDM at 24 Mbps.
PHY entity for OFDM (11a)This class is also used for the 10 MHz and 5 MHz bandwidth variants addressi...
Definition: ofdm-phy.h:60
static uint64_t GetDataRate(const std::string &name, uint16_t channelWidth, uint16_t guardInterval, uint8_t nss)
Return the data rate from the ERP-OFDM mode&#39;s unique name and the supplied parameters.
static uint64_t GetPhyRateFromTxVector(const WifiTxVector &txVector, uint16_t staId)
Return the PHY rate corresponding to the supplied TXVECTOR.
static const ModulationLookupTable m_erpOfdmModulationLookupTable
lookup table to retrieve code rate and constellation size corresponding to a unique name of modulatio...
Definition: erp-ofdm-phy.h:215
Time GetHeaderDuration(const WifiTxVector &txVector) const override
static WifiMode GetErpOfdmRate54Mbps(void)
Return a WifiMode for ERP-OFDM at 54 Mbps.
static WifiMode CreateErpOfdmMode(std::string uniqueName, bool isMandatory)
Create an ERP-OFDM mode from a unique name, the unique name must already be contained inside Modulati...
static WifiMode GetErpOfdmRate9Mbps(void)
Return a WifiMode for ERP-OFDM at 9 Mbps.
WifiMode GetHeaderMode(const WifiTxVector &txVector) const override
Definition: erp-ofdm-phy.cc:87
std::unordered_map< uint16_t, Ptr< const WifiPsdu > > WifiConstPsduMap
Map of const PSDUs indexed by STA-ID.
static WifiMode GetErpOfdmRate6Mbps(void)
Return a WifiMode for ERP-OFDM at 6 Mbps.
static void InitializeModes(void)
Initialize all ERP-OFDM modes.
static WifiMode GetErpOfdmRate(uint64_t rate)
Return a WifiMode for ERP-OFDM corresponding to the provided rate.
static WifiMode GetErpOfdmRate48Mbps(void)
Return a WifiMode for ERP-OFDM at 48 Mbps.