Average

SCPI Commands :

READ:NIOT:MEASurement<Instance>:MEValuation:MODulation:AVERage
FETCh:NIOT:MEASurement<Instance>:MEValuation:MODulation:AVERage
CALCulate:NIOT:MEASurement<Instance>:MEValuation:MODulation:AVERage
class AverageCls[source]

Average commands group definition. 3 total commands, 0 Subgroups, 3 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: ‘Reliability indicator’

  • Out_Of_Tolerance: int: Out of tolerance result, i.e. percentage of measurement intervals of the statistic count for modulation measurements exceeding the specified modulation limits.

  • Evm_Rms: float or bool: Error vector magnitude RMS value

  • Evm_Peak: float or bool: Error vector magnitude peak value

  • Mag_Error_Rms: float or bool: Magnitude error RMS value

  • Mag_Err_Peak: float or bool: Magnitude error peak value

  • Ph_Error_Rms: float or bool: Phase error RMS value

  • Ph_Error_Peak: float or bool: Phase error peak value

  • Iq_Offset: float or bool: I/Q origin offset

  • Frequency_Error: float or bool: Carrier frequency error

  • Timing_Error: float or bool: Transmit time error.

  • Tx_Power: float or bool: User equipment power

  • Peak_Power: float or bool: User equipment peak power

  • Sc_Power: float or bool: Power in allocated subcarriers

  • Evm_Dmrs: float or bool: Error vector magnitude DMRS value

  • Mag_Err_Dmrs: float or bool: Magnitude error DMRS value

  • Ph_Error_Dmrs: float or bool: Phase error DMRS value

  • Iq_Gain_Imbalance: float or bool: No parameter help available

  • Iq_Quadrature_Err: float or bool: No parameter help available

class ResultData[source]

Response structure. Fields:

  • Reliability: int: ‘Reliability indicator’

  • Out_Of_Tolerance: int: Out of tolerance result, i.e. percentage of measurement intervals of the statistic count for modulation measurements exceeding the specified modulation limits.

  • Evm_Rms: float: Error vector magnitude RMS value

  • Evm_Peak: float: Error vector magnitude peak value

  • Mag_Error_Rms: float: Magnitude error RMS value

  • Mag_Err_Peak: float: Magnitude error peak value

  • Ph_Error_Rms: float: Phase error RMS value

  • Ph_Error_Peak: float: Phase error peak value

  • Iq_Offset: float: I/Q origin offset

  • Frequency_Error: float: Carrier frequency error

  • Timing_Error: float: Transmit time error.

  • Tx_Power: float: User equipment power

  • Peak_Power: float: User equipment peak power

  • Sc_Power: float: Power in allocated subcarriers

  • Evm_Dmrs: float: Error vector magnitude DMRS value

  • Mag_Err_Dmrs: float: Magnitude error DMRS value

  • Ph_Error_Dmrs: float: Phase error DMRS value

  • Iq_Gain_Imbalance: float: No parameter help available

  • Iq_Quadrature_Err: float: No parameter help available

calculate() CalculateStruct[source]
# SCPI: CALCulate:NIOT:MEASurement<Instance>:MEValuation:MODulation:AVERage
value: CalculateStruct = driver.niotMeas.multiEval.modulation.average.calculate()

Return the current, average and standard deviation single value results. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return:

structure: for return value, see the help for CalculateStruct structure arguments.

fetch() ResultData[source]
# SCPI: FETCh:NIOT:MEASurement<Instance>:MEValuation:MODulation:AVERage
value: ResultData = driver.niotMeas.multiEval.modulation.average.fetch()

Return the current, average and standard deviation single value results. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return:

structure: for return value, see the help for ResultData structure arguments.

read() ResultData[source]
# SCPI: READ:NIOT:MEASurement<Instance>:MEValuation:MODulation:AVERage
value: ResultData = driver.niotMeas.multiEval.modulation.average.read()

Return the current, average and standard deviation single value results. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return:

structure: for return value, see the help for ResultData structure arguments.