This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters which are to be used for a transmission. More...
#include "wifi-tx-vector.h"
Public Types | |
typedef std::map< uint16_t, HeMuUserInfo > | HeMuUserInfoMap |
map of HE MU specific user info paramters indexed by STA-ID More... | |
Public Member Functions | |
WifiTxVector () | |
WifiTxVector (const WifiTxVector &txVector) | |
Copy constructor. More... | |
WifiTxVector (WifiMode mode, uint8_t powerLevel, WifiPreamble preamble, uint16_t guardInterval, uint8_t nTx, uint8_t nss, uint8_t ness, uint16_t channelWidth, bool aggregation, bool stbc=false, bool ldpc=false, uint8_t bssColor=0, uint16_t length=0) | |
Create a TXVECTOR with the given parameters. More... | |
~WifiTxVector () | |
uint8_t | GetBssColor (void) const |
Get the BSS color. More... | |
uint16_t | GetChannelWidth (void) const |
uint16_t | GetGuardInterval (void) const |
HeMuUserInfo | GetHeMuUserInfo (uint16_t staId) const |
Get the HE MU user-specific transmission information for the given STA-ID. More... | |
HeMuUserInfoMap & | GetHeMuUserInfoMap (void) |
Get a reference to the map HE MU user-specific transmission information indexed by STA-ID. More... | |
const HeMuUserInfoMap & | GetHeMuUserInfoMap (void) const |
Get a const reference to the map HE MU user-specific transmission information indexed by STA-ID. More... | |
uint16_t | GetLength (void) const |
Get the LENGTH field of the L-SIG. More... | |
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. More... | |
bool | GetModeInitialized (void) const |
WifiModulationClass | GetModulationClass (void) const |
Get the modulation class specified by this TXVECTOR. More... | |
uint8_t | GetNess (void) const |
uint8_t | GetNss (uint16_t staId=SU_STA_ID) const |
If this TX vector is associated with an SU PPDU, return the number of spatial streams. More... | |
uint8_t | GetNssMax (void) const |
uint8_t | GetNTx (void) const |
std::pair< std::size_t, std::size_t > | GetNumRusPerHeSigBContentChannel (void) const |
Get the number of RUs per HE-SIG-B content channel. More... | |
WifiPreamble | GetPreambleType (void) const |
HeRu::RuSpec | GetRu (uint16_t staId) const |
Get the RU specification for the STA-ID. More... | |
uint8_t | GetTxPowerLevel (void) const |
bool | IsAggregation (void) const |
Checks whether the PSDU contains A-MPDU. More... | |
bool | IsDlMu (void) const |
Return true if this TX vector is used for a downlink multi-user transmission. More... | |
bool | IsLdpc (void) const |
Check if LDPC FEC coding is used or not. More... | |
bool | IsMu (void) const |
Return true if this TX vector is used for a multi-user transmission. More... | |
bool | IsStbc (void) const |
Check if STBC is used or not. More... | |
bool | IsUlMu (void) const |
Return true if this TX vector is used for an uplink multi-user transmission. More... | |
bool | IsValid (void) const |
The standard disallows certain combinations of WifiMode, number of spatial streams, and channel widths. More... | |
void | SetAggregation (bool aggregation) |
Sets if PSDU contains A-MPDU. More... | |
void | SetBssColor (uint8_t color) |
Set the BSS color. More... | |
void | SetChannelWidth (uint16_t channelWidth) |
Sets the selected channelWidth (in MHz) More... | |
void | SetGuardInterval (uint16_t guardInterval) |
Sets the guard interval duration (in nanoseconds) More... | |
void | SetHeMuUserInfo (uint16_t staId, HeMuUserInfo userInfo) |
Set the HE MU user-specific transmission information for the given STA-ID. More... | |
void | SetLdpc (bool ldpc) |
Sets if LDPC FEC coding is being used. More... | |
void | SetLength (uint16_t length) |
Set the LENGTH field of the L-SIG. More... | |
void | SetMode (WifiMode mode) |
Sets the selected payload transmission mode. More... | |
void | SetMode (WifiMode mode, uint16_t staId) |
Sets the selected payload transmission mode for a given STA ID (for MU only) More... | |
void | SetNess (uint8_t ness) |
Sets the Ness number. More... | |
void | SetNss (uint8_t nss) |
Sets the number of Nss. More... | |
void | SetNss (uint8_t nss, uint16_t staId) |
Sets the number of Nss for MU. More... | |
void | SetNTx (uint8_t nTx) |
Sets the number of TX antennas. More... | |
void | SetPreambleType (WifiPreamble preamble) |
Sets the preamble type. More... | |
void | SetRu (HeRu::RuSpec ru, uint16_t staId) |
Set the RU specification for the STA-ID. More... | |
void | SetStbc (bool stbc) |
Sets if STBC is being used. More... | |
void | SetTxPowerLevel (uint8_t powerlevel) |
Sets the selected transmission power level. More... | |
Private Attributes | |
bool | m_aggregation |
Flag whether the PSDU contains A-MPDU. More... | |
uint8_t | m_bssColor |
BSS color. More... | |
uint16_t | m_channelWidth |
channel width in MHz More... | |
uint16_t | m_guardInterval |
guard interval duration in nanoseconds More... | |
bool | m_ldpc |
LDPC FEC coding if true, BCC otherwise. More... | |
uint16_t | m_length |
LENGTH field of the L-SIG. More... | |
WifiMode | m_mode |
The DATARATE parameter in Table 15-4. More... | |
bool | m_modeInitialized |
Internal initialization flag. More... | |
HeMuUserInfoMap | m_muUserInfos |
HE MU specific per-user information indexed by station ID (STA-ID) corresponding to the 11 LSBs of the AID of the recipient STA This list shall be used only for HE MU. More... | |
uint8_t | m_ness |
number of spatial streams in beamforming More... | |
uint8_t | m_nss |
number of spatial streams More... | |
uint8_t | m_nTx |
number of TX antennas More... | |
WifiPreamble | m_preamble |
preamble More... | |
bool | m_stbc |
STBC used or not. More... | |
uint8_t | m_txPowerLevel |
The TXPWR_LEVEL parameter in Table 15-4. More... | |
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters which are to be used for a transmission.
See IEEE 802.11-2016 16.2.5 "Transmit PHY", and also 8.3.4.1 "PHY SAP peer-to-peer service primitive parameters".
If this class is constructed with the constructor that takes no arguments, then the client must explicitly set the mode and transmit power level parameters before using them. Default member initializers are provided for the other parameters, to conform to a non-MIMO/long guard configuration, although these may also be explicitly set after object construction.
When used in a infrastructure context, WifiTxVector values should be drawn from WifiRemoteStationManager parameters since rate adaptation is responsible for picking the mode, number of streams, etc., but in the case in which there is no such manager (e.g. mesh), the client still needs to initialize at least the mode and transmit power level appropriately.
Definition at line 85 of file wifi-tx-vector.h.
typedef std::map<uint16_t , HeMuUserInfo > ns3::WifiTxVector::HeMuUserInfoMap |
map of HE MU specific user info paramters indexed by STA-ID
Definition at line 89 of file wifi-tx-vector.h.
ns3::WifiTxVector::WifiTxVector | ( | ) |
Definition at line 28 of file wifi-tx-vector.cc.
ns3::WifiTxVector::~WifiTxVector | ( | ) |
Definition at line 100 of file wifi-tx-vector.cc.
References m_muUserInfos.
ns3::WifiTxVector::WifiTxVector | ( | WifiMode | mode, |
uint8_t | powerLevel, | ||
WifiPreamble | preamble, | ||
uint16_t | guardInterval, | ||
uint8_t | nTx, | ||
uint8_t | nss, | ||
uint8_t | ness, | ||
uint16_t | channelWidth, | ||
bool | aggregation, | ||
bool | stbc = false , |
||
bool | ldpc = false , |
||
uint8_t | bssColor = 0 , |
||
uint16_t | length = 0 |
||
) |
Create a TXVECTOR with the given parameters.
mode | WifiMode |
powerLevel | transmission power level |
preamble | preamble type |
guardInterval | the guard interval duration in nanoseconds |
nTx | the number of TX antennas |
nss | the number of spatial STBC streams (NSS) |
ness | the number of extension spatial streams (NESS) |
channelWidth | the channel width in MHz |
aggregation | enable or disable MPDU aggregation |
stbc | enable or disable STBC |
ldpc | enable or disable LDPC (BCC is used otherwise) |
bssColor | the BSS color |
length | the LENGTH field of the L-SIG |
Definition at line 44 of file wifi-tx-vector.cc.
ns3::WifiTxVector::WifiTxVector | ( | const WifiTxVector & | txVector | ) |
Copy constructor.
txVector | the TXVECTOR to copy |
Definition at line 74 of file wifi-tx-vector.cc.
References m_muUserInfos.
uint8_t ns3::WifiTxVector::GetBssColor | ( | void | ) | const |
Get the BSS color.
Definition at line 316 of file wifi-tx-vector.cc.
References m_bssColor.
Referenced by ns3::HePhy::DoGetEvent(), ns3::WifiPhyHelper::GetRadiotapHeader(), ns3::operator<<(), ns3::HePhy::ProcessSigA(), and ns3::HePpdu::SetPhyHeaders().
uint16_t ns3::WifiTxVector::GetChannelWidth | ( | void | ) | const |
Definition at line 154 of file wifi-tx-vector.cc.
References m_channelWidth.
Referenced by ns3::CtrlTriggerHeader::CtrlTriggerHeader(), ns3::HePpdu::HePpdu(), ns3::IdealWifiManager::AddSnrThreshold(), ns3::RrMultiUserScheduler::AssignRuIndices(), ns3::InterferenceHelper::CalculateChunkSuccessRate(), ns3::WifiPpdu::CanBeReceived(), ns3::YansErrorRateModel::DoGetChunkSuccessRate(), ns3::IdealWifiManager::DoGetDataTxVector(), WifiErrorRateModelsTestCaseMimo::DoRun(), ns3::WifiDefaultAckManager::GetAckInfoIfAggregatedMuBar(), ns3::WifiDefaultAckManager::GetAckInfoIfTfMuBar(), ns3::PhyEntity::GetCenterFrequencyForChannelWidth(), ns3::HePhy::GetCenterFrequencyForNonOfdmaPart(), ns3::HtPhy::GetDataRateFromTxVector(), ns3::ErpOfdmPhy::GetDataRateFromTxVector(), ns3::OfdmPhy::GetDataRateFromTxVector(), ns3::VhtPhy::GetDataRateFromTxVector(), ns3::HePhy::GetDataRateFromTxVector(), ns3::WaveFrameExchangeManager::GetDataTxVector(), ns3::OfdmPhy::GetHeaderDuration(), ns3::OfdmPhy::GetHeaderMode(), ns3::HePhy::GetNonOfdmaBand(), ns3::VhtPhy::GetNumberBccEncoders(), ns3::HtPhy::GetPhyRateFromTxVector(), ns3::ErpOfdmPhy::GetPhyRateFromTxVector(), ns3::OfdmPhy::GetPhyRateFromTxVector(), ns3::VhtPhy::GetPhyRateFromTxVector(), ns3::HePhy::GetPhyRateFromTxVector(), ns3::OfdmPhy::GetPreambleDuration(), ns3::WifiPhyHelper::GetRadiotapHeader(), ns3::HePhy::GetRuBandForRx(), ns3::HePhy::GetRuBandForTx(), ns3::PhyEntity::GetRxChannelWidth(), ns3::HePhy::GetSigBDuration(), ns3::WifiPpdu::GetTransmissionChannelWidth(), ns3::HePhy::GetTxPowerSpectralDensity(), ns3::HtPhy::GetTxPowerSpectralDensity(), ns3::DsssPhy::GetTxPowerSpectralDensity(), ns3::OfdmPhy::GetTxPowerSpectralDensity(), ns3::VhtPhy::IsAllowed(), ns3::operator<<(), ns3::HePhy::ProcessSigA(), ns3::WifiRemoteStationManager::ReportAmpduTxStatus(), ns3::WifiRemoteStationManager::ReportDataOk(), Bug2843TestCase::StoreDistinctTuple(), PowerRateAdaptationTest::TestAparf(), PowerRateAdaptationTest::TestParf(), and PowerRateAdaptationTest::TestRrpaa().
uint16_t ns3::WifiTxVector::GetGuardInterval | ( | void | ) | const |
Definition at line 160 of file wifi-tx-vector.cc.
References m_guardInterval.
Referenced by ns3::CtrlTriggerHeader::CtrlTriggerHeader(), ns3::HtPpdu::HtPpdu(), ns3::VhtPpdu::VhtPpdu(), ns3::IdealWifiManager::DoGetDataTxVector(), ns3::WifiDefaultAckManager::GetAckInfoIfAggregatedMuBar(), ns3::WifiDefaultAckManager::GetAckInfoIfTfMuBar(), ns3::HtPhy::GetDataRateFromTxVector(), ns3::VhtPhy::GetDataRateFromTxVector(), ns3::HePhy::GetDataRateFromTxVector(), ns3::HtPhy::GetNumberBccEncoders(), ns3::VhtPhy::GetNumberBccEncoders(), ns3::HtPhy::GetPhyRateFromTxVector(), ns3::VhtPhy::GetPhyRateFromTxVector(), ns3::HePhy::GetPhyRateFromTxVector(), ns3::WifiPhyHelper::GetRadiotapHeader(), ns3::HtPhy::GetSymbolDuration(), ns3::HePhy::GetSymbolDuration(), ns3::HePpdu::GetTxDuration(), ns3::VhtPpdu::GetTxDuration(), ns3::HePhy::GetValidPpduDuration(), ns3::operator<<(), ns3::PhyEntity::ScheduleEndOfMpdus(), ns3::HePpdu::SetPhyHeaders(), and PowerRateAdaptationTest::TestRrpaa().
HeMuUserInfo ns3::WifiTxVector::GetHeMuUserInfo | ( | uint16_t | staId | ) | const |
Get the HE MU user-specific transmission information for the given STA-ID.
This is applicable only for HE MU.
staId | the station ID |
Definition at line 404 of file wifi-tx-vector.cc.
References IsMu(), m_muUserInfos, and NS_ABORT_MSG_IF.
Referenced by ns3::WifiDefaultAckManager::GetAckInfoIfAggregatedMuBar(), ns3::WifiDefaultAckManager::GetAckInfoIfTfMuBar(), ns3::WifiPhyHelper::GetRadiotapHeader(), and ns3::HePhy::ProcessSigA().
WifiTxVector::HeMuUserInfoMap & ns3::WifiTxVector::GetHeMuUserInfoMap | ( | void | ) |
Get a reference to the map HE MU user-specific transmission information indexed by STA-ID.
This is applicable only for HE MU.
Definition at line 428 of file wifi-tx-vector.cc.
References IsMu(), m_muUserInfos, and NS_ABORT_MSG_IF.
const WifiTxVector::HeMuUserInfoMap & ns3::WifiTxVector::GetHeMuUserInfoMap | ( | void | ) | const |
Get a const reference to the map HE MU user-specific transmission information indexed by STA-ID.
This is applicable only for HE MU.
Definition at line 421 of file wifi-tx-vector.cc.
References IsMu(), m_muUserInfos, and NS_ABORT_MSG_IF.
Referenced by ns3::CtrlTriggerHeader::CtrlTriggerHeader(), ns3::HePpdu::HePpdu(), ns3::RrMultiUserScheduler::AssignRuIndices(), ns3::HePhy::CalculateTxDuration(), ns3::HeFrameExchangeManager::EndReceiveAmpdu(), ns3::HePhy::GetSigBMode(), ns3::HePhy::GetWifiConstPsduMap(), ns3::HePhy::IsConfigSupported(), ns3::operator<<(), ns3::HeFrameExchangeManager::PrepareMuBar(), ns3::HePhy::ProcessSigA(), ns3::HeFrameExchangeManager::ReceiveMpdu(), WifiPrimaryChannelsTest::ReceiveUl(), TestMultipleHeTbPreambles::Reset(), and TestMultipleHeTbPreambles::RxHeTbPpdu().
uint16_t ns3::WifiTxVector::GetLength | ( | void | ) | const |
Get the LENGTH field of the L-SIG.
Definition at line 328 of file wifi-tx-vector.cc.
References m_length.
Referenced by ns3::CtrlTriggerHeader::CtrlTriggerHeader(), ns3::HePhy::CalculateTxDuration(), ns3::operator<<(), and ns3::HePhy::ProcessSigA().
If this TX vector is associated with an SU PPDU, return the selected payload transmission mode.
If this TX vector is associated with an MU PPDU, return the transmission mode (MCS) selected for the transmission to the station identified by the given STA-ID.
staId | the station ID for MU |
Definition at line 112 of file wifi-tx-vector.cc.
References IsMu(), m_mode, m_modeInitialized, m_muUserInfos, NS_ABORT_MSG_IF, NS_ASSERT, and NS_FATAL_ERROR.
Referenced by ns3::DsssPpdu::DsssPpdu(), ns3::HtPpdu::HtPpdu(), ns3::OfdmPpdu::OfdmPpdu(), ns3::VhtPpdu::VhtPpdu(), ns3::IdealWifiManager::AddSnrThreshold(), ns3::InterferenceHelper::CalculatePayloadChunkSuccessRate(), ns3::ErrorRateModel::CalculateSnr(), TxDurationTest::CheckHeMuTxDuration(), IdealRateManagerMimoTest::CheckLastSelectedMode(), ns3::YansErrorRateModel::DoGetChunkSuccessRate(), ns3::MinstrelHtWifiManager::DoGetDataTxVector(), ns3::WifiRemoteStationManager::GetAckTxVector(), ns3::WifiRemoteStationManager::GetBlockAckTxVector(), ns3::HtPhy::GetDataRateFromTxVector(), ns3::DsssPhy::GetDataRateFromTxVector(), ns3::ErpOfdmPhy::GetDataRateFromTxVector(), ns3::OfdmPhy::GetDataRateFromTxVector(), ns3::VhtPhy::GetDataRateFromTxVector(), ns3::HePhy::GetDataRateFromTxVector(), ns3::WifiRemoteStationManager::GetDataTxVector(), ns3::WaveFrameExchangeManager::GetDataTxVector(), ns3::DsssPhy::GetHeaderDuration(), ns3::DsssPhy::GetHeaderMode(), ns3::ErpOfdmPhy::GetHeaderMode(), ns3::HtPhy::GetNumberBccEncoders(), ns3::VhtPhy::GetNumberBccEncoders(), ns3::HtPhy::GetPayloadDuration(), ns3::DsssPhy::GetPayloadDuration(), ns3::OfdmPhy::GetPayloadDuration(), ns3::HtPhy::GetPhyRateFromTxVector(), ns3::ErpOfdmPhy::GetPhyRateFromTxVector(), ns3::OfdmPhy::GetPhyRateFromTxVector(), ns3::VhtPhy::GetPhyRateFromTxVector(), ns3::HePhy::GetPhyRateFromTxVector(), ns3::DsssPhy::GetPreambleDuration(), ns3::WifiDefaultProtectionManager::GetPsduProtection(), ns3::WifiPhyHelper::GetRadiotapHeader(), ns3::FrameExchangeManager::GetRtsDurationId(), ns3::VhtPhy::IsAllowed(), ns3::HePhy::IsConfigSupported(), ns3::HtPhy::IsConfigSupported(), ns3::WifiRemoteStationManager::NeedCtsToSelf(), ns3::WifiRemoteStationManager::NeedRts(), ns3::operator<<(), ns3::FrameExchangeManager::ReceivedNormalAck(), ns3::FrameExchangeManager::ReceiveMpdu(), ns3::HeFrameExchangeManager::ReceiveMpdu(), ns3::HtFrameExchangeManager::ReceiveMpdu(), ns3::QosFrameExchangeManager::ReceiveMpdu(), ns3::WifiRemoteStationManager::ReportRxOk(), ns3::HePpdu::SetPhyHeaders(), Bug2843TestCase::StoreDistinctTuple(), ns3::WifiPhyStateHelper::SwitchFromRxEndOk(), ns3::WifiPhyStateHelper::SwitchToTx(), PowerRateAdaptationTest::TestAparf(), PowerRateAdaptationTest::TestParf(), PowerRateAdaptationTest::TestRrpaa(), ns3::RrMultiUserScheduler::TrySendingBasicTf(), ns3::RrMultiUserScheduler::TrySendingDlMuPpdu(), IdealRateManagerChannelWidthTest::TxCallback(), and Issue169TestCase::TxCallback().
bool ns3::WifiTxVector::GetModeInitialized | ( | void | ) | const |
Definition at line 106 of file wifi-tx-vector.cc.
References m_modeInitialized.
Referenced by IsValid().
WifiModulationClass ns3::WifiTxVector::GetModulationClass | ( | void | ) | const |
Get the modulation class specified by this TXVECTOR.
Definition at line 128 of file wifi-tx-vector.cc.
References ns3::WifiMode::GetModulationClass(), IsMu(), m_mode, m_modeInitialized, m_muUserInfos, NS_ABORT_MSG_IF, and NS_ASSERT.
Referenced by ns3::HePhy::BuildPpdu(), ns3::HeFrameExchangeManager::CalculateAcknowledgmentTime(), ns3::HePhy::CalculateNonOfdmaDurationForHeTb(), ns3::WifiPhy::CalculatePhyPreambleAndHeaderDuration(), ns3::WifiPhy::CalculateTxDuration(), ns3::HePhy::CalculateTxDuration(), ns3::HePhy::ConvertHeTbPpduDurationToLSigLength(), ns3::HePhy::ConvertLSigLengthToHeTbPpduDuration(), ns3::HePhy::DoStartReceivePayload(), ns3::HePhy::GetCenterFrequencyForNonOfdmaPart(), ns3::MpduAggregator::GetNextAmpdu(), ns3::MsduAggregator::GetNextAmsdu(), ns3::HePhy::GetNonOfdmaBand(), ns3::WifiPhy::GetPayloadDuration(), ns3::VhtFrameExchangeManager::GetPsduSize(), ns3::HePhy::GetSigBDuration(), ns3::HePhy::GetSigBMode(), ns3::HePhy::GetSigMode(), ns3::WifiTxParameters::GetSize(), ns3::WifiTxParameters::GetSizeIfAddMpdu(), ns3::WifiTxParameters::GetSizeIfAggregateMsdu(), ns3::HePhy::GetTrainingDuration(), ns3::WifiPhy::GetWifiConstPsduMap(), ns3::VhtFrameExchangeManager::GetWifiPsdu(), ns3::HePhy::IsConfigSupported(), ns3::HtFrameExchangeManager::IsWithinLimitsIfAddMpdu(), ns3::HtFrameExchangeManager::IsWithinLimitsIfAggregateMsdu(), ns3::QosFrameExchangeManager::IsWithinSizeAndTimeLimits(), ns3::HePhy::ObtainNextUid(), ns3::HePhy::ProcessSigA(), ns3::WifiPhy::Send(), and ns3::HePhy::StartReceivePreamble().
uint8_t ns3::WifiTxVector::GetNess | ( | void | ) | const |
Definition at line 202 of file wifi-tx-vector.cc.
References m_ness.
Referenced by ns3::HtPhy::GetDuration(), ns3::WifiPhyHelper::GetRadiotapHeader(), and ns3::operator<<().
uint8_t ns3::WifiTxVector::GetNss | ( | uint16_t | staId = SU_STA_ID | ) | const |
If this TX vector is associated with an SU PPDU, return the number of spatial streams.
If this TX vector is associated with an MU PPDU, return the number of spatial streams for the transmission to the station identified by the given STA-ID.
staId | the station ID for MU |
Definition at line 172 of file wifi-tx-vector.cc.
References IsMu(), m_muUserInfos, m_nss, NS_ABORT_MSG_IF, and NS_ASSERT.
Referenced by ns3::VhtPpdu::VhtPpdu(), ns3::InterferenceHelper::CalculatePayloadChunkSuccessRate(), TxDurationTest::CheckHeMuTxDuration(), IdealRateManagerMimoTest::CheckLastSelectedNss(), ns3::IdealWifiManager::DoGetDataTxVector(), WifiErrorRateModelsTestCaseMimo::DoRun(), ns3::PhyEntity::EndReceivePayload(), ns3::HtPhy::GetDataRateFromTxVector(), ns3::VhtPhy::GetDataRateFromTxVector(), ns3::HePhy::GetDataRateFromTxVector(), ns3::VhtPhy::GetNumberBccEncoders(), ns3::HtPhy::GetPhyRateFromTxVector(), ns3::VhtPhy::GetPhyRateFromTxVector(), ns3::HePhy::GetPhyRateFromTxVector(), ns3::WifiPhyHelper::GetRadiotapHeader(), ns3::VhtPhy::IsAllowed(), ns3::HtPhy::IsConfigSupported(), ns3::operator<<(), ns3::WifiRemoteStationManager::ReportAmpduTxStatus(), ns3::WifiRemoteStationManager::ReportDataOk(), ns3::HePpdu::SetPhyHeaders(), ns3::RrMultiUserScheduler::TrySendingBasicTf(), and ns3::RrMultiUserScheduler::TrySendingDlMuPpdu().
uint8_t ns3::WifiTxVector::GetNssMax | ( | void | ) | const |
Definition at line 184 of file wifi-tx-vector.cc.
References IsMu(), m_muUserInfos, and m_nss.
Referenced by ns3::HtPhy::GetDuration(), ns3::WifiPhy::GetTxPowerForTransmission(), ns3::HePhy::IsConfigSupported(), and ns3::WifiPhy::Send().
uint8_t ns3::WifiTxVector::GetNTx | ( | void | ) | const |
Definition at line 166 of file wifi-tx-vector.cc.
References m_nTx.
Referenced by ns3::operator<<().
std::pair< std::size_t, std::size_t > ns3::WifiTxVector::GetNumRusPerHeSigBContentChannel | ( | void | ) | const |
Get the number of RUs per HE-SIG-B content channel.
This is applicable only for MU. MU-MIMO (i.e. multiple stations per RU) is not supported yet. See section 27.3.10.8.3 of IEEE 802.11ax draft 4.0.
Definition at line 435 of file wifi-tx-vector.cc.
References ns3::HeRu::DoesOverlap(), ns3::HeRu::RuSpec::IsPhyIndexSet(), m_channelWidth, m_muUserInfos, NS_ABORT_MSG, and ns3::HeRu::RuSpec::SetPhyIndex().
Referenced by HeSigBDurationTest::DoRun(), and ns3::HePhy::GetSigBDuration().
WifiPreamble ns3::WifiTxVector::GetPreambleType | ( | void | ) | const |
Definition at line 148 of file wifi-tx-vector.cc.
References m_preamble.
Referenced by ns3::HigherLayerTxVectorTag::HigherLayerTxVectorTag(), TestMultiUserScheduler::ComputeWifiTxVector(), ns3::PhyEntity::EndReceiveField(), ns3::WaveFrameExchangeManager::GetDataTxVector(), ns3::HtPhy::GetDuration(), ns3::VhtPhy::GetDuration(), ns3::DsssPhy::GetHeaderDuration(), ns3::DsssPhy::GetHeaderMode(), ns3::PhyEntity::GetPhyHeaderSections(), ns3::DsssPhy::GetPreambleDuration(), ns3::WifiPhyHelper::GetRadiotapHeader(), ns3::VhtPhy::GetSigBDuration(), ns3::VhtPhy::GetSigBMode(), ns3::HePpdu::GetTransmissionChannelWidth(), ns3::QosFrameExchangeManager::IsWithinSizeAndTimeLimits(), ns3::operator<<(), ns3::HePhy::ProcessSigA(), TestUlOfdmaPowerControl::ReceiveOkCallbackAtAp(), ns3::WifiPhyStateHelper::SwitchFromRxEndOk(), ns3::WifiPhyStateHelper::SwitchToTx(), OfdmaAckSequenceTest::Transmit(), and ns3::RrMultiUserScheduler::TrySendingBasicTf().
HeRu::RuSpec ns3::WifiTxVector::GetRu | ( | uint16_t | staId | ) | const |
Get the RU specification for the STA-ID.
This is applicable only for MU.
staId | the station ID |
Definition at line 388 of file wifi-tx-vector.cc.
References IsMu(), m_muUserInfos, and NS_ABORT_MSG_IF.
Referenced by ns3::HePhy::GetCenterFrequencyForNonOfdmaPart(), ns3::HePhy::GetChannelWidthAndBand(), ns3::HePhy::GetDataRateFromTxVector(), ns3::HePhy::GetNonOfdmaBand(), ns3::HePhy::GetPhyRateFromTxVector(), ns3::HePhy::GetRuBandForRx(), ns3::HePhy::GetRuBandForTx(), ns3::HePpdu::GetTransmissionChannelWidth(), ns3::HePhy::GetTxPowerSpectralDensity(), and TestMultipleHeTbPreambles::RxHeTbPpdu().
uint8_t ns3::WifiTxVector::GetTxPowerLevel | ( | void | ) | const |
Definition at line 142 of file wifi-tx-vector.cc.
References m_txPowerLevel.
Referenced by ns3::WaveFrameExchangeManager::GetDataTxVector(), ns3::WifiPhy::GetTxPowerForTransmission(), ns3::operator<<(), ns3::WifiPhy::Send(), ns3::WifiPhyStateHelper::SwitchToTx(), PowerRateAdaptationTest::TestAparf(), PowerRateAdaptationTest::TestParf(), and PowerRateAdaptationTest::TestRrpaa().
bool ns3::WifiTxVector::IsAggregation | ( | void | ) | const |
Checks whether the PSDU contains A-MPDU.
Definition at line 208 of file wifi-tx-vector.cc.
References m_aggregation.
Referenced by ns3::HtPpdu::HtPpdu(), ns3::WifiPhyHelper::GetRadiotapHeader(), ns3::WifiPhy::NotifyMonitorSniffRx(), ns3::WifiPhy::NotifyMonitorSniffTx(), ns3::operator<<(), and TracePacketReception().
bool ns3::WifiTxVector::IsDlMu | ( | void | ) | const |
Return true if this TX vector is used for a downlink multi-user transmission.
Definition at line 376 of file wifi-tx-vector.cc.
References ns3::IsDlMu(), and m_preamble.
Referenced by ns3::HePhy::CalculateTxDuration(), ns3::WifiDefaultAckManager::GetAckInfoIfAggregatedMuBar(), ns3::WifiDefaultAckManager::GetAckInfoIfBarBaSequence(), ns3::WifiDefaultAckManager::GetAckInfoIfTfMuBar(), ns3::HePhy::GetSigBDuration(), ns3::HePhy::GetSigBMode(), ns3::HePhy::GetSigMode(), ns3::HeFrameExchangeManager::GetTxDuration(), ns3::HePhy::IsConfigSupported(), ns3::WifiDefaultAckManager::TryAddMpdu(), ns3::WifiDefaultProtectionManager::TryAddMpdu(), and ns3::WifiDefaultProtectionManager::TryAggregateMsdu().
bool ns3::WifiTxVector::IsLdpc | ( | void | ) | const |
Check if LDPC FEC coding is used or not.
Definition at line 220 of file wifi-tx-vector.cc.
References m_ldpc.
Referenced by ns3::TableBasedErrorRateModel::DoGetChunkSuccessRate(), and ns3::operator<<().
bool ns3::WifiTxVector::IsMu | ( | void | ) | const |
Return true if this TX vector is used for a multi-user transmission.
Definition at line 370 of file wifi-tx-vector.cc.
References ns3::IsMu(), and m_preamble.
Referenced by ns3::YansErrorRateModel::DoGetChunkSuccessRate(), ns3::HePhy::GetChannelWidthAndBand(), ns3::HePhy::GetDataRateFromTxVector(), GetHeMuUserInfo(), GetHeMuUserInfoMap(), GetMode(), GetModulationClass(), GetNss(), GetNssMax(), ns3::HePhy::GetPhyRateFromTxVector(), GetRu(), ns3::HePhy::GetRuBandForRx(), ns3::HePhy::GetRuBandForTx(), ns3::WifiRemoteStationManager::GetStaId(), ns3::HeFrameExchangeManager::GetTxDuration(), ns3::operator<<(), SetHeMuUserInfo(), SetMode(), SetNss(), SetRu(), and OfdmaAckSequenceTest::Transmit().
bool ns3::WifiTxVector::IsStbc | ( | void | ) | const |
Check if STBC is used or not.
Definition at line 214 of file wifi-tx-vector.cc.
References m_stbc.
Referenced by ns3::HtPhy::GetPayloadDuration(), ns3::WifiPhyHelper::GetRadiotapHeader(), and ns3::operator<<().
bool ns3::WifiTxVector::IsUlMu | ( | void | ) | const |
Return true if this TX vector is used for an uplink multi-user transmission.
Definition at line 382 of file wifi-tx-vector.cc.
References ns3::IsUlMu(), and m_preamble.
Referenced by ns3::HePhy::BuildPpdu(), ns3::HePhy::CalculateNonOfdmaDurationForHeTb(), ns3::HePhy::CalculateTxDuration(), ns3::HePhy::ConvertHeTbPpduDurationToLSigLength(), ns3::HePhy::ConvertLSigLengthToHeTbPpduDuration(), ns3::HePhy::DoStartReceivePayload(), ns3::HeFrameExchangeManager::EndReceiveAmpdu(), ns3::HePhy::GetCenterFrequencyForNonOfdmaPart(), ns3::HePhy::GetNonOfdmaBand(), ns3::HePhy::GetTrainingDuration(), ns3::HeFrameExchangeManager::GetTxDuration(), ns3::HePhy::GetWifiConstPsduMap(), ns3::HePhy::ObtainNextUid(), ns3::operator<<(), ns3::HePhy::ProcessSigA(), ns3::HeFrameExchangeManager::ReceiveMpdu(), WifiPrimaryChannelsTest::ReceiveUl(), ns3::HeFrameExchangeManager::SetTxopHolder(), ns3::HePhy::StartReceivePreamble(), ns3::WifiDefaultAckManager::TryAddMpdu(), ns3::WifiDefaultProtectionManager::TryAddMpdu(), and ns3::WifiDefaultProtectionManager::TryAggregateMsdu().
bool ns3::WifiTxVector::IsValid | ( | void | ) | const |
The standard disallows certain combinations of WifiMode, number of spatial streams, and channel widths.
This method can be used to check whether this WifiTxVector contains an invalid combination.
Definition at line 334 of file wifi-tx-vector.cc.
References GetModeInitialized(), ns3::WifiMode::GetUniqueName(), m_channelWidth, m_mode, and m_nss.
Referenced by ns3::IdealWifiManager::DoGetDataTxVector(), ns3::MinstrelHtWifiManager::IsValidMcs(), and ns3::operator<<().
void ns3::WifiTxVector::SetAggregation | ( | bool | aggregation | ) |
Sets if PSDU contains A-MPDU.
aggregation | whether the PSDU contains A-MPDU or not. |
Definition at line 292 of file wifi-tx-vector.cc.
References m_aggregation.
Referenced by ns3::HePpdu::DoGetTxVector(), ns3::HtPpdu::DoGetTxVector(), ns3::VhtPpdu::DoGetTxVector(), ns3::HtFrameExchangeManager::ForwardPsduDown(), and ns3::HeFrameExchangeManager::ForwardPsduMapDown().
void ns3::WifiTxVector::SetBssColor | ( | uint8_t | color | ) |
Set the BSS color.
color | the BSS color |
Definition at line 310 of file wifi-tx-vector.cc.
References m_bssColor.
Referenced by ns3::RrMultiUserScheduler::ComputeDlMuInfo(), ns3::HePpdu::DoGetTxVector(), ns3::WifiRemoteStationManager::GetDataTxVector(), ns3::HeFrameExchangeManager::GetHeTbTxVector(), and ns3::RrMultiUserScheduler::TrySendingDlMuPpdu().
void ns3::WifiTxVector::SetChannelWidth | ( | uint16_t | channelWidth | ) |
Sets the selected channelWidth (in MHz)
channelWidth | the channel width (in MHz) |
Definition at line 254 of file wifi-tx-vector.cc.
References m_channelWidth.
Referenced by ns3::IdealWifiManager::BuildSnrThresholds(), HeSigBDurationTest::BuildTxVector(), ns3::MinstrelHtWifiManager::CalculateMpduTxDuration(), TxDurationTest::CheckHeMuTxDuration(), TxDurationTest::CheckPayloadDuration(), TxDurationTest::CheckTxDuration(), ns3::RrMultiUserScheduler::ComputeDlMuInfo(), TestMultiUserScheduler::ComputeWifiTxVector(), ns3::IdealWifiManager::DoGetDataTxVector(), ns3::IdealWifiManager::DoGetRtsTxVector(), ns3::HePpdu::DoGetTxVector(), ns3::HtPpdu::DoGetTxVector(), ns3::DsssPpdu::DoGetTxVector(), ns3::ErpOfdmPpdu::DoGetTxVector(), ns3::OfdmPpdu::DoGetTxVector(), ns3::VhtPpdu::DoGetTxVector(), PhyHeaderSectionsTest::DoRun(), WifiErrorRateModelsTestCaseMimo::DoRun(), ns3::VsaManager::DoSendVsa(), ns3::WifiDefaultAckManager::GetAckInfoIfAggregatedMuBar(), ns3::WifiDefaultAckManager::GetAckInfoIfTfMuBar(), ns3::WifiRemoteStationManager::GetAckTxVector(), ns3::WifiRemoteStationManager::GetBlockAckTxVector(), ns3::WifiRemoteStationManager::GetCtsTxVector(), ns3::WifiMode::GetDataRate(), ns3::WifiRemoteStationManager::GetDataTxVector(), ns3::WaveFrameExchangeManager::GetDataTxVector(), ns3::CtrlTriggerHeader::GetHeTbTxVector(), ns3::WifiMode::GetPhyRate(), ns3::WifiRemoteStationManager::GetRtsTxVector(), ns3::HeFrameExchangeManager::GetTrigVector(), ns3::WifiMode::IsAllowed(), ns3::MinstrelHtWifiManager::IsValidMcs(), InterferenceExperiment::SendA(), InterferenceExperiment::SendB(), ns3::WaveNetDevice::SendX(), NodeStatistics::SetupPhy(), ns3::RrMultiUserScheduler::TrySendingBasicTf(), and ns3::RrMultiUserScheduler::TrySendingDlMuPpdu().
void ns3::WifiTxVector::SetGuardInterval | ( | uint16_t | guardInterval | ) |
Sets the guard interval duration (in nanoseconds)
guardInterval | the guard interval duration (in nanoseconds) |
Definition at line 260 of file wifi-tx-vector.cc.
References m_guardInterval.
Referenced by ns3::IdealWifiManager::BuildSnrThresholds(), HeSigBDurationTest::BuildTxVector(), ns3::MinstrelHtWifiManager::CalculateMpduTxDuration(), TxDurationTest::CheckHeMuTxDuration(), TxDurationTest::CheckPayloadDuration(), TxDurationTest::CheckTxDuration(), ns3::RrMultiUserScheduler::ComputeDlMuInfo(), TestMultiUserScheduler::ComputeWifiTxVector(), ns3::IdealWifiManager::DoGetDataTxVector(), ns3::HePpdu::DoGetTxVector(), ns3::HtPpdu::DoGetTxVector(), ns3::VhtPpdu::DoGetTxVector(), ns3::WifiDefaultAckManager::GetAckInfoIfAggregatedMuBar(), ns3::WifiDefaultAckManager::GetAckInfoIfTfMuBar(), ns3::WifiRemoteStationManager::GetAckTxVector(), ns3::WifiRemoteStationManager::GetBlockAckTxVector(), ns3::WifiRemoteStationManager::GetCtsTxVector(), ns3::WifiMode::GetDataRate(), ns3::WifiRemoteStationManager::GetDataTxVector(), ns3::CtrlTriggerHeader::GetHeTbTxVector(), ns3::WifiMode::GetPhyRate(), ns3::WifiRemoteStationManager::GetRtsTxVector(), ns3::HeFrameExchangeManager::GetTrigVector(), TestMultiUserScheduler::SelectTxFormat(), ns3::RrMultiUserScheduler::TrySendingBasicTf(), ns3::RrMultiUserScheduler::TrySendingBsrpTf(), and ns3::RrMultiUserScheduler::TrySendingDlMuPpdu().
void ns3::WifiTxVector::SetHeMuUserInfo | ( | uint16_t | staId, |
HeMuUserInfo | userInfo | ||
) |
Set the HE MU user-specific transmission information for the given STA-ID.
This is applicable only for HE MU.
staId | the station ID |
userInfo | the HE MU user-specific transmission information |
Definition at line 411 of file wifi-tx-vector.cc.
References ns3::WifiMode::GetModulationClass(), IsMu(), m_modeInitialized, m_muUserInfos, ns3::HeMuUserInfo::mcs, NS_ABORT_MSG_IF, and ns3::WIFI_MOD_CLASS_HE.
Referenced by HeSigBDurationTest::BuildTxVector(), TxDurationTest::CheckHeMuTxDuration(), ns3::RrMultiUserScheduler::ComputeDlMuInfo(), TestMultiUserScheduler::ComputeWifiTxVector(), ns3::HePpdu::DoGetTxVector(), PhyHeaderSectionsTest::DoRun(), WifiPrimaryChannelsTest::DoSendHeTbPpdu(), ns3::WifiDefaultAckManager::GetAckInfoIfAggregatedMuBar(), ns3::WifiDefaultAckManager::GetAckInfoIfTfMuBar(), ns3::CtrlTriggerHeader::GetHeTbTxVector(), ns3::HeFrameExchangeManager::GetTrigVector(), WifiPrimaryChannelsTest::SendDlMuPpdu(), ns3::HeFrameExchangeManager::SendPsduMap(), ns3::RrMultiUserScheduler::TrySendingBasicTf(), and ns3::RrMultiUserScheduler::TrySendingDlMuPpdu().
void ns3::WifiTxVector::SetLdpc | ( | bool | ldpc | ) |
Sets if LDPC FEC coding is being used.
ldpc | enable or disable LDPC |
Definition at line 304 of file wifi-tx-vector.cc.
References m_ldpc.
Referenced by ns3::WifiRemoteStationManager::GetDataTxVector().
void ns3::WifiTxVector::SetLength | ( | uint16_t | length | ) |
Set the LENGTH field of the L-SIG.
length | the LENGTH field of the L-SIG |
Definition at line 322 of file wifi-tx-vector.cc.
References m_length.
Referenced by ns3::HePpdu::DoGetTxVector(), WifiPrimaryChannelsTest::DoSendHeTbPpdu(), ns3::CtrlTriggerHeader::GetHeTbTxVector(), ns3::HeFrameExchangeManager::GetTrigVector(), TestMultipleHeTbPreambles::RxHeTbPpdu(), TestPhyPaddingExclusion::SendHeTbPpdu(), TestUlOfdmaPhyTransmission::SendHeTbPpdu(), ns3::HeFrameExchangeManager::SendPsduMap(), TestUlOfdmaPpduUid::SendTbPpdu(), TestPhyPaddingExclusion::SetTrigVector(), and TestUlOfdmaPhyTransmission::SetTrigVector().
void ns3::WifiTxVector::SetMode | ( | WifiMode | mode | ) |
Sets the selected payload transmission mode.
mode | the payload WifiMode |
Definition at line 226 of file wifi-tx-vector.cc.
References m_mode, and m_modeInitialized.
Referenced by ns3::IdealWifiManager::BuildSnrThresholds(), ns3::dot11s::AirtimeLinkMetricCalculator::CalculateMetric(), ns3::MinstrelHtWifiManager::CalculateMpduTxDuration(), TxDurationTest::CheckPayloadDuration(), TxDurationTest::CheckTxDuration(), ns3::IdealWifiManager::DoGetDataTxVector(), ns3::IdealWifiManager::DoGetRtsTxVector(), ns3::HePpdu::DoGetTxVector(), ns3::HtPpdu::DoGetTxVector(), ns3::DsssPpdu::DoGetTxVector(), ns3::ErpOfdmPpdu::DoGetTxVector(), ns3::OfdmPpdu::DoGetTxVector(), ns3::VhtPpdu::DoGetTxVector(), PhyHeaderSectionsTest::DoRun(), WifiErrorRateModelsTestCaseMimo::DoRun(), TableBasedErrorRateTestCase::DoRun(), ns3::VsaManager::DoSendVsa(), ns3::WifiRemoteStationManager::GetAckTxVector(), ns3::WifiRemoteStationManager::GetBlockAckTxVector(), ns3::WifiRemoteStationManager::GetCtsTxVector(), ns3::WifiMode::GetDataRate(), ns3::WifiRemoteStationManager::GetDataTxVector(), ns3::WaveFrameExchangeManager::GetDataTxVector(), ns3::WifiMode::GetPhyRate(), ns3::WifiRemoteStationManager::GetRtsTxVector(), TestUlOfdmaPhyTransmission::GetTxVectorForHeTbPpdu(), ns3::WifiMode::IsAllowed(), ns3::MinstrelHtWifiManager::IsValidMcs(), TestMultipleHeTbPreambles::RxHeTbPpdu(), ns3::WaveNetDevice::Send(), PsrExperiment::Send(), CollisionExperiment::SendA(), InterferenceExperiment::SendA(), CollisionExperiment::SendB(), InterferenceExperiment::SendB(), TestPhyPaddingExclusion::SendHeTbPpdu(), TestDlOfdmaPhyTransmission::SendMuPpdu(), TestUlOfdmaPpduUid::SendMuPpdu(), TestUlOfdmaPpduUid::SendTbPpdu(), ns3::WaveNetDevice::SendX(), TestPhyPaddingExclusion::SetTrigVector(), TestUlOfdmaPhyTransmission::SetTrigVector(), ns3::MinstrelWifiManager::SetupPhy(), ns3::RraaWifiManager::SetupPhy(), ns3::RrpaaWifiManager::SetupPhy(), and NodeStatistics::SetupPhy().
void ns3::WifiTxVector::SetMode | ( | WifiMode | mode, |
uint16_t | staId | ||
) |
Sets the selected payload transmission mode for a given STA ID (for MU only)
mode | |
staId | the station ID for MU |
Definition at line 233 of file wifi-tx-vector.cc.
References IsMu(), m_modeInitialized, m_muUserInfos, and NS_ABORT_MSG_IF.
void ns3::WifiTxVector::SetNess | ( | uint8_t | ness | ) |
Sets the Ness number.
ness | the number of extended spatial streams |
Definition at line 286 of file wifi-tx-vector.cc.
References m_ness.
Referenced by HeSigBDurationTest::BuildTxVector(), ns3::MinstrelHtWifiManager::CalculateMpduTxDuration(), TxDurationTest::CheckHeMuTxDuration(), TxDurationTest::CheckPayloadDuration(), TxDurationTest::CheckTxDuration(), PhyHeaderSectionsTest::DoRun(), ns3::WifiRemoteStationManager::GetDataTxVector(), and ns3::WifiRemoteStationManager::GetRtsTxVector().
void ns3::WifiTxVector::SetNss | ( | uint8_t | nss | ) |
Sets the number of Nss.
nss | the number of spatial streams |
Definition at line 272 of file wifi-tx-vector.cc.
References m_nss.
Referenced by ns3::IdealWifiManager::BuildSnrThresholds(), ns3::MinstrelHtWifiManager::CalculateMpduTxDuration(), TxDurationTest::CheckPayloadDuration(), TxDurationTest::CheckTxDuration(), ns3::IdealWifiManager::DoGetDataTxVector(), ns3::IdealWifiManager::DoGetRtsTxVector(), ns3::HePpdu::DoGetTxVector(), ns3::HtPpdu::DoGetTxVector(), ns3::VhtPpdu::DoGetTxVector(), PhyHeaderSectionsTest::DoRun(), WifiErrorRateModelsTestCaseMimo::DoRun(), ns3::WifiRemoteStationManager::GetAckTxVector(), ns3::WifiRemoteStationManager::GetBlockAckTxVector(), ns3::WifiRemoteStationManager::GetCtsTxVector(), ns3::WifiMode::GetDataRate(), ns3::WifiRemoteStationManager::GetDataTxVector(), ns3::WifiMode::GetPhyRate(), ns3::WifiRemoteStationManager::GetRtsTxVector(), TestUlOfdmaPhyTransmission::GetTxVectorForHeTbPpdu(), ns3::WifiMode::IsAllowed(), ns3::MinstrelHtWifiManager::IsValidMcs(), TestMultipleHeTbPreambles::RxHeTbPpdu(), TestPhyPaddingExclusion::SendHeTbPpdu(), TestDlOfdmaPhyTransmission::SendMuPpdu(), TestUlOfdmaPpduUid::SendMuPpdu(), TestUlOfdmaPpduUid::SendTbPpdu(), TestPhyPaddingExclusion::SetTrigVector(), and TestUlOfdmaPhyTransmission::SetTrigVector().
void ns3::WifiTxVector::SetNss | ( | uint8_t | nss, |
uint16_t | staId | ||
) |
Sets the number of Nss for MU.
nss | the number of spatial streams |
staId | the station ID for MU |
Definition at line 278 of file wifi-tx-vector.cc.
References IsMu(), m_muUserInfos, and NS_ABORT_MSG_IF.
void ns3::WifiTxVector::SetNTx | ( | uint8_t | nTx | ) |
Sets the number of TX antennas.
nTx | the number of TX antennas |
Definition at line 266 of file wifi-tx-vector.cc.
References m_nTx.
Referenced by WifiErrorRateModelsTestCaseMimo::DoRun(), ns3::WifiRemoteStationManager::GetDataTxVector(), ns3::WifiRemoteStationManager::GetRtsTxVector(), and ns3::WifiPpdu::GetTxVector().
void ns3::WifiTxVector::SetPreambleType | ( | WifiPreamble | preamble | ) |
Sets the preamble type.
preamble | the preamble type |
Definition at line 248 of file wifi-tx-vector.cc.
References m_preamble.
Referenced by HeSigBDurationTest::BuildTxVector(), ns3::dot11s::AirtimeLinkMetricCalculator::CalculateMetric(), ns3::MinstrelHtWifiManager::CalculateMpduTxDuration(), TxDurationTest::CheckHeMuTxDuration(), TxDurationTest::CheckPayloadDuration(), TxDurationTest::CheckTxDuration(), ns3::RrMultiUserScheduler::ComputeDlMuInfo(), TestMultiUserScheduler::ComputeWifiTxVector(), ns3::HePpdu::DoGetTxVector(), ns3::HtPpdu::DoGetTxVector(), ns3::DsssPpdu::DoGetTxVector(), ns3::ErpOfdmPpdu::DoGetTxVector(), ns3::OfdmPpdu::DoGetTxVector(), ns3::VhtPpdu::DoGetTxVector(), PhyHeaderSectionsTest::DoRun(), ns3::VsaManager::DoSendVsa(), ns3::WifiDefaultAckManager::GetAckInfoIfAggregatedMuBar(), ns3::WifiDefaultAckManager::GetAckInfoIfTfMuBar(), ns3::WifiRemoteStationManager::GetAckTxVector(), ns3::WifiRemoteStationManager::GetBlockAckTxVector(), ns3::WifiRemoteStationManager::GetCtsTxVector(), ns3::WifiRemoteStationManager::GetDataTxVector(), ns3::WaveFrameExchangeManager::GetDataTxVector(), ns3::CtrlTriggerHeader::GetHeTbTxVector(), ns3::WifiRemoteStationManager::GetRtsTxVector(), ns3::HeFrameExchangeManager::GetTrigVector(), ns3::WaveNetDevice::Send(), PsrExperiment::Send(), CollisionExperiment::SendA(), InterferenceExperiment::SendA(), CollisionExperiment::SendB(), InterferenceExperiment::SendB(), ns3::WaveNetDevice::SendX(), ns3::MinstrelWifiManager::SetupPhy(), ns3::RraaWifiManager::SetupPhy(), ns3::RrpaaWifiManager::SetupPhy(), NodeStatistics::SetupPhy(), ns3::RrMultiUserScheduler::TrySendingBasicTf(), and ns3::RrMultiUserScheduler::TrySendingDlMuPpdu().
void ns3::WifiTxVector::SetRu | ( | HeRu::RuSpec | ru, |
uint16_t | staId | ||
) |
Set the RU specification for the STA-ID.
This is applicable only for MU.
ru | the RU specification |
staId | the station ID |
Definition at line 396 of file wifi-tx-vector.cc.
References IsMu(), m_muUserInfos, and NS_ABORT_MSG_IF.
Referenced by ns3::RrMultiUserScheduler::AssignRuIndices(), TestUlOfdmaPhyTransmission::GetTxVectorForHeTbPpdu(), TestMultipleHeTbPreambles::RxHeTbPpdu(), TestPhyPaddingExclusion::SendHeTbPpdu(), TestDlOfdmaPhyTransmission::SendMuPpdu(), TestUlOfdmaPpduUid::SendMuPpdu(), TestUlOfdmaPpduUid::SendTbPpdu(), TestPhyPaddingExclusion::SetTrigVector(), and TestUlOfdmaPhyTransmission::SetTrigVector().
void ns3::WifiTxVector::SetStbc | ( | bool | stbc | ) |
Sets if STBC is being used.
stbc | enable or disable STBC |
Definition at line 298 of file wifi-tx-vector.cc.
References m_stbc.
Referenced by HeSigBDurationTest::BuildTxVector(), ns3::MinstrelHtWifiManager::CalculateMpduTxDuration(), TxDurationTest::CheckHeMuTxDuration(), TxDurationTest::CheckPayloadDuration(), and TxDurationTest::CheckTxDuration().
void ns3::WifiTxVector::SetTxPowerLevel | ( | uint8_t | powerlevel | ) |
Sets the selected transmission power level.
powerlevel | the transmission power level |
Definition at line 242 of file wifi-tx-vector.cc.
References m_txPowerLevel.
Referenced by TestMultiUserScheduler::ComputeWifiTxVector(), WifiErrorRateModelsTestCaseMimo::DoRun(), ns3::VsaManager::DoSendVsa(), ns3::WifiRemoteStationManager::GetAckTxVector(), ns3::WifiRemoteStationManager::GetBlockAckTxVector(), ns3::WifiRemoteStationManager::GetCtsTxVector(), ns3::WifiRemoteStationManager::GetDataTxVector(), ns3::WaveFrameExchangeManager::GetDataTxVector(), ns3::HeFrameExchangeManager::GetHeTbTxVector(), ns3::WifiRemoteStationManager::GetRtsTxVector(), ns3::WifiPpdu::GetTxVector(), ns3::WaveNetDevice::Send(), PsrExperiment::Send(), CollisionExperiment::SendA(), InterferenceExperiment::SendA(), CollisionExperiment::SendB(), InterferenceExperiment::SendB(), and ns3::WaveNetDevice::SendX().
|
private |
Flag whether the PSDU contains A-MPDU.
Definition at line 405 of file wifi-tx-vector.h.
Referenced by IsAggregation(), and SetAggregation().
|
private |
BSS color.
Definition at line 408 of file wifi-tx-vector.h.
Referenced by GetBssColor(), and SetBssColor().
|
private |
channel width in MHz
Definition at line 400 of file wifi-tx-vector.h.
Referenced by GetChannelWidth(), GetNumRusPerHeSigBContentChannel(), IsValid(), and SetChannelWidth().
|
private |
guard interval duration in nanoseconds
Definition at line 401 of file wifi-tx-vector.h.
Referenced by GetGuardInterval(), and SetGuardInterval().
|
private |
LDPC FEC coding if true, BCC otherwise.
Definition at line 407 of file wifi-tx-vector.h.
|
private |
LENGTH field of the L-SIG.
Definition at line 409 of file wifi-tx-vector.h.
Referenced by GetLength(), and SetLength().
|
private |
The DATARATE parameter in Table 15-4.
It is the value that will be passed to PMD_RATE.request
Definition at line 393 of file wifi-tx-vector.h.
Referenced by GetMode(), GetModulationClass(), IsValid(), and SetMode().
|
private |
Internal initialization flag.
Definition at line 411 of file wifi-tx-vector.h.
Referenced by GetMode(), GetModeInitialized(), GetModulationClass(), SetHeMuUserInfo(), and SetMode().
|
private |
HE MU specific per-user information indexed by station ID (STA-ID) corresponding to the 11 LSBs of the AID of the recipient STA This list shall be used only for HE MU.
Definition at line 414 of file wifi-tx-vector.h.
Referenced by WifiTxVector(), ~WifiTxVector(), GetHeMuUserInfo(), GetHeMuUserInfoMap(), GetMode(), GetModulationClass(), GetNss(), GetNssMax(), GetNumRusPerHeSigBContentChannel(), GetRu(), SetHeMuUserInfo(), SetMode(), SetNss(), and SetRu().
|
private |
number of spatial streams in beamforming
Definition at line 404 of file wifi-tx-vector.h.
|
private |
number of spatial streams
Definition at line 403 of file wifi-tx-vector.h.
Referenced by GetNss(), GetNssMax(), IsValid(), and SetNss().
|
private |
number of TX antennas
Definition at line 402 of file wifi-tx-vector.h.
|
private |
preamble
Definition at line 399 of file wifi-tx-vector.h.
Referenced by GetPreambleType(), IsDlMu(), IsMu(), IsUlMu(), and SetPreambleType().
|
private |
STBC used or not.
Definition at line 406 of file wifi-tx-vector.h.
|
private |
The TXPWR_LEVEL parameter in Table 15-4.
It is the value that will be passed to PMD_TXPWRLVL.request
Definition at line 396 of file wifi-tx-vector.h.
Referenced by GetTxPowerLevel(), and SetTxPowerLevel().