OfdmModAccResults

Provides methods to fetch and read the OfdmModAcc measurement results.

class nirfmxwlan.ofdmmodacc_results.OfdmModAccResults(signal_obj)[source]

Bases: object

Provides methods to fetch and read the OfdmModAcc measurement results.

fetch_chain_data_rms_evm_per_symbol_mean_trace(selector_string, timeout, chain_data_rms_evm_per_symbol_mean)[source]

Fetches the chain data-subcarriers RMS EVM per symbol trace. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the chain data RMS EVM per symbol computed for each averaging count.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • chain_data_rms_evm_per_symbol_mean (numpy.float32) – This parameter returns an array of chain data-subcarriers RMS EVM of each OFDM symbol. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_chain_pilot_rms_evm_per_symbol_mean_trace(selector_string, timeout, chain_pilot_rms_evm_per_symbol_mean)[source]

Fetches the chain pilot-subcarriers RMS EVM per symbol trace. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the chain pilot RMS EVM per symbol computed for each averaging count.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • chain_pilot_rms_evm_per_symbol_mean (numpy.float32) – This parameter returns an array of chain pilot-subcarriers RMS EVM of each OFDM symbol. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_chain_rms_evm(selector_string, timeout)[source]

Fetches the chain RMS EVM results.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

chain_rms_evm_mean (float):

This parameter returns the chain RMS EVM of all subcarriers in all OFDM symbols. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of chain RMS EVM results computed for each averaging count. This value is expressed as a percentage or in dB.

chain_data_rms_evm_mean (float):

This parameter returns the chain RMS EVM of data subcarriers in all OFDM symbols. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of data chain RMS EVM results computed for each averaging count. This value is expressed as a percentage or in dB.

chain_pilot_rms_evm_mean (float):

This parameter returns the chain RMS EVM of pilot subcarriers in all OFDM symbols. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of pilot chain RMS EVM results computed for each averaging count. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (chain_rms_evm_mean, chain_data_rms_evm_mean, chain_pilot_rms_evm_mean, error_code)

fetch_chain_rms_evm_per_subcarrier_mean_trace(selector_string, timeout, chain_rms_evm_per_subcarrier_mean)[source]

Fetches the chain RMS EVM per subcarrier trace. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the chain RMS EVM per subcarrier computed for each averaging count.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • chain_rms_evm_per_subcarrier_mean (numpy.float32) – This parameter returns an array of chain RMS EVM of each subcarrier. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB.

Returns:

x0 (float):

This parameter returns the starting subcarrier index.

dx (float):

This parameter returns the subcarrier increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_chain_rms_evm_per_symbol_mean_trace(selector_string, timeout, chain_rms_evm_per_symbol_mean)[source]

Fetches the chain RMS EVM per symbol trace. When you set the When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the chain RMS EVM per symbol computed for each averaging count.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • chain_rms_evm_per_symbol_mean (numpy.float32) – This parameter returns an array of chain RMS EVM of OFDM symbol. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_channel_frequency_response_mean_trace(selector_string, timeout, channel_frequency_response_mean_magnitude, channel_frequency_response_mean_phase)[source]

Fetches the channel frequency response trace. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the channel frequency response trace computed for each averaging count.

Use “segment<n>/chain<k>/stream<l>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, chain number, and stream number.

    Example:

    ”segment0/chain0/stream0”

    ”result::r1/segment0/chain0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • channel_frequency_response_mean_magnitude (numpy.float32) – This parameter returns an array of magnitudes of the channel frequency response for each subcarrier. This value is expressed in dB.

  • channel_frequency_response_mean_phase (numpy.float32) – This parameter returns an array of magnitudes of the channel frequency response for each subcarrier. This value is expressed in dB.

Returns:

x0 (float):

This parameter returns the starting subcarrier index.

dx (float):

This parameter returns the subcarrier increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_common_pilot_error_trace(selector_string, timeout, common_pilot_error_magnitude, common_pilot_error_phase)[source]

Fetches the common pilot error magnitude and phase traces.

Use “segment<n>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and segment number.

    Example:

    ”segment0”

    ”result::r1/segment0”

    You can use the build_segment_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • common_pilot_error_magnitude (numpy.float32) – This parameter returns an array of magnitude of the common pilot error for each OFDM symbol.

  • common_pilot_error_phase (numpy.float32) – This parameter returns an array of magnitude of the common pilot error for each OFDM symbol.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_composite_rms_evm(selector_string, timeout)[source]

Fetches the composite RMS EVM results.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

composite_rms_evm_mean (float):

This parameter returns the RMS EVM of all subcarriers in all OFDM symbols. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the composite RMS EVM results computed for each averaging count.

composite_data_rms_evm_mean (float):

This parameter returns the RMS EVM of data-subcarriers in all OFDM symbols. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the composite data RMS EVM results computed for each averaging count.

composite_pilot_rms_evm_mean (float):

This parameter returns the RMS EVM of pilot-subcarriers in all OFDM symbols. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the composite pilot RMS EVM results computed for each averaging count.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (composite_rms_evm_mean, composite_data_rms_evm_mean, composite_pilot_rms_evm_mean, error_code)

fetch_cross_power(selector_string, timeout)[source]

Fetches the cross power.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

cross_power_mean (float):

This parameter returns the cross power. The cross power for chain x is the power contribution from streams other than stream x in the chain. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the cross power results computed for each averaging count. This value is expressed in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (cross_power_mean, error_code)

fetch_custom_gate_powers_array(selector_string, timeout)[source]

Fetches the average and peak power of the custom gates.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

average_power_mean (float):

This parameter returns an array of average powers of the custom gates. This value is expressed in dBm. When you set the AVERAGING_ENABLED attribute to True, this parameter returns an array of the mean of the average custom gate power results computed for each averaging count.

peak_power_maximum (float):

This parameter returns an array of peak powers of the custom gates. This value is expressed in dBm. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns an array of the maximum of the peak custom gate power results computed for each averaging count.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (average_power_mean, peak_power_maximum, error_code)

fetch_data_average_power(selector_string, timeout)[source]

Fetches the average power of the data field.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

data_average_power_mean (float):

This parameter returns the average power of the data field. This value is expressed in dBm. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the data average power results computed for each averaging count.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (data_average_power_mean, error_code)

fetch_data_constellation_trace(selector_string, timeout, data_constellation)[source]

Fetches the constellation trace for the data-subcarriers.

Use “segment<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and stream number.

    Example:

    ”segment0/stream0”

    ”result::r1/segment0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • data_constellation (numpy.complex64) – This parameter returns the demodulated QAM symbols from all the data-subcarriers in all the OFDM symbols.

Returns:

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

int

fetch_data_peak_power(selector_string, timeout)[source]

Fetches the peak power of the data field.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

data_peak_power_maximum (float):

This parameter returns the peak power of the data field. This value is expressed in dBm. When you set the AVERAGING_ENABLED attribute to True, this parameter returns an array of the maximum of the data peak power results computed for each averaging count.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (data_peak_power_maximum, error_code)

fetch_decoded_eht_sig_bits_trace(selector_string, timeout)[source]

Fetches the decoded EHT-SIG bits trace.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

decoded_eht_sig_bits (int):

This parameter returns the array of bits in the EHT-SIG field of the 802.11be waveform for all 80 MHz subblocks.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (decoded_eht_sig_bits, error_code)

fetch_decoded_elr_sig_bits_trace(selector_string, timeout)[source]
Parameters:
  • selector_string (string)

  • timeout (float)

Returns:

decoded_elr_sig_bits (int): error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (decoded_elr_sig_bits, error_code)

fetch_decoded_l_sig_bits_trace(selector_string, timeout)[source]

Fetches the decoded L-SIG bits trace.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

decoded_l_sig_bits (int):

This parameter returns the array of bits in the SIGNAL field of the 802.11a/g waveform or the L-SIG field of the 802.11n/802.11ac/802.11ax/802.11be/802.11bn waveforms.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (decoded_l_sig_bits, error_code)

fetch_decoded_psdu_bits_trace(selector_string, timeout)[source]

Fetches the decoded PLCP service data unit (PSDU) bits.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and user number.

    Example:

    ”user0”

    ”result::r1/user0”

    You can use the build_user_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

decoded_psdu_bits (int):

This parameter returns an array of PSDU bits obtained after demodulation and decoding.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (decoded_psdu_bits, error_code)

fetch_decoded_service_bits_trace(selector_string, timeout)[source]

Fetches the decoded Service bits.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and user number.

    Example:

    ”user0”

    ”result::r1/user0”

    You can use the build_user_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

decoded_service_bits (int):

This parameter returns an array of Service bits obtained after demodulation and decoding.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (decoded_service_bits, error_code)

fetch_decoded_sig_b_bits_trace(selector_string, timeout)[source]

Fetches the decoded SIG-B bits.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

decoded_sig_b_bits (int):

This parameter returns an array of bits in the VHT-SIG-B field of the 802.11ac waveform or the HE-SIG-B field of the 802.11ax waveform.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (decoded_sig_b_bits, error_code)

fetch_decoded_sig_bits_trace(selector_string, timeout)[source]

Fetches the decoded SIG bits.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

decoded_sig_bits (int):

This parameter returns an array of bits in the HT-SIG field of the 802.11n waveform, the VHT-SIG-A field of the 802.11ac waveform, or the HE-SIG-A field of the 802.11ax waveform.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (decoded_sig_bits, error_code)

fetch_decoded_u_sig_bits_trace(selector_string, timeout)[source]

Fetches the decoded U-SIG bits trace.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

decoded_u_sig_bits (int):

This parameter returns the array of bits in the U-SIG field of the 802.11be/802.11bn waveform for all 80 MHz subblocks.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (decoded_u_sig_bits, error_code)

fetch_decoded_uhr_sig_bits_trace(selector_string, timeout)[source]
Parameters:
  • selector_string (string)

  • timeout (float)

Returns:

decoded_uhr_sig_bits (int): error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (decoded_uhr_sig_bits, error_code)

fetch_evm_subcarrier_indices(selector_string, timeout)[source]

Fetches the array of subcarrier indices for which the EVM results are computed.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

subcarrier_indices (int):

This parameter returns an array of subcarrier indices for which the EVM results are computed.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (subcarrier_indices, error_code)

fetch_frequency_error_ccdf_10_percent(selector_string, timeout)[source]

Fetches the 10% point of the complementary cumulative distribution function (CCDF) of frequency error across the number of iterations.

Use “segment<n>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and segment number.

    Example:

    ”segment0”

    ”result::r1/segment0”

    You can use the build_segment_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

frequency_error_ccdf_10_percent (float):

This parameter returns the 10% point of the CCDF of absolute frequency error. When you set the AVERAGING_ENABLED attribute to True, the CCDF is computed over each averaging count. This value is expressed in Hz.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (frequency_error_ccdf_10_percent, error_code)

fetch_frequency_error_mean(selector_string, timeout)[source]

Fetches the carrier frequency error of the transmitter.

Use “segment<n>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and segment number.

    Example:

    ”segment0”

    ”result::r1/segment0”

    You can use the build_segment_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

frequency_error_mean (float):

This parameter returns the carrier frequency error of the transmitter. This value is expressed in Hz. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the carrier frequency error results computed for each averaging count.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (frequency_error_mean, error_code)

fetch_group_delay_mean_trace(selector_string, timeout, group_delay_mean)[source]

Fetches the group delay trace. Group delay is computed from the channel frequency response. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the group delay trace computed for each averaging count.

Use “segment<n>/chain<k>/stream<l>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, chain number, and stream number.

    Example:

    ”segment0/chain0/stream0”

    ”result::r1/segment0/chain0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • group_delay_mean (numpy.float32) – This parameter returns an array of group delay responses. This value is expressed in seconds.

Returns:

x0 (float):

This parameter returns the starting subcarrier index.

dx (float):

This parameter returns the subcarrier increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_guard_interval_type(selector_string, timeout)[source]

Fetches the guard interval type.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

guard_interval_type (enums.OfdmGuardIntervalType):

This parameter returns the size of the guard interval of OFDM symbols.

Name (Value)

Description

1/4 (0)

Indicates the guard interval is 1/4th of the IFFT duration.

1/8 (1)

Indicates the guard interval is 1/8th of the IFFT duration.

1/16 (2)

Indicates the guard interval is 1/16th of the IFFT duration.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (guard_interval_type, error_code)

fetch_iq_gain_imbalance_per_subcarrier_mean_trace(selector_string, timeout, iq_gain_imbalance_per_subcarrier_mean)[source]

Fetches the I/Q gain imbalance per subcarrier trace. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the I/Q gain imbalance computed for each averaging count.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • iq_gain_imbalance_per_subcarrier_mean (numpy.float32) – This parameter returns an array of I/Q gain imbalance for each subcarrier. This value is expressed in dB.

Returns:

x0 (float):

This parameter returns the starting subcarrier index.

dx (float):

This parameter returns the subcarrier increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_iq_impairments(selector_string, timeout)[source]

Fetches the I/Q Impairment results for the OFDMModAcc measurement.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

relative_iq_origin_offset_mean (float):

This parameter returns the relative I/Q origin offset, which is the ratio of the power of the DC subcarrier to the total power of all the subcarriers. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the relative I/Q origin offset computed for each averaging count. This value is expressed in dB.

iq_gain_imbalance_mean (float):

This parameter returns the I/Q gain imbalance, which is the ratio of the RMS amplitude of the in-phase (I) component of the signal to the RMS amplitude of the quadrature-phase (Q) component of the signal. When you set the OFDMModAcc Averaging Enabled attribute to True, this attribute returns the mean of the I/Q gain imbalance computed for each averaging count. This value is expressed in dB.

iq_quadrature_error_mean (float):

This parameter returns the I/Q quadrature error, which is a measure of deviation of the phase difference between the quadrature-phase (Q) and the in-phase (I) component of the signal from 90 degrees. When you set the OFDMModAcc Averaging Enabled attribute to True, this attribute returns the I/Q quadrature error computed for each averaging count. This value is expressed in degrees.

absolute_iq_origin_offset_mean (float):

This parameter returns the absolute I/Q origin offset, which is the power of the DC subcarrier. When you set the OFDMModAcc Averaging Enabled attribute to True, this attribute returns the mean of the absolute I/Q origin offset computed for each averaging count. This value is expressed in dBm.

iq_timing_skew_mean (float):

This parameter returns the I/Q timing skew, which is the difference between the group delay of the in-phase (I) and quadrature (Q) components of the signal. When you set the OFDMModAcc Averaging Enabled attribute to True, this attribute returns the mean of the I/Q timing skew computed for each averaging count. This value is expressed in seconds.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (relative_iq_origin_offset_mean, iq_gain_imbalance_mean, iq_quadrature_error_mean, absolute_iq_origin_offset_mean, iq_timing_skew_mean, error_code)

fetch_iq_quadrature_error_per_subcarrier_mean_trace(selector_string, timeout, iq_quadrature_error_per_subcarrier_mean)[source]

Fetches the I/Q quadrature error per subcarrier trace. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the I/Q quadrature error computed for each averaging count.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • iq_quadrature_error_per_subcarrier_mean (numpy.float32) – This parameter returns an array of I/Q quadrature errors for each subcarrier. This value is expressed in degrees.

Returns:

x0 (float):

This parameter returns the starting subcarrier index.

dx (float):

This parameter returns the subcarrier increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_l_sig_parity_check_status(selector_string, timeout)[source]

Fetches the L-SIG parity check status.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

l_sig_parity_check_status (enums.OfdmModAccLSigParityCheckStatus):

This parameter returns whether the parity check has passed either for the SIGNAL field of the 802.11a/g waveform or for the L-SIG field of the 802.11n/802.11ac/802.11ax/802.11be/802.11bn waveforms.

Name (Value)

Description

Not Applicable (-1)

Returns that the parity check is invalid for the current waveform.

Fail (0)

Returns that the parity check failed.

Pass (1)

Returns that the parity check passed.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (l_sig_parity_check_status, error_code)

fetch_ltf_size(selector_string, timeout)[source]

Fetches the HE-LTF or EHT-LTF size for 802.11ax or 802.11be, respectively.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

ltf_size (enums.OfdmLtfSize):

This parameter returns the HE-LTF or EHT-LTF size. This result is applicable only to 802.11ax and 802.11be signals.

Name (Value)

Description

Not Applicable (-1)

Result is not applicable.

4x (0)

The HE-LTF or EHT-LTF size is 4x.

2x (1)

The HE-LTF or EHT-LTF size is 2x.

1x (2)

The HE-LTF or EHT-LTF size is 1x.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (ltf_size, error_code)

fetch_mcs_index(selector_string, timeout)[source]

Fetches the MCS index.

Use “user<n>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and user number.

    Example:

    ”user0”

    ”result::r1/user0”

    You can use the build_user_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

mcs_index (int):

This parameter returns the MCS index or the data rate. The MCS index or data rate for various standard signals are decoded as follows:

Standard

Field

802.11a, 802.11j, 802.11p

The data rate is decoded from the SIGNAL field.

802.11n

The MCS index is decoded from the HT-SIG field.

802.11ac

The MCS index is decoded from the VHT-SIG-A field.

802.11ax SU and Extended Range SU PPDU

The MCS index is decoded from the HE-SIG-A field.

802.11ax MU PPDU

The MCS index is decoded from the HE-SIG-B field.

802.11be MU PPDU

The MCS index is decoded from the EHT-SIG field.

802.11bn MU PPDU

The MCS index is decoded from the UHR-SIG field.

802.11bn ELR PPDU

The MCS index is decoded from the ELR-SIG field.

For 802.11a, 802.11j, and 802.11p signals, the following MCS indices corresponds to their data rates:

MCS

Data Rate

0

1.5 Mbps, 3 Mbps, and 6 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

1

2.25 Mbps, 4.5 Mbps, and 9 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

2

3 Mbps, 6 Mbps, and 12 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

3

4.5 Mbps, 9 Mbps, and 18 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

4

6 Mbps, 12 Mbps, and 24 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

5

9 Mbps, 18 Mbps, and 36 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

6

12 Mbps, 24 Mbps, and 48 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

7

13.5 Mbps, 27 Mbps, and 54 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (mcs_index, error_code)

fetch_number_of_he_sig_b_symbols(selector_string, timeout)[source]

Fetches the number of HE-SIG-B symbols.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

number_of_he_sig_b_symbols (int):

This parameter returns the number of HE-SIG-B symbols. This result is applicable for 802.11ax MU PPDU signals, and is decoded from the HE-SIG-A field.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (number_of_he_sig_b_symbols, error_code)

fetch_number_of_space_time_streams(selector_string, timeout)[source]

Fetches the number of space time streams.

Use “user<n>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and user number.

    Example:

    ”user0”

    ”result::r1/user0”

    You can use the build_user_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

number_of_space_time_streams (int):

This parameter returns the number of space time streams.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (number_of_space_time_streams, error_code)

fetch_number_of_symbols_used(selector_string, timeout)[source]

Fetches the number of OFDM symbols used for EVM measurement.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

number_of_symbols_used (int):

This parameter returns the number of OFDM symbols used by the measurement.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (number_of_symbols_used, error_code)

fetch_number_of_users(selector_string, timeout)[source]

Fetches the number of users.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

number_of_users (int):

This parameter returns the number of users which is derived for the following standards.

Standard

Derivation

802.11ac

Derived from the VHT-SIG-A for VHT MU PPDU.

802.11ax

Derived from the HE-SIG-B for HE MU PPDU.

802.11be

Derived from the EHT-SIG for EHT MU PPDU.

802.11bn

Derived from the UHR-SIG for UHR MU PPDU.

For all other PPDUs, this attribute returns 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (number_of_users, error_code)

fetch_pe_average_power(selector_string, timeout)[source]

Fetches the average power of the packet extension field.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

pe_average_power_mean (float):

This parameter returns the average power of the packet extension field. This parameter is applicable for 802.11ax signals. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the packet extension field average power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (pe_average_power_mean, error_code)

fetch_pe_duration(selector_string, timeout)[source]

Fetches the duration of the packet extension field.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

pe_duration (float):

This parameter returns the duration of the packet extension field for the 802.11ax and 802.11be signals. This parameter is applicable only when you set the OFDM_HEADER_DECODING_ENABLED attribute to True. This value is expressed in seconds.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (pe_duration, error_code)

fetch_pe_peak_power(selector_string, timeout)[source]

Fetches the peak power of the packet extension field.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

pe_peak_power_maximum (float):

This parameter returns the peak power of the packet extension field. This parameter is applicable for 802.11ax signals. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the maximum of the PE field peak power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (pe_peak_power_maximum, error_code)

fetch_phase_noise_psd_mean_trace(selector_string, timeout, phase_noise_psd_mean)[source]

Fetches the phase noise power spectral density (PSD) trace for signals containing an OFDM payload.

Phase noise estimates are derived from the common pilot error estimates. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the phase noise PSD computed for each averaging count.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and segment number.

    Example:

    ”segment0”

    ”result::r1/segment0”

    You can use the build_segment_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • phase_noise_psd_mean (numpy.float32) – This parameter returns an array of the mean of phase noise PSD. This value is expressed in dBc/Hz.

Returns:

x0 (float):

This parameter returns the start frequency of the phase noise PSD mean trace. This value is expressed in Hz.

dx (float):

This parameter returns the frequency intervals between data points in the phase noise PSD mean trace. This value is expressed in Hz.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_pilot_constellation_trace(selector_string, timeout, pilot_constellation)[source]

Fetches the constellation trace for the pilot-subcarriers.

Use “segment<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and stream number.

    Example:

    ”segment0/stream0”

    ”result::r1/segment0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • pilot_constellation (numpy.complex64) – This parameter returns the demodulated QAM symbols from all the pilot-subcarriers in all OFDM symbols.

Returns:

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

int

fetch_ppdu_average_power(selector_string, timeout)[source]

Fetches the average power of the PPDU.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

ppdu_average_power_mean (float):

This parameter returns the average power of the PPDU. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the PPDU average power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (ppdu_average_power_mean, error_code)

fetch_ppdu_peak_power(selector_string, timeout)[source]

Fetches the peak power of the PPDU.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

ppdu_peak_power_maximum (float):

This parameter returns the peak power of the PPDU. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the maximum of the PPDU peak power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (ppdu_peak_power_maximum, error_code)

fetch_ppdu_type(selector_string, timeout)[source]

Fetches the PPDU type.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

ppdu_type (enums.OfdmPpduType):

This parameter returns the PPDU type.

Name (Value)

Description

Non-HT (0)

Applicable to 802.11a, 802.11j, and 802.11p signals or for 802.11n, 802.11ac, and 802.11ax signals that operate in the Non-HT mode.

Mixed (1)

Applicable to 802.11n mixed PPDU signals.

Greenfield (2)

Applicable to 802.11n greenfield PPDU signals.

SU (3)

Applicable to 802.11ac and 802.11ax SU PPDU signals.

MU (4)

Applicable to 802.11ax, 802.11be, and 802.11bn MU PPDU signals.

Extended Range SU (5)

Applicable to 802.11ax extended range SU PPDU signals.

Trigger-based (6)

Applicable to 802.11ax, 802.11be, and 802.11bn TB PPDU signals.

ELR (7)

Applicable to 802.11bn ELR PPDU signals.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (ppdu_type, error_code)

fetch_preamble_average_powers_802_11ac(selector_string, timeout)[source]

Fetches the average power of the 802.11ac specific preamble fields.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

vht_sig_a_average_power_mean (float):

This parameter returns the average power of the VHT-SIG-A field. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the VHT-SIG-A field average power results computed for each averaging count. This value is expressed in dBm.

vht_stf_average_power_mean (float):

This parameter returns the average power of the VHT-STF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this paramter returns the mean of the VHT-STF average power results computed for each averaging count. This value is expressed in dBm.

vht_ltf_average_power_mean (float):

This parameter returns the average power of the VHT-LTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this paramter returns the mean of the VHT-LTF average power results computed for each averaging count. This value is expressed in dBm.

vht_sig_b_average_power_mean (float):

This parameter returns the average power of the VHT-SIG-B field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the VHT-SIG-B field average power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (vht_sig_a_average_power_mean, vht_stf_average_power_mean, vht_ltf_average_power_mean, vht_sig_b_average_power_mean, error_code)

fetch_preamble_average_powers_802_11ax(selector_string, timeout)[source]

Fetches the average power of the 802.11ax specific preamble fields.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

rl_sig_average_power_mean (float):

This parameter returns the average power of the RL-SIG field. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the RL-SIG field average power results computed for each averaging count. This value is expressed in dBm.

he_sig_a_average_power_mean (float):

This parameter returns the average power of the HE-SIG-A field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the HE-SIG-A field average power results computed for each averaging count. This value is expressed in dBm.

he_sig_b_average_power_mean (float):

This parameter returns the average power of the HE-SIG-B field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the HE-SIG-B field average power results computed for each averaging count. This value is expressed in dBm.

he_stf_average_power_mean (float):

This parameter returns the average power of the HE-STF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the HE-STF average power results computed for each averaging count. This value is expressed in dBm.

he_ltf_average_power_mean (float):

This parameter returns the average power of the HE-LTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the HE-LTF average power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (rl_sig_average_power_mean, he_sig_a_average_power_mean, he_sig_b_average_power_mean, he_stf_average_power_mean, he_ltf_average_power_mean, error_code)

fetch_preamble_average_powers_802_11be(selector_string, timeout)[source]

Fetches the average power of the 802.11be specific preamble fields.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

rl_sig_average_power_mean (float):

This parameter returns the average power of the RL-SIG field. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the RL-SIG field average power results computed for each averaging count. This value is expressed in dBm.

u_sig_average_power_mean (float):

This parameter returns the average power of the U-SIG field. When you set the OFDMModAcc Averaging Enabled attribute to True, this paramter returns the mean of the U-SIG average power results computed for each averaging count. This value is expressed in dBm.

eht_sig_average_power_mean (float):

This parameter returns the average power of the EHT-SIG field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the EHT-SIG average power results computed for each averaging count. This value is expressed in dBm.

eht_stf_average_power_mean (float):

This parameter returns the average power of the EHT-STF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the EHT-STF average power results computed for each averaging count. This value is expressed in dBm.

eht_ltf_average_power_mean (float):

This parameter returns the average power of the EHT-LTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the EHT-LTF average power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (rl_sig_average_power_mean, u_sig_average_power_mean, eht_sig_average_power_mean, eht_stf_average_power_mean, eht_ltf_average_power_mean, error_code)

fetch_preamble_average_powers_802_11n(selector_string, timeout)[source]

Fetches the average power of the 802.11n specific preamble fields.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

ht_sig_average_power_mean (float):

This parameter returns the average power of the HT-SIG field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the HT-SIG field average power results computed for each averaging count. This value is expressed in dBm.

ht_stf_average_power_mean (float):

This parameter returns the average power of the HT-STF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the HT-STF average power results computed for each averaging count. This value is expressed in dBm.

ht_dltf_average_power_mean (float):

This parameter returns the average power of the HT-DLTF. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the HT-DLTF average power results computed for each averaging count. This value is expressed in dBm.

ht_eltf_average_power_mean (float):

This parameter returns the average power of the HT-ELTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the HT-ELTF average power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (ht_sig_average_power_mean, ht_stf_average_power_mean, ht_dltf_average_power_mean, ht_eltf_average_power_mean, error_code)

fetch_preamble_average_powers_common(selector_string, timeout)[source]

Fetches the average power of the preamble fields.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

l_stf_average_power_mean (float):

This parameter returns the average power of the L-STF or STF field. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the L-STF or STF average power results computed for each averaging count. This value is expressed in dBm.

l_ltf_average_power_mean (float):

This parameter returns the average power of the L-LTF or LTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the L-LTF or LTF average power results computed for each averaging count. This value is expressed in dBm.

l_sig_average_power_mean (float):

This parameter returns the average power of the L-SIG or SIGNAL field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the L-SIG or SIGNAL field average power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (l_stf_average_power_mean, l_ltf_average_power_mean, l_sig_average_power_mean, error_code)

fetch_preamble_frequency_error_trace(selector_string, timeout, preamble_frequency_error)[source]

Fetches the preamble frequency error trace for signals containing an OFDM payload. Preamble frequency error computes the variations, across time, of the frequency error over initial 16us which comprises of the short training field (STF) and long training field (LTF) symbols.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • preamble_frequency_error (numpy.float32) – This parameter returns the preamble frequency error at every sampling time. This value is expressed in Hz.

Returns:

x0 (float):

This parameter returns the start time in seconds.

dx (float):

This parameter returns the time increment value. This value is the reciprocal of OFDM ModAcc processing rate.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_preamble_peak_powers_802_11ac(selector_string, timeout)[source]

Fetches the peak power of the 802.11ac specific preamble fields.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

vht_sig_a_peak_power_maximum (float):

This parameter returns the peak power of the VHT-SIG-A field. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the VHT-SIG-A field peak power results computed for each averaging count. This value is expressed in dBm.

vht_stf_peak_power_maximum (float):

This parameter returns the peak power of the VHT-STF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the VHT-STF peak power results computed for each averaging count. This value is expressed in dBm.

vht_ltf_peak_power_maximum (float):

This parameter returns the peak power of the VHT-LTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the VHT-LTF peak power results computed for each averaging count. This value is expressed in dBm.

vht_sig_b_peak_power_maximum (float):

This parameter returns the peak power of the VHT-SIG-B field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the VHT-SIG-B field peak power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (vht_sig_a_peak_power_maximum, vht_stf_peak_power_maximum, vht_ltf_peak_power_maximum, vht_sig_b_peak_power_maximum, error_code)

fetch_preamble_peak_powers_802_11ax(selector_string, timeout)[source]

Fetches the peak power of the 802.11ax specific preamble fields.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

rl_sig_peak_power_maximum (float):

This parameter returns the peak power of the RL-SIG field. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the maximum of the RL-SIG field peak power results computed for each averaging count. This value is expressed in dBm.

he_sig_a_peak_power_maximum (float):

This parameter returns the peak power of the HE-SIG-A field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the HE-SIG-A field peak power results computed for each averaging count. This value is expressed in dBm.

he_sig_b_peak_power_maximum (float):

This parameter returns the peak power of the HE-SIG-B field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the HE-SIG-B field peak power results computed for each averaging count. This value is expressed in dBm.

he_stf_peak_power_maximum (float):

This parameter returns the peak power of the HE-STF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the HE-STF peak power results computed for each averaging count. This value is expressed in dBm.

he_ltf_peak_power_maximum (float):

This parameter returns the peak power of the HE-LTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the HE-LTF peak power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (rl_sig_peak_power_maximum, he_sig_a_peak_power_maximum, he_sig_b_peak_power_maximum, he_stf_peak_power_maximum, he_ltf_peak_power_maximum, error_code)

fetch_preamble_peak_powers_802_11be(selector_string, timeout)[source]

Fetches the peak power of the 802.11be specific preamble fields.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

rl_sig_peak_power_maximum (float):

This parameter returns the peak power of the RL-SIG field. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the maximum of the RL-SIG field peak power results computed for each averaging count. This value is expressed in dBm.

u_sig_peak_power_maximum (float):

This parameter returns the peak power of the U-SIG field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the U-SIG peak power results computed for each averaging count. This value is expressed in dBm.

eht_sig_peak_power_maximum (float):

This parameter returns the peak power of the EHT-SIG field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the EHT-SIG peak power results computed for each averaging count. This value is expressed in dBm.

eht_stf_peak_power_maximum (float):

This parameter returns the peak power of the EHT-STF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the EHT-STF peak power results computed for each averaging count. This value is expressed in dBm.

eht_ltf_peak_power_maximum (float):

This parameter returns the peak power of the EHT-LTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the EHT-LTF peak power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (rl_sig_peak_power_maximum, u_sig_peak_power_maximum, eht_sig_peak_power_maximum, eht_stf_peak_power_maximum, eht_ltf_peak_power_maximum, error_code)

fetch_preamble_peak_powers_802_11n(selector_string, timeout)[source]

Fetches the peak power of the 802.11n specific preamble fields.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

ht_sig_peak_power_maximum (float):

This parameter returns the peak power of the HT-SIG field. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the maximum of the HT-SIG field peak power results computed for each averaging count. This value is expressed in dBm.

ht_stf_peak_power_maximum (float):

This parameter returns the peak power of the HT-STF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the HT-STF peak power results computed for each averaging count. This value is expressed in dBm.

ht_dltf_peak_power_maximum (float):

This parameter returns the peak power of the HT-DLTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the HT-DLTF peak power results computed for each averaging count. This value is expressed in dBm.

ht_eltf_peak_power_maximum (float):

This parameter returns the peak power of the HT-ELTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the HT-ELTF peak power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (ht_sig_peak_power_maximum, ht_stf_peak_power_maximum, ht_dltf_peak_power_maximum, ht_eltf_peak_power_maximum, error_code)

fetch_preamble_peak_powers_common(selector_string, timeout)[source]

Fetches the peak power of the preamble fields.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

l_stf_peak_power_maximum (float):

This parameter returns the peak power of the L-STF or STF field. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the maximum of the L-STF or STF peak power results computed for each averaging count. This value is expressed in dBm.

l_ltf_peak_power_maximum (float):

This parameter returns the peak power of the L-LTF or LTF field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the L-LTF or LTF peak power results computed for each averaging count. This value is expressed in dBm.

l_sig_peak_power_maximum (float):

This parameter returns the peak power of the L-SIG or SIGNAL field. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the maximum of the L-SIG or SIGNAL field peak power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (l_stf_peak_power_maximum, l_ltf_peak_power_maximum, l_sig_peak_power_maximum, error_code)

fetch_psdu_crc_status(selector_string, timeout)[source]

Fetches the PLCP service data unit (PSDU) CRC status.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

psdu_crc_status (enums.OfdmModAccPsduCrcStatus):

This parameter returns the PSDU CRC status.

Name (Value)

Description

Fail (0)

Indicates that the PSDU CRC failed.

Pass (1)

Indicates that the PSDU CRC passed.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (psdu_crc_status, error_code)

fetch_reference_data_constellation_trace(selector_string, timeout, reference_data_constellation)[source]

Fetches the reference constellation trace for the data-subcarriers.

Use “segment<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and stream number.

    Example:

    ”segment0/stream0”

    ”result::r1/segment0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • reference_data_constellation (numpy.complex64) – This parameter returns the reference QAM symbols for all the data-subcarriers in all the OFDM symbols.

Returns:

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

int

fetch_ru_offset_and_size(selector_string, timeout)[source]

Fetches the RU offset and the RU size of the specified user.

Use “user<n>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and user number.

    Example:

    ”user0”

    ”result::r1/user0”

    You can use the build_user_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

ru_offset (int):

This parameter returns the location of RU for the specified user in terms of the index of a 26-tone RU, assuming the entire bandwidth is composed of 26-tone RUs.

ru_size (int):

This parameter returns the RU size for the specified user.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (ru_offset, ru_size, error_code)

fetch_sig_b_crc_status(selector_string, timeout)[source]

Fetches the SIG-B CRC Status.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

sig_b_crc_status (enums.OfdmModAccSigBCrcStatus):

This parameter returns whether the cyclic redundancy check (CRC) has passed for the HE-SIG-B field of the 802.11ax MU PPDU waveform.

Name (Value)

Description

Not Applicable (-1)

Returns that the SIG-B CRC is invalid for the current waveform.

Fail (0)

Returns that the SIG-B CRC failed.

Pass (1)

Returns that the SIG-B CRC passed.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (sig_b_crc_status, error_code)

fetch_sig_crc_status(selector_string, timeout)[source]

Fetches the SIG CRC Status.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name.

    Example:

    ””

    ”result::r1”

    You can use the build_result_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

sig_crc_status (enums.OfdmModAccSigCrcStatus):

This parameter returns whether the cyclic redundancy check (CRC) has passed either for the HT-SIG field of the 802.11n waveform, for the VHT-SIG-A field of the 802.11ac waveform, or for the HE-SIG-A field of the 802.11ax waveform.

Name (Value)

Description

Not Applicable (-1)

Returns that the SIG CRC is invalid for the current waveform.

Fail (0)

Returns that the SIG CRC failed.

Pass (1)

Returns that the SIG CRC passed.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (sig_crc_status, error_code)

fetch_spectral_flatness(selector_string, timeout)[source]

Fetches the spectral flatness margin results.

Use “segment<n>/chain<k>/stream<l>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, chain number, and stream number.

    Example:

    ”segment0/chain0/stream0”

    ”result::r1/segment0/chain0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

spectral_flatness_margin (float):

This parameter returns the spectral flatness margin, which is the minimum of the upper and lower spectral flatness margins. The upper spectral flatness margin is the minimum difference between the upper mask and the spectral flatness across subcarriers. The lower spectral flatness margin is the minimum difference between the spectral flatness and the lower mask across subcarriers. When you set the AVERAGING_ENABLED attribute to True, the spectral flatness is computed using the mean of the channel frequency response magnitude computed for each averaging count. This value is expressed in dB.

spectral_flatness_margin_subcarrier_index (int):

This parameter returns the subcarrier index corresponding to the Spectral Flatness Margin parameter.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (spectral_flatness_margin, spectral_flatness_margin_subcarrier_index, error_code)

fetch_spectral_flatness_mean_trace(selector_string, timeout, spectral_flatness_mean, spectral_flatness_lower_mask, spectral_flatness_upper_mask)[source]

Fetches the spectral flatness trace, and the lower and upper spectral flatness mask traces. When you set the AVERAGING_ENABLED attribute to True, this method returns the spectral flatness trace computed on the mean of the channel estimates computed for each averaging count.

Use “segment<n>/chain<k>/stream<l>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, chain number, and stream number.

    Example:

    ”segment0/chain0/stream0”

    ”result::r1/segment0/chain0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • spectral_flatness_mean (numpy.float32) – This parameter returns an array of spectral flatness for each subcarrier. This value is expressed in dB.

  • spectral_flatness_lower_mask (numpy.float32) – This parameter returns an array of spectral flatness for each subcarrier. This value is expressed in dB.

  • spectral_flatness_upper_mask (numpy.float32) – This parameter returns an array of spectral flatness for each subcarrier. This value is expressed in dB.

Returns:

x0 (float):

This parameter returns the starting subcarrier index.

dx (float):

This parameter returns the subcarrier increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_stream_data_rms_evm_per_symbol_mean_trace(selector_string, timeout, stream_data_rms_evm_per_symbol_mean)[source]

Fetches the stream data subcarriers RMS EVM per symbol trace.

Use “segment<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and stream number.

    Example:

    ”segment0/stream0”

    ”result::r1/segment0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • stream_data_rms_evm_per_symbol_mean (numpy.float32) – This parameter returns the stream data subcarriers RMS EVM of each OFDM symbol. This value is expressed as a percentage or in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_stream_pilot_rms_evm_per_symbol_mean_trace(selector_string, timeout, stream_pilot_rms_evm_per_symbol_mean)[source]

Fetches the stream pilot subcarriers RMS EVM per symbol trace.

Use “segment<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and stream number.

    Example:

    ”segment0/stream0”

    ”result::r1/segment0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • stream_pilot_rms_evm_per_symbol_mean (numpy.float32) – This parameter returns the stream pilot subcarriers RMS EVM of each OFDM symbol. This value is expressed as a percentage or in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_stream_rms_evm(selector_string, timeout)[source]

Fetches the stream RMS EVM results.

Use “segment<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and stream number.

    Example:

    ”segment0/stream0”

    ”result::r1/segment0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

stream_rms_evm_mean (float):

This parameter returns the stream RMS EVM of all subcarriers in all OFDM symbols. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of stream RMS EVM results computed for each averaging count. This value is expressed as a percentage or in dB.

stream_data_rms_evm_mean (float):

This parameter returns the stream RMS EVM of data subcarriers in all OFDM symbols. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of data stream RMS EVM results computed for each averaging count. This value is expressed as a percentage or in dB.

stream_pilot_rms_evm_mean (float):

This parameter returns the stream RMS EVM of pilot subcarriers in all OFDM symbols. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of pilot stream RMS EVM results computed for each averaging count. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (stream_rms_evm_mean, stream_data_rms_evm_mean, stream_pilot_rms_evm_mean, error_code)

fetch_stream_rms_evm_per_subcarrier_mean_trace(selector_string, timeout, stream_rms_evm_per_subcarrier_mean)[source]

Fetches the stream RMS EVM per subcarrier trace.

Use “segment<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and stream number.

    Example:

    ”segment0/stream0”

    ”result::r1/segment0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • stream_rms_evm_per_subcarrier_mean (numpy.float32) – This parameter returns the stream RMS EVM for each subcarrier. This value is expressed as a percentage or in dB.

Returns:

x0 (float):

This parameter returns the starting subcarrier index.

dx (float):

This parameter returns the subcarrier increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_stream_rms_evm_per_symbol_mean_trace(selector_string, timeout, stream_rms_evm_per_symbol_mean)[source]

Fetches the stream RMS EVM per symbol trace.

Use “segment<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and stream number.

    Example:

    ”segment0/stream0”

    ”result::r1/segment0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • stream_rms_evm_per_symbol_mean (numpy.float32) – This parameter returns the stream RMS EVM of each OFDM symbol. This value is expressed as a percentage or in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_subcarrier_chain_evm_per_symbol_trace(selector_string, timeout, subcarrier_index, subcarrier_chain_evm_per_symbol)[source]

Fetches the chain EVM per symbol trace for a subcarrier. For unoccupied subcarriers, the trace value is NaN.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • subcarrier_index (int) – This parameter specifies the subcarrier index for which the trace is fetched. The default value is 0.

  • subcarrier_chain_evm_per_symbol (numpy.float32) – This parameter returns an array of chain EVM of each OFDM symbol for the specified subcarrier index. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_subcarrier_stream_evm_per_symbol_trace(selector_string, timeout, subcarrier_index, subcarrier_stream_evm_per_symbol)[source]

Fetches the stream EVM per symbol trace for a subcarrier.

Use “segment<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and stream number.

    Example:

    ”segment0/stream0”

    ”result::r1/segment0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • subcarrier_index (int) – This parameter specifies the subcarrier index for which to fetch the trace. The default value is 0.

  • subcarrier_stream_evm_per_symbol (numpy.float32) – This parameter returns the stream EVM of each OFDM symbol for the specified subcarrier index. This value is expressed as a percentage or in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_symbol_chain_evm_per_subcarrier_trace(selector_string, timeout, symbol_index, symbol_chain_evm_per_subcarrier)[source]

Fetches the chain EVM per subcarrier trace for a symbol. For symbol indices outside the measurement interval, the trace value is NaN.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • symbol_index (int) – This parameter specifies the symbol index for which to fetch the trace. The default value is 0.

  • symbol_chain_evm_per_subcarrier (numpy.float32) – This parameter returns an array of chain EVM for each subcarrier for the specified symbol index. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB.

Returns:

x0 (float):

This parameter returns the starting subcarrier index.

dx (float):

This parameter returns the subcarrier increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_symbol_clock_error_mean(selector_string, timeout)[source]

Fetches the symbol clock error of the transmitter.

Use “segment<n>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and segment number.

    Example:

    ”segment0”

    ”result::r1/segment0”

    You can use the build_segment_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

symbol_clock_error_mean (float):

This parameter returns the symbol clock error of the transmitter. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the symbol clock error results computed for each averaging count. This value is expressed in parts per million (ppm).

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (symbol_clock_error_mean, error_code)

fetch_symbol_stream_evm_per_subcarrier_trace(selector_string, timeout, symbol_index, symbol_stream_evm_per_subcarrier)[source]

Fetches the stream EVM per subcarrier trace for a symbol.

Use “segment<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and stream number.

    Example:

    ”segment0/stream0”

    ”result::r1/segment0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • symbol_index (int) – This parameter specifies the symbol index for which to fetch the trace. The default value is 0.

  • symbol_stream_evm_per_subcarrier (numpy.float32) – This parameter returns the stream EVM for each subcarrier for the specified symbol index. This value is expressed as a percentage or in dB.

Returns:

x0 (float):

This parameter returns the starting subcarrier index.

dx (float):

This parameter returns the subcarrier increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_unused_tone_error(selector_string, timeout)[source]

Fetches the unused tone error margin results.

Refer to Unused Tone Error Mx for more information.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

unused_tone_error_margin (float):

This parameter returns the unused tone error margin, which is the minimum difference between the unused tone error mask and the unused tone error across 26-tone RUs. This value is expressed in dB.

unused_tone_error_margin_ru_index (int):

This parameter returns the 26-tone RU index corresponding to the Unused Tone Error Margin parameter.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (unused_tone_error_margin, unused_tone_error_margin_ru_index, error_code)

fetch_unused_tone_error_margin_per_ru(selector_string, timeout, unused_tone_error_margin_per_ru)[source]

Fetches the unused tone error margin result per RU.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • unused_tone_error_margin_per_ru (numpy.float64) – This parameter returns an array of unused tone error margin per RU, which is the difference between the unused tone error mask and the unused tone error for each RU. This value is expressed in dB.

Returns:

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

int

fetch_unused_tone_error_mean_trace(selector_string, timeout, unused_tone_error, unused_tone_error_mask)[source]

Fetches the unused tone error trace and the unused tone error mask trace. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the unused tone error computed for each averaging count.

Use “segment<n>/chain<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, segment number, and chain number.

    Example:

    ”segment0/chain0”

    ”result::r1/segment0/chain0”

    You can use the build_chain_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • unused_tone_error (numpy.float32) – This parameter returns an array of unused tone error for each RU. This value is expressed in dB.

  • unused_tone_error_mask (numpy.float32) – This parameter returns an array of unused tone error for each RU. This value is expressed in dB.

Returns:

x0 (float):

This parameter returns the starting RU index. This value is always 0.

dx (float):

This parameter returns the RU increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_user_data_constellation_trace(selector_string, timeout, user_data_constellation)[source]

Fetches the constellation trace for the data-subcarriers of each user.

Use “user<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, user number, and stream number.

    Example:

    ”user0/stream0”

    ”result::r1/user0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • user_data_constellation (numpy.complex64) – This parameter returns the demodulated QAM symbols from all the data-subcarriers in all of the OFDM symbols for each user.

Returns:

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

int

fetch_user_pilot_constellation_trace(selector_string, timeout, user_pilot_constellation)[source]

Fetches the constellation trace for the pilot-subcarriers of each user.

Use “user<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, user number, and stream number.

    Example:

    ”user0/stream0”

    ”result::r1/user0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • user_pilot_constellation (numpy.complex64) – This parameter returns the demodulated QAM symbols from all the pilot-subcarriers in all of the OFDM symbols for each user.

Returns:

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

int

fetch_user_power(selector_string, timeout)[source]

Fetches the user power.

Use “user<n>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, and user number.

    Example:

    ”user0”

    ”result::r1/user0”

    You can use the build_user_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

user_power_mean (float):

This parameter returns the user power. User power is the frequency domain power measured over subcarriers occupied by a given user. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the user power results computed for each averaging count. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (user_power_mean, error_code)

fetch_user_stream_data_rms_evm_per_symbol_mean_trace(selector_string, timeout, user_stream_data_rms_evm_per_symbol_mean)[source]

Fetches the stream data-subcarriers RMS EVM per symbol trace for each user. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the user stream data RMS EVM per symbol computed for each averaging count.

Use “user<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, user number, and stream number.

    Example:

    ”user0/stream0”

    ”result::r1/user0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • user_stream_data_rms_evm_per_symbol_mean (numpy.float32) – This parameter returns the stream data subcarriers RMS EVM of each OFDM symbol for each user. This value is expressed as a percentage or in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_user_stream_pilot_rms_evm_per_symbol_mean_trace(selector_string, timeout, user_stream_pilot_rms_evm_per_symbol_mean)[source]

Fetches the stream pilot-subcarriers RMS EVM per symbol trace for each user.

Use “user<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, user number, and stream number.

    Example:

    ”user0/stream0”

    ”result::r1/user0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • user_stream_pilot_rms_evm_per_symbol_mean (numpy.float32) – This parameter returns the stream pilot subcarriers RMS EVM of each OFDM symbol for each user. This value is expressed as a percentage or in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_user_stream_rms_evm(selector_string, timeout)[source]

Fetches the stream RMS EVM results for the specified user.

Use “user<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, user number, and stream number.

    Example:

    ”user0/stream0”

    ”result::r1/user0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

Returns:

user_stream_rms_evm_mean (float):

This parameter returns the RMS EVM of all subcarriers in all OFDM symbols for the specified user. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB. When you set the AVERAGING_ENABLED attribute to True, this parameter returns the mean of the user stream RMS EVM computed for each averaging count.

user_stream_data_rms_evm_mean (float):

This parameter returns the RMS EVM of data-subcarriers in all OFDM symbols for the specified user. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the user stream data RMS EVM computed for each averaging count.

user_stream_pilot_rms_evm_mean (float):

This parameter returns the RMS EVM of pilot-subcarriers in all OFDM symbols for the specified user. When you set the EVM_UNIT attribute to Percentage, the measurement returns this result as a percentage. When you set the OFDMModAcc EVM Unit attribute to dB, the measurement returns this result in dB. When you set the OFDMModAcc Averaging Enabled attribute to True, this parameter returns the mean of the user stream pilot RMS EVM computed for each averaging count.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (user_stream_rms_evm_mean, user_stream_data_rms_evm_mean, user_stream_pilot_rms_evm_mean, error_code)

fetch_user_stream_rms_evm_per_subcarrier_mean_trace(selector_string, timeout, user_stream_rms_evm_per_subcarrier_mean)[source]

Fetches the stream RMS EVM per subcarrier trace for each user. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the user stream RMS EVM per subcarrier computed for each averaging count.

Use “user<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, user number, and stream number.

    Example:

    ”user0/stream0”

    ”result::r1/user0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • user_stream_rms_evm_per_subcarrier_mean (numpy.float32) – This parameter returns the user stream RMS EVM for each subcarrier. This value is expressed as a percentage or in dB.

Returns:

x0 (float):

This parameter returns the starting subcarrier index.

dx (float):

This parameter returns the subcarrier increment value. This value is always 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

fetch_user_stream_rms_evm_per_symbol_mean_trace(selector_string, timeout, user_stream_rms_evm_per_symbol_mean)[source]

Fetches the stream RMS EVM per symbol trace for each user. When you set the AVERAGING_ENABLED attribute to True, this method returns the mean of the user stream RMS EVM per symbol computed for each averaging count.

Use “user<n>/stream<k>” as the selector string to read results from this method.

Parameters:
  • selector_string (string) –

    This parameter specifies a Selector String comprising of result name, user number, and stream number.

    Example:

    ”user0/stream0”

    ”result::r1/user0/stream0”

    You can use the build_stream_string() method to build the selector string.

  • timeout (float) – This parameter specifies the timeout for fetching the specified measurement. Set this value to an appropriate time, longer than expected for fetching the measurement. A value of -1 specifies that the method waits until the measurement is complete. This value is expressed in seconds. The default value is 10.

  • user_stream_rms_evm_per_symbol_mean (numpy.float32) – This parameter returns the stream RMS EVM of each OFDM symbol for each user. This value is expressed as a percentage or in dB.

Returns:

x0 (float):

This parameter returns the starting OFDM symbol index corresponding to the value of MEASUREMENT_OFFSET attribute.

dx (float):

This parameter returns the OFDM symbol increment value. This value is always equal to 1.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (x0, dx, error_code)

get_2xldpc_enabled(selector_string)[source]

Gets whether 2xLDPC is enabled for a specified user.

Use “user<n>” as the Selector String to read this result for 802.11bn MU and TB PPDU signals.

Name (Value)

Description

False (0)

Indicates that 2xLDPC is disabled for the specified user.

True (1)

Indicates that 2xLDPC is enabled for the specified user.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAcc2xLdpcEnabled):

Returns whether 2xLDPC is enabled for a specified user.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_absolute_iq_origin_offset_mean(selector_string)[source]

Gets the absolute I/Q origin offset, which is the power of the DC subcarrier. This value is expressed in dBm.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the absolute I/Q origin offset computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the absolute I/Q origin offset, which is the power of the DC subcarrier. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_aggregation(selector_string)[source]

Gets the value of the Aggregation field as decoded from the high-throughput signal (HT-SIG) field of 802.11n signal.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the value of the Aggregation field as decoded from the high-throughput signal (HT-SIG) field of 802.11n signal.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_burst_start_time_mean(selector_string)[source]

Gets the absolute time corresponding to the detected start of the analyzed burst. The start time is computed with respect to the initial time value of the acquired waveform. This value is expressed in seconds.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the burst start time computed for each averaging count.

Use “segment<n>/chain<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the absolute time corresponding to the detected start of the analyzed burst. The start time is computed with respect to the initial time value of the acquired waveform. This value is expressed in seconds.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_chain_data_rms_evm_mean(selector_string)[source]

Gets the chain RMS EVM of data subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of data chain RMS EVM results computed for each averaging count.

Use “segment<n>/chain<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the chain RMS EVM of data subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_chain_pilot_rms_evm_mean(selector_string)[source]

Gets the chain RMS EVM of pilot subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of pilot chain RMS EVM results computed for each averaging count.

Use “segment<n>/chain<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the chain RMS EVM of pilot subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_chain_rms_evm_maximum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_chain_rms_evm_mean(selector_string)[source]

Gets the chain RMS EVM of all subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of chain RMS EVM results computed for each averaging count.

Use “segment<n>/chain<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the chain RMS EVM of all subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_chain_rms_evm_minimum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_composite_data_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of data-subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of data RMS EVM results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of data-subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_composite_pilot_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of pilot-subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute is set to True, this attribute returns the mean of pilot RMS EVM results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of pilot-subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_composite_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of all subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of RMS EVM results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of all subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_cross_power_mean(selector_string)[source]

Gets the cross power. The cross power for chain x is the power contribution from streams other than stream x in the chain. This value is expressed in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the cross power results computed for each averaging count.

Use “segment<n>/chain<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the cross power. The cross power for chain x is the power contribution from streams other than stream x in the chain. This value is expressed in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_custom_gate_average_power_mean(selector_string)[source]

Gets the average power of the custom gate. This value is expressed in dBm.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the custom gate average power results computed for each averaging count.

Use “gate<n>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the custom gate. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_custom_gate_peak_power_maximum(selector_string)[source]

Gets the peak power of the custom gate. This value is expressed in dBm.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the custom gate peak power results computed for each averaging count.

Use “gate<n>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the custom gate. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_data_average_power_mean(selector_string)[source]

Gets the average power of the data field. This value is expressed in dBm.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the data field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the data field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_data_peak_power_maximum(selector_string)[source]

Gets the peak power of the data field. This value is expressed in dBm.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the data field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the data field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_dcm_enabled(selector_string)[source]

Gets whether DCM is enabled for a specified user.

Use “user<n>” as the Selector String to read this result for 802.11ax MU and TB PPDU signals.

Name (Value)

Description

False (0)

Indicates that DCM is disabled for the specified user.

True (1)

Indicates that DCM is enabled for the specified user.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccDcmEnabled):

Returns whether DCM is enabled for a specified user.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_distribution_bandwidth(selector_string)[source]

Gets the bandwidth across which RU Subcarriers are distributed for a user.

This result is applicable for 802.11bn TB PPDU signals when RU Type is dRU. For 802.11bn TB PPDU signals, this attribute returns the same value as the OFDM_DISTRIBUTION_BANDWIDTH attribute.

Use “user<n>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the bandwidth across which RU Subcarriers are distributed for a user.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_eht_ltf_average_power_mean(selector_string)[source]

Gets the average power of the EHT-LTF field. This value is expressed in dBm.

This result is applicable only to 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the EHT-LTF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the EHT-LTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_eht_ltf_peak_power_maximum(selector_string)[source]

Gets the peak power of the EHT-LTF field. This value is expressed in dBm.

This result is applicable only to 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the EHT-LTF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the EHT-LTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_eht_sig_average_power_mean(selector_string)[source]

Gets the average power of the EHT-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the EHT-SIG field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the EHT-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_eht_sig_crc_status(selector_string)[source]

Gets whether the cyclic redundancy check (CRC) has passed for the EHT-SIG field of the 802.11be waveform.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Name (Value)

Description

Not Applicable (-1)

Returns that the EHT-SIG CRC is invalid for the current waveform.

Fail (0)

Returns that the EHT-SIG CRC failed.

Pass (1)

Returns that the EHT-SIG CRC passed.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccEhtSigCrcStatus):

Returns whether the cyclic redundancy check (CRC) has passed for the EHT-SIG field of the 802.11be waveform.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_eht_sig_peak_power_maximum(selector_string)[source]

Gets the peak power of the EHT-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the EHT-SIG field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the EHT-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_eht_sig_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of subcarriers in the EHT-SIG symbol. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of RMS EVM results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of subcarriers in the EHT-SIG symbol. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_eht_stf_average_power_mean(selector_string)[source]

Gets the average power of the EHT-STF field. This value is expressed in dBm.

This result is applicable only to 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the EHT-STF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the EHT-STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_eht_stf_peak_power_maximum(selector_string)[source]

Gets the peak power of the EHT-STF field. This value is expressed in dBm.

This result is applicable only to 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the EHT-STF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the EHT-STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_elr_mark_average_power_mean(selector_string)[source]

Gets the average power of the ELR-MARK field. This value is expressed in dBm.

This result is applicable only to 802.11bn signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the ELR-MARK field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the ELR-MARK field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_elr_mark_peak_power_maximum(selector_string)[source]

Gets the peak power of the ELR-MARK field. This value is expressed in dBm.

This result is applicable only to 802.11bn signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the ELR-MARK field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the ELR-MARK field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_elr_sig_average_power_mean(selector_string)[source]

Gets the average power of the ELR-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11bn signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the ELR-SIG field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the ELR-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_elr_sig_crc_status(selector_string)[source]

Gets whether the cyclic redundancy check (CRC) has passed for the ELR-SIG field of the 802.11bn waveform.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Name (Value)

Description

Not Applicable (-1)

Returns that the ELR-SIG CRC is invalid for the current waveform.

Fail (0)

Returns that the ELR-SIG CRC failed.

Pass (1)

Returns that the ELR-SIG CRC passed.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccElrSigCrcStatus):

Returns whether the cyclic redundancy check (CRC) has passed for the ELR-SIG field of the 802.11bn waveform.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_elr_sig_peak_power_maximum(selector_string)[source]

Gets the peak power of the ELR-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11bn signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the ELR-SIG field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the ELR-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_elr_sig_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of subcarriers in the ELR-SIG symbol. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of RMS EVM results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of subcarriers in the ELR-SIG symbol. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_fec_coding_type(selector_string)[source]

Gets the FEC coding type for a specified user.

Use “user<n>” as the Selector String to read this result for MU and TB PPDU signals.

Name (Value)

Description

BCC (0)

Indicates that the FEC coding type is BCC.

LDPC (1)

Indicates that the FEC coding type is LDPC.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccFecCodingType):

Returns the FEC coding type for a specified user.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_frequency_error_ccdf_10_percent(selector_string)[source]

Gets the 10% point of Complementary Cumulative Distribution Function (CCDF) of the absolute frequency error. This value is expressed in Hz.

When you set the AVERAGING_ENABLED attribute to True, the CCDF is computed over each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the 10% point of Complementary Cumulative Distribution Function (CCDF) of the absolute frequency error. This value is expressed in Hz.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_frequency_error_maximum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_frequency_error_mean(selector_string)[source]

Gets the carrier frequency error of the transmitter. This value is expressed in Hz.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the carrier frequency error results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the carrier frequency error of the transmitter. This value is expressed in Hz.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_frequency_error_minimum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_guard_interval_type(selector_string)[source]

Gets the size of the guard interval of OFDM symbols.

This result is always 1/4 for 802.11a, 802.11j, and 802.11p signals. The value is decoded for various standards as follows:

Standards

Fields

802.11n

The guard interval type is decoded from HT-SIG field.

802.11ac

The guard interval type is decoded from VHT-SIG-A field.

802.11ax

The guard interval type is decoded from HE-SIG-A field.

802.11be

The guard interval type is decoded from EHT-SIG field.

802.11bn

The guard interval type is decoded from UHR-SIG field.

For 802.11ax, 802.11be, or 802.11bn TB PPDU signals, the attribute returns the same value as the OFDM_GUARD_INTERVAL_TYPE attribute.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Name (Value)

Description

1/4 (0)

The Guard interval is 1/4th of the IFFT duration.

1/8 (1)

The Guard interval is 1/8th of the IFFT duration.

1/16 (2)

The Guard interval is 1/16th of the IFFT duration.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmGuardIntervalType):

Returns the size of the guard interval of OFDM symbols.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_he_ltf_average_power_mean(selector_string)[source]

Gets the average power of the HE-LTF field. This value is expressed in dBm.

This result is applicable only to 802.11ax signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the HE-LTF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the HE-LTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_he_ltf_peak_power_maximum(selector_string)[source]

Gets the peak power of the HE-LTF field. This value is expressed in dBm.

This result is applicable only to 802.11ax signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the HE-LTF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the HE-LTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_he_sig_a_average_power_mean(selector_string)[source]

Gets the average power of the HE-SIG-A field. This value is expressed in dBm.

This result is applicable only to 802.11ax signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the HE-SIG-A field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the HE-SIG-A field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_he_sig_a_peak_power_maximum(selector_string)[source]

Gets the peak power of the HE-SIG-A field. This value is expressed in dBm.

This result is applicable only to 802.11ax signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the HE-SIG-A field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the HE-SIG-A field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_he_sig_b_average_power_mean(selector_string)[source]

Gets the average power of the HE-SIG-B field. This value is expressed in dBm.

This result is applicable only to 802.11ax signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the HE-SIG-B field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the HE-SIG-B field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_he_sig_b_peak_power_maximum(selector_string)[source]

Gets the peak power of the HE-SIG-B field. This value is expressed in dBm.

This result is applicable only to 802.11ax signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the HE-SIG-B field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the HE-SIG-B field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_he_stf_average_power_mean(selector_string)[source]

Gets the average power of the HE-STF field. This value is expressed in dBm.

This result is applicable only to 802.11ax signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the HE-STF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the HE-STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_he_stf_peak_power_maximum(selector_string)[source]

Gets the peak power of the HE-STF field. This value is expressed in dBm.

This result is applicable only to 802.11ax signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the HE-STF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the HE-STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ht_dltf_average_power_mean(selector_string)[source]

Gets the average power of the HT-DLTF. This value is expressed in dBm.

This result is applicable only to 802.11n signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the HT-DLTF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the HT-DLTF. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ht_dltf_peak_power_maximum(selector_string)[source]

Gets the peak power of the HT-DLTF field. This value is expressed in dBm.

This result is applicable only to 802.11n signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the HT-DLTF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the HT-DLTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ht_eltf_average_power_mean(selector_string)[source]

Gets the average power of the HT-ELTF field. This value is expressed in dBm.

This result is applicable only to 802.11n signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the HT-ELTF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the HT-ELTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ht_eltf_peak_power_maximum(selector_string)[source]

Gets the peak power of the HT-ELTF field. This value is expressed in dBm.

This result is applicable only to 802.11n signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the HT-ELTF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the HT-ELTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ht_sig_average_power_mean(selector_string)[source]

Gets the average power of the HT-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11n signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the HT-SIG field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the HT-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ht_sig_peak_power_maximum(selector_string)[source]

Gets the peak power of the HT-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11n signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the HT-SIG field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the HT-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ht_stf_average_power_mean(selector_string)[source]

Gets the average power of the HT-STF field. This value is expressed in dBm.

This result is applicable only to 802.11n signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the HT-STF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the HT-STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ht_stf_peak_power_maximum(selector_string)[source]

Gets the peak power of the HT-STF field. This value is expressed in dBm.

This result is applicable only to 802.11n signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the HT-STF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the HT-STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_htgf_stf_average_power_mean(selector_string)[source]

Gets the average power of the HT-GF-STF. This value is expressed in dBm.

This result is applicable only to 802.11n greenfield PPDU signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the HT-GF-STF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the HT-GF-STF. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_htgf_stf_peak_power_maximum(selector_string)[source]

Gets the peak power of the HT-GF-STF. This value is expressed in dBm.

This result is applicable only to 802.11n greenfield PPDU signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the HT-GF-STF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the HT-GF-STF. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_im_pilots_enabled(selector_string)[source]

Gets whether interference mitigating pilots are present.

This result is applicable only to 802.11bn MU PPDU signals.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Name (Value)

Description

False (0)

Indicates that interference mitigating pilots are absent.

True (1)

Indicates that interference mitigating pilots are present.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccIMPilotsEnabled):

Returns whether interference mitigating pilots are present.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_iq_gain_imbalance_maximum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_iq_gain_imbalance_mean(selector_string)[source]

Gets the I/Q gain imbalance, which is the ratio of the RMS amplitude of the in-phase (I) component of the signal to the RMS amplitude of the quadrature-phase (Q) component of the signal. This value is expressed in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the I/Q gain imbalance results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the I/Q gain imbalance, which is the ratio of the RMS amplitude of the in-phase (I) component of the signal to the RMS amplitude of the quadrature-phase (Q) component of the signal. This value is expressed in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_iq_gain_imbalance_minimum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_iq_quadrature_error_maximum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_iq_quadrature_error_mean(selector_string)[source]

Gets the I/Q quadrature error, which is a measure of deviation of the phase difference between the quadrature-phase (Q) and the in-phase (I) component of the signal from 90 degrees. This value is expressed in degrees.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the I/Q quadrature error results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the I/Q quadrature error, which is a measure of deviation of the phase difference between the quadrature-phase (Q) and the in-phase (I) component of the signal from 90 degrees. This value is expressed in degrees.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_iq_quadrature_error_minimum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_iq_timing_skew_mean(selector_string)[source]

Gets the I/Q timing skew, which is the difference between the group delay of the in-phase (I) and quadrature (Q) components of the signal. This value is expressed in seconds.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the I/Q timing skew computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the I/Q timing skew, which is the difference between the group delay of the in-phase (I) and quadrature (Q) components of the signal. This value is expressed in seconds.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_l_ltf_average_power_mean(selector_string)[source]

Gets the average power of the L-LTF or LTF field. This value is expressed in dBm.

This result is not applicable for 802.11n Greenfield PPDU signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the L-LTF or LTF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the L-LTF or LTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_l_ltf_peak_power_maximum(selector_string)[source]

Gets the peak power of the L-LTF or LTF field. This value is expressed in dBm.

This result is not applicable for 802.11n Greenfield PPDU signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the L-LTF or LTF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the L-LTF or LTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_l_sig_average_power_mean(selector_string)[source]

Gets the average power of the L-SIG or SIGNAL field. This value is expressed in dBm.

This result is not applicable for 802.11n Greenfield PPDU signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the L-SIG or SIGNAL field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the L-SIG or SIGNAL field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_l_sig_parity_check_status(selector_string)[source]

Gets whether the parity check has passed either for the SIGNAL field of the 802.11a/g waveform or for the L-SIG field of the 802.11n/802.11ac/802.11ax/802.11be/802.11bn waveforms.

You do not need to use a selector string to configure or read this attribute for the default signal instance. Refer to the Selector String topic for information about the string syntax for named signals.

Name (Value)

Description

Not Applicable (-1)

Returns that the parity check is invalid for the current waveform.

Fail (0)

Returns that the parity check failed.

Pass (1)

Returns that the parity check passed.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccLSigParityCheckStatus):

Returns whether the parity check has passed either for the SIGNAL field of the 802.11a/g waveform or for the L-SIG field of the 802.11n/802.11ac/802.11ax/802.11be/802.11bn waveforms.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_l_sig_peak_power_maximum(selector_string)[source]

Gets the peak power of the L-SIG or SIGNAL field. This value is expressed in dBm.

This result is not applicable for 802.11n Greenfield PPDU signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the L-SIG or SIGNAL field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the L-SIG or SIGNAL field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_l_sig_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of subcarriers in the L-SIG symbol. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of RMS EVM results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of subcarriers in the L-SIG symbol. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_l_stf_average_power_mean(selector_string)[source]

Gets the average power of the L-STF or STF field. This value is expressed in dBm.

This result is not applicable for 802.11n greenfield PPDU signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the L-STF or STF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the L-STF or STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_l_stf_peak_power_maximum(selector_string)[source]

Gets the peak power of the L-STF or STF field. This value is expressed in dBm.

This result is not applicable for 802.11n Greenfield PPDU signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the L-STF or STF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the L-STF or STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ltf_size(selector_string)[source]

Gets the HE-LTF size, EHT-LTF or UHR-LTF size when you set the STANDARD attribute to 802.11ax, 802.11be, or 802.11bn, respectively.

This result is applicable only to 802.11ax, 802.11be and 802.11bn signals. This value is decoded from the HE-SIG-A field when you set the Standard attribute to 802.11ax, from the EHT-SIG field when you set the Standard attribute to 802.11be, and from the UHR-SIG field when you set the Standard attribute to 802.11bn.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Name (Value)

Description

Not Applicable (-1)

Indicates that the LTF Size is invalid for the current waveform.

4x (0)

Indicates that the LTF Size is 4x.

2x (1)

Indicates that the LTF Size is 2x.

1x (2)

Indicates that the LTF Size is 1x.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmLtfSize):

Returns the HE-LTF size, EHT-LTF or UHR-LTF size when you set the STANDARD attribute to 802.11ax, 802.11be, or 802.11bn, respectively.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_mcs_index(selector_string)[source]

Gets the MCS index or the data rate of the measured signal.

The MCS index or data rate for various standard signals are decoded as follows:

Standard

Field

802.11a, 802.11j, 802.11p

The data rate is decoded from the SIGNAL field.

802.11n

The MCS index is decoded from the HT-SIG field.

802.11ac SU

The MCS index is decoded from the VHT-SIG-A field.

802.11ac MU

The MCS index is decoded from the VHT-SIG-B field.

802.11ax SU and Extended Range SU PPDU

The MCS index is decoded from the HE-SIG-A field.

802.11ax MU PPDU

The MCS index is decoded from the HE-SIG-B field.

802.11be MU PPDU

The MCS index is decoded from the EHT-SIG field.

802.11bn MU PPDU

The MCS index is decoded from the UHR-SIG field.

802.11bn ELR PPDU

The MCS index is decoded from the ELR-SIG field.

For 802.11a, 802.11j, and 802.11p signals, the following MCS indices corresponds to their data rates:

MCS

Data Rate

0

1.5 Mbps, 3 Mbps, and 6 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

1

2.25 Mbps, 4.5 Mbps, and 9 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

2

3 Mbps, 6 Mbps, and 12 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

3

4.5 Mbps, 9 Mbps, and 18 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

4

6 Mbps, 12 Mbps, and 24 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

5

9 Mbps, 18 Mbps, and 36 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

6

12 Mbps, 24 Mbps, and 48 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

7

13.5 Mbps, 27 Mbps, and 54 Mbps for channel bandwidths of 5 MHz, 10 MHz, and 20 MHz, respectively.

For 802.11ax, 802.11be or 802.11bn TB PPDU signals, this attribute returns the same value as the OFDM_MCS_INDEX attribute.

Use “user<n>” as the Selector String to read this result for MU PPDU signals.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the MCS index or the data rate of the measured signal.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_noise_compensation_applied(selector_string)[source]

Gets whether the noise compensation is applied.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Name (Value)

Description

False (0)

Noise compensation is not applied.

True (1)

Noise compensation is applied.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccNoiseCompensationApplied):

Returns whether the noise compensation is applied.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_number_of_he_sig_b_symbols(selector_string)[source]

Gets the number of HE-SIG-B symbols.

This result is applicable only to 802.11ax MU PPDU signals, and is decoded from the HE-SIG-A field.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the number of HE-SIG-B symbols.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_number_of_sig_symbols(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_number_of_space_time_streams(selector_string)[source]

Gets the number of space time streams.

The value is decoded for various standards as follows:

Standard

Derivation

802.11n

Derived from the MCS field and STBC field of the HT-SIG.

802.11ac

Derived from the NSTS field of the VHT-SIG-A.

802.11ax

Derived from the HE-SIG-A for HE SU PPDU and HE Extended Range PPDU. Derived from the HE-SIG-B for HE MU PPDU.

802.11be

Derived from the EHT-SIG for EHT MU PPDU.

802.11bn

Derived from the UHR-SIG for UHR MU PPDU.

For all other configurations, the attribute returns the value of 1.

Use “user<n>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the number of space time streams.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_number_of_symbols_used(selector_string)[source]

Gets the number of OFDM symbols used by the measurement.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the number of OFDM symbols used by the measurement.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_number_of_users(selector_string)[source]

Gets the number of users.

For 802.11ac MU PPDU signals, this value is decoded from the VHT-SIG-A field. For 802.11ax MU PPDU signals, this value is derived from the HE-SIG-B field. For 802.11be MU PPDU signals, this value is decoded from the EHT-SIG field. For 802.11bn MU PPDU signals, this value is decoded from the UHR-SIG field.

For all other PPDUs, this attribute returns 1.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the number of users.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_pe_average_power_mean(selector_string)[source]

Gets the average power of the packet extension field. This value is expressed in dBm.

This result is applicable for 802.11ax and 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the packet extension field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the packet extension field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_pe_duration(selector_string)[source]

Gets the duration of the packet extension field for the 802.11ax, 802.11be and 802.11bn signals. This value is expressed in seconds.

This result is applicable only when you set the OFDM_HEADER_DECODING_ENABLED attribute to True.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the duration of the packet extension field for the 802.11ax, 802.11be and 802.11bn signals. This value is expressed in seconds.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_pe_peak_power_maximum(selector_string)[source]

Gets the peak power of the packet extension field. This value is expressed in dBm.

This result is applicable only to 802.11ax and 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the PE field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the packet extension field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_phase_rotation_coefficient_1(selector_string)[source]

Gets the phase rotation coefficient 1 as defined in IEEE Standard P802.11be/D7.0.

This attribute returns detected value when you set the OFDM_AUTO_PHASE_ROTATION_DETECTION_ENABLED attribute to True.

You do not need to use a selector string to configure or read this attribute for the default signal instance. Refer to the Selector String topic for information about the string syntax for named signals.

Name (Value)

Description

+1 (0)

Specifies that phase rotation coefficient 1 is +1.

-1 (1)

Specifies that phase rotation coefficient 1 is –1.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccPhaseRotationCoefficient1):

Specifies the phase rotation coefficient 1 as defined in IEEE Standard P802.11be/D7.0.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_phase_rotation_coefficient_2(selector_string)[source]

Gets the phase rotation coefficient 2 as defined in IEEE Standard P802.11be/D7.0.

This attribute returns detected value when you set the OFDM_AUTO_PHASE_ROTATION_DETECTION_ENABLED attribute to True.

You do not need to use a selector string to configure or read this attribute for the default signal instance. Refer to the Selector String topic for information about the string syntax for named signals.

Name (Value)

Description

+1 (0)

Specifies that phase rotation coefficient 2 is +1.

-1 (1)

Specifies that phase rotation coefficient 2 is –1.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccPhaseRotationCoefficient2):

Specifies the phase rotation coefficient 2 as defined in IEEE Standard P802.11be/D7.0.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_phase_rotation_coefficient_3(selector_string)[source]

Gets the phase rotation coefficient 3 as defined in IEEE Standard P802.11be/D7.0.

This attribute returns detected value when you set the OFDM_AUTO_PHASE_ROTATION_DETECTION_ENABLED attribute to True.

You do not need to use a selector string to configure or read this attribute for the default signal instance. Refer to the Selector String topic for information about the string syntax for named signals.

Name (Value)

Description

+1 (0)

Specifies that phase rotation coefficient 3 is +1.

-1 (1)

Specifies that phase rotation coefficient 3 is –1.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccPhaseRotationCoefficient3):

Specifies the phase rotation coefficient 3 as defined in IEEE Standard P802.11be/D7.0.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ppdu_average_power_mean(selector_string)[source]

Gets the average power of the PPDU. This value is expressed in dBm.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the PPDU average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the PPDU. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ppdu_peak_power_maximum(selector_string)[source]

Gets the peak power of the PPDU. This value is expressed in dBm.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the PPDU peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the PPDU. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ppdu_type(selector_string)[source]

Gets the PPDU type of the measured signal.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Name (Value)

Description

Non-HT (0)

Indicates an 802.11a, 802.11j, or 802.11p PPDU, or 802.11n, 802.11ac, or 802.11ax PPDU operating in the Non-HT mode.

Mixed (1)

Indicates the HT-mixed PPDU (802.11n).

Greenfield (2)

Applicable HT-Greenfield PPDU (802.11n).

SU (3)

Indicates the VHT SU PPDU if you set the Standard attribute to 802.11ac or the HE SU PPDU if you set the Standard attribute to 802.11ax.

MU (4)

Indicates the VHT MU PPDU if you set the Standard attribute to 802.11ac, the HE MU PPDU if you set the Standard attribute to 802.11ax, the EHT MU PPDU if you set the Standard attribute to 802.11be, or the UHR MU PPDU if you set the Standard attribute to 802.11bn.

Extended Range SU (5)

Indicates the HE Extended Range SU PPDU (802.11ax).

Trigger-based (6)

Indicates the HE TB PPDU if you set the Standard attribute to 802.11ax, the EHT TB PPDU if you set the Standard attribute to 802.11be, or the UHR TB PPDU if you set the Standard attribute to 802.11bn.

ELR (7)

Indicates the UHR Enhanced Long Range PPDU (802.11bn).

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmPpduType):

Returns the PPDU type of the measured signal.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_psdu_crc_status(selector_string)[source]

Indicates whether the cyclic redundancy check (CRC) of the received decoded PLCP service data unit (PSDU) has passed.

The measurement calculates the CRC over the decoded bits, excluding the last 32 bits of each MAC Protocol Data Unit (MPDU). The measurement first compares this value with the CRC value in the received payload, which is represented by the last 32 bits of the MPDU and then aggregates the values.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Name (Value)

Description

Fail (0)

Indicates that the PSDU CRC failed.

Pass (1)

Indicates that the PSDU CRC passed.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccPsduCrcStatus):

Indicates whether the cyclic redundancy check (CRC) of the received decoded PLCP service data unit (PSDU) has passed.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_relative_iq_origin_offset_maximum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_relative_iq_origin_offset_mean(selector_string)[source]

Gets the relative I/Q origin offset, which is the ratio of the power of the DC subcarrier to the total power of all the subcarriers. This value is expressed in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the relative I/Q origin offset computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the relative I/Q origin offset, which is the ratio of the power of the DC subcarrier to the total power of all the subcarriers. This value is expressed in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_relative_iq_origin_offset_minimum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_rl_sig_average_power_mean(selector_string)[source]

Gets the average power of the RL-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11ax and 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the RL-SIG field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the RL-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_rl_sig_peak_power_maximum(selector_string)[source]

Gets the peak power of the RL-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11ax and 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the RL-SIG field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the RL-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_rms_common_phase_error_mean(selector_string)[source]

Gets the RMS common phase error.

Common phase error for an OFDM symbol is the average phase deviation of the pilot-subcarriers from their ideal phase. RMS Common Phase Error is the RMS of common phase error of all OFDM symbols. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the RMS common phase error computed for each averaging count.

Refer to Common Pilot Error for more information.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS common phase error.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_rms_common_pilot_error_mean(selector_string)[source]

Gets the RMS common pilot error. This value is expressed as a percentage.

Common pilot error for an OFDM symbol is the correlation of the received pilot subcarrier QAM symbols with their ideal values. RMS Common Pilot Error is the RMS of 1 minus common pilot error for all OFDM symbols. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the RMS common pilot error computed for each averaging count.

Refer to Common Pilot Error for more information.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS common pilot error. This value is expressed as a percentage.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ru_offset_mru_index(selector_string)[source]

Gets the location of RU or MRU for a user. If an RU is detected, the RU Offset is in terms of the index of a 26-tone RU, assuming the entire bandwidth is composed of 26-tone RUs. If an MRU is detected, the MRU Index is as defined in the Table 36-8 to Table 36-15 of IEEE P802.11be/D7.0.

This result is applicable for 802.11ax MU and TB PPDU signals, and 802.11be MU and TB PPDU signals. For 802.11ax MU PPDU signals, this value is decoded from the HE-SIG-B field. For 802.11be MU PPDU signals, this value is decoded from the EHT-SIG field. For 802.11ax or 802.11be TB PPDU signals, this attribute returns the same value as the OFDM_RU_OFFSET_MRU_INDEX attribute.

Use “user<n>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the location of RU or MRU for a user. If an RU is detected, the RU Offset is in terms of the index of a 26-tone RU, assuming the entire bandwidth is composed of 26-tone RUs. If an MRU is detected, the MRU Index is as defined in the Table 36-8 to Table 36-15 of IEEE P802.11be/D7.0.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ru_size(selector_string)[source]

Gets the RU or the MRU size.

This result is applicable for 802.11ax MU, extended range SU, and TB PPDU signals, 802.11be MU and TB PPDU signals, and 802.11bn MU and TB PPDU signals. For 802.11ax MU PPDU signals, this value is decoded from the HE-SIG-B field. For 802.11ax extended range SU PPDU signals, this value is decoded from the HE-SIG-A field. For 802.11be MU PPDU signals, this value is decoded from the EHT-SIG field. For 802.11bn MU PPDU signals, this value is decoded from the UHR-SIG field. For 802.11ax, 802.11be or 802.11bn TB PPDU signals, this attribute returns the same value as the OFDM_RU_SIZE attribute.

Use “user<n>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the RU or the MRU size.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_ru_type(selector_string)[source]

Gets the type of RU for a user.

This result is applicable for 802.11bn TB PPDU signals. For 802.11bn TB PPDU signals, this attribute returns the same value as the OFDM_RU_TYPE attribute.

Use “user<n>” as the Selector String to read this result.

Name (Value)

Description

rRU (0)

The RU type is rRU.

dRU (1)

The RU type is dRU.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccRUType):

Returns the type of RU for a user.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_scrambler_seed(selector_string)[source]

Gets the detected initial state of the scrambler, which is used to scramble the data bits in the device under test (DUT). RFmx uses the same seed to descramble the received bit-sequence.

Use “user<n>” as the Selector String to read this result for MU PPDU signals.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the detected initial state of the scrambler, which is used to scramble the data bits in the device under test (DUT). RFmx uses the same seed to descramble the received bit-sequence.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_sig_b_crc_status(selector_string)[source]

Gets whether the cyclic redundancy check (CRC) has passed for the HE-SIG-B field of the 802.11ax MU PPDU waveform.

You do not need to use a selector string to configure or read this attribute for the default signal instance. Refer to the Selector String topic for information about the string syntax for named signals.

Name (Value)

Description

Not Applicable (-1)

Returns that the SIG-B CRC is invalid for the current waveform.

Fail (0)

Returns that the SIG-B CRC failed.

Pass (1)

Returns that the SIG-B CRC passed.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccSigBCrcStatus):

Returns whether the cyclic redundancy check (CRC) has passed for the HE-SIG-B field of the 802.11ax MU PPDU waveform.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_sig_b_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of subcarriers in the SIG-B symbol. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of RMS EVM results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of subcarriers in the SIG-B symbol. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_sig_crc_status(selector_string)[source]

Gets whether the cyclic redundancy check (CRC) has passed either for the HT-SIG field of the 802.11n waveform, for the VHT-SIG-A field of the 802.11ac waveform, or for the HE-SIG-A field of the 802.11ax waveform.

You do not need to use a selector string to configure or read this attribute for the default signal instance. Refer to the Selector String topic for information about the string syntax for named signals.

Name (Value)

Description

Not Applicable (-1)

Returns that the SIG CRC is invalid for the current waveform.

Fail (0)

Returns that the SIG CRC failed.

Pass (1)

Returns that the SIG CRC passed.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccSigCrcStatus):

Returns whether the cyclic redundancy check (CRC) has passed either for the HT-SIG field of the 802.11n waveform, for the VHT-SIG-A field of the 802.11ac waveform, or for the HE-SIG-A field of the 802.11ax waveform.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_sig_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of subcarriers in the SIG symbol. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of RMS EVM results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of subcarriers in the SIG symbol. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_space_time_stream_offset(selector_string)[source]

Gets the space time stream offset. This attribute is applicable only to 802.11ac, 802.11ax, 802.11be, and 802.11bn signals.

Use “user<n>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the space time stream offset. This attribute is applicable only to 802.11ac, 802.11ax, 802.11be, and 802.11bn signals.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_spectral_flatness_margin(selector_string)[source]

Gets the spectral flatness margin, which is the minimum of the upper and lower spectral flatness margins. This value is expressed in dB.

The upper spectral flatness margin is the minimum difference between the upper mask and the spectral flatness across subcarriers. The lower spectral flatness margin is the minimum difference between the spectral flatness and the lower mask across subcarriers. When you set the AVERAGING_ENABLED attribute to True, the spectral flatness is computed using the mean of the channel frequency response magnitude computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the spectral flatness margin, which is the minimum of the upper and lower spectral flatness margins. This value is expressed in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_spectral_flatness_margin_maximum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_spectral_flatness_margin_minimum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_spectral_flatness_margin_subcarrier_index(selector_string)[source]

Gets the subcarrier index corresponding to the SPECTRAL_FLATNESS_MARGIN result.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the subcarrier index corresponding to the SPECTRAL_FLATNESS_MARGIN result.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_stream_data_rms_evm_mean(selector_string)[source]

Gets the stream RMS EVM of data subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of data stream RMS EVM results computed for each averaging count.

Use “segment<n>/stream<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the stream RMS EVM of data subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_stream_pilot_rms_evm_mean(selector_string)[source]

Gets the stream RMS EVM of pilot subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of pilot stream RMS EVM results computed for each averaging count.

Use “segment<n>/stream<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the stream RMS EVM of pilot subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_stream_power_mean(selector_string)[source]

Gets average stream power across iterations for combined signal demodulation. This is applicable only if COMBINED_SIGNAL_DEMODULATION_ENABLED is set to True.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of stream power results computed for each averaging count.

Use “segment<n>/stream<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns average stream power across iterations for combined signal demodulation. This is applicable only if COMBINED_SIGNAL_DEMODULATION_ENABLED is set to True.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_stream_rms_evm_maximum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_stream_rms_evm_mean(selector_string)[source]

Gets the stream RMS EVM of all subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of stream RMS EVM results computed for each averaging count.

Use “segment<n>/stream<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the stream RMS EVM of all subcarriers in all OFDM symbols. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_stream_rms_evm_minimum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_symbol_clock_error_maximum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_symbol_clock_error_mean(selector_string)[source]

Gets the symbol clock error of the transmitter.

Symbol clock error is the difference between the symbol clocks at the digital-to-analog converter (DAC) of the transmitting device under test (DUT) and the digitizer of the instrument. This value is expressed in parts per million (ppm).

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the symbol clock error results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the symbol clock error of the transmitter.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_symbol_clock_error_minimum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_u_sig_average_power_mean(selector_string)[source]

Gets the average power of the U-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the U-SIG field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the U-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_u_sig_crc_status(selector_string)[source]

Gets whether the cyclic redundancy check (CRC) has passed for the U-SIG field of the 802.11be or the 802.11bn waveform.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Name (Value)

Description

Not Applicable (-1)

Returns that the U-SIG CRC is invalid for the current waveform.

Fail (0)

Returns that the U-SIG CRC failed.

Pass (1)

Returns that the U-SIG CRC passed.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccUSigCrcStatus):

Returns whether the cyclic redundancy check (CRC) has passed for the U-SIG field of the 802.11be or the 802.11bn waveform.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_u_sig_peak_power_maximum(selector_string)[source]

Gets the peak power of the U-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11be signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the U-SIG field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the U-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_u_sig_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of subcarriers in the U-SIG symbol. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of RMS EVM results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of subcarriers in the U-SIG symbol. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_uhr_ltf_average_power_mean(selector_string)[source]

Gets the average power of the UHR-LTF field. This value is expressed in dBm.

This result is applicable only to 802.11bn signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the UHR-LTF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the UHR-LTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_uhr_ltf_peak_power_maximum(selector_string)[source]

Gets the peak power of the UHR-LTF field. This value is expressed in dBm.

This result is applicable only to 802.11bn signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the UHR-LTF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the UHR-LTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_uhr_sig_average_power_mean(selector_string)[source]

Gets the average power of the UHR-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11bn signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the UHR-SIG field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the UHR-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_uhr_sig_crc_status(selector_string)[source]

Gets whether the cyclic redundancy check (CRC) has passed for the UHR-SIG field of the 802.11bn waveform.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Name (Value)

Description

Not Applicable (-1)

Returns that the UHR-SIG CRC is invalid for the current waveform.

Fail (0)

Returns that the UHR-SIG CRC failed.

Pass (1)

Returns that the UHR-SIG CRC passed.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccUhrSigCrcStatus):

Returns whether the cyclic redundancy check (CRC) has passed for the UHR-SIG field of the 802.11bn waveform.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_uhr_sig_peak_power_maximum(selector_string)[source]

Gets the peak power of the UHR-SIG field. This value is expressed in dBm.

This result is applicable only to 802.11bn signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the UHR-SIG field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the UHR-SIG field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_uhr_sig_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of subcarriers in the UHR-SIG symbol. This value is expressed as a percentage or in dB.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of RMS EVM results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of subcarriers in the UHR-SIG symbol. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_uhr_stf_average_power_mean(selector_string)[source]

Gets the average power of the UHR-STF field. This value is expressed in dBm.

This result is applicable only to 802.11bn signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the UHR-STF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the UHR-STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_uhr_stf_peak_power_maximum(selector_string)[source]

Gets the peak power of the UHR-STF field. This value is expressed in dBm.

This result is applicable only to 802.11bn signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the UHR-STF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the UHR-STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_unequal_modulation_enabled(selector_string)[source]

Gets whether unequal modulation is enabled for a specified user.

Use “user<n>” as the Selector String to read this result for 802.11bn MU PPDU signals.

Name (Value)

Description

False (0)

Indicates that unequal modulation is disabled for the specified user.

True (1)

Indicates that unequal modulation is enabled for the specified user.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (enums.OfdmModAccUnequalModulationEnabled):

Returns whether unequal modulation is enabled for a specified user.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_unequal_modulation_pattern_index(selector_string)[source]

Gets unequal modulation pattern for a specified user.

Use “user<n>” as the Selector String to read this result for 802.11bn MU PPDU signals.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns unequal modulation pattern for a specified user.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_unused_tone_error_margin(selector_string)[source]

Gets the unused tone error margin, which is the minimum difference between the unused tone error mask and the unused tone error across 26-tone RUs. This value is expressed in dB.

This result is applicable only to 802.11ax, 802.11be and 802.11bn TB PPDU signals. When you set the AVERAGING_ENABLED attribute to True, the measurement computes the mean of the unused tone error over each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the unused tone error margin, which is the minimum difference between the unused tone error mask and the unused tone error across 26-tone RUs. This value is expressed in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_unused_tone_error_margin_ru_index(selector_string)[source]

Gets the 26-tone RU index corresponding to the UNUSED_TONE_ERROR_MARGIN result.

This result is applicable for 802.11ax, 802.11be and 802.11bn TB PPDU signals.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (int):

Returns the 26-tone RU index corresponding to the UNUSED_TONE_ERROR_MARGIN result.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_user_power_maximum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_user_power_mean(selector_string)[source]

Gets the user power. User power is the frequency domain power measured over subcarriers occupied by a given user. This value is expressed in dBm.

When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the user power results computed for each averaging count.

Use “user<n>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the user power. User power is the frequency domain power measured over subcarriers occupied by a given user. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_user_power_minimum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_user_stream_data_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of data-subcarriers in all OFDM symbols for the specified user. This value is expressed as a percentage or in dB.

This result is applicable for MU PPDU. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of data RMS EVM results for the specified user that is computed for each averaging count.

Use “user<n>/stream<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of data-subcarriers in all OFDM symbols for the specified user. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_user_stream_pilot_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of pilot-subcarriers in all OFDM symbols for the specified user. This value is expressed as a percentage or in dB.

This result is applicable for MU PPDU. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of pilot RMS EVM results for the specified user that is computed for each averaging count.

Use “user<n>/stream<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of pilot-subcarriers in all OFDM symbols for the specified user. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_user_stream_rms_evm_maximum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_user_stream_rms_evm_mean(selector_string)[source]

Gets the RMS EVM of all subcarriers in all OFDM symbols for the specified user. This value is expressed as a percentage or in dB.

This result is applicable for MU PPDU. When you set AVERAGING_ENABLED attribute to True, this attribute returns the mean of RMS EVM results for the specified user that is computed for each averaging count.

Use “user<n>/stream<k>” as the Selector String to read this result.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the RMS EVM of all subcarriers in all OFDM symbols for the specified user. This value is expressed as a percentage or in dB.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_user_stream_rms_evm_minimum(selector_string)[source]
Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_vht_ltf_average_power_mean(selector_string)[source]

Gets the average power of the VHT-LTF field. This value is expressed in dBm.

This result is applicable only to 802.11ac signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the VHT-LTF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the VHT-LTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_vht_ltf_peak_power_maximum(selector_string)[source]

Gets the peak power of the VHT-LTF field. This value is expressed in dBm.

This result is applicable only to 802.11ac signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the VHT-LTF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the VHT-LTF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_vht_sig_a_average_power_mean(selector_string)[source]

Gets the average power of the VHT-SIG-A field. This value is expressed in dBm.

This result is applicable only to 802.11ac signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the VHT-SIG-A field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the VHT-SIG-A field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_vht_sig_a_peak_power_maximum(selector_string)[source]

Gets the peak power of the VHT-SIG-A field. This value is expressed in dBm.

This result is applicable only to 802.11ac signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the VHT-SIG-A field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the VHT-SIG-A field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_vht_sig_b_average_power_mean(selector_string)[source]

Gets the average power of the VHT-SIG-B field. This value is expressed in dBm.

This result is applicable only to 802.11ac signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the VHT-SIG-B field average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the VHT-SIG-B field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_vht_sig_b_peak_power_maximum(selector_string)[source]

Gets the peak power of the VHT-SIG-B field. This value is expressed in dBm.

This result is applicable only to 802.11ac signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the VHT-SIG-B field peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the VHT-SIG-B field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_vht_stf_average_power_mean(selector_string)[source]

Gets the average power of the VHT-STF field. This value is expressed in dBm.

This result is applicable only to 802.11ac signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the mean of the VHT-STF average power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the average power of the VHT-STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)

get_vht_stf_peak_power_maximum(selector_string)[source]

Gets the peak power of the VHT-STF field. This value is expressed in dBm.

This result is applicable only to 802.11ac signals. When you set the AVERAGING_ENABLED attribute to True, this attribute returns the maximum of the VHT-STF peak power results computed for each averaging count.

You do not need to use a selector string to read this result for default signal and result instance. Refer to the Selector String topic for information about the string syntax for named signals and results.

Parameters:

selector_string (string) – Pass an empty string.

Returns:

attr_val (float):

Returns the peak power of the VHT-STF field. This value is expressed in dBm.

error_code (int):

Returns the status code of this method. The status code either indicates success or describes a warning condition.

Return type:

Tuple (attr_val, error_code)