Average

SCPI Command:

CALCulate:AFRF:MEASurement<Instance>:MEValuation:DEModulation:PDEViation:AVERage
FETCh:AFRF:MEASurement<Instance>:MEValuation:DEModulation:PDEViation:AVERage
READ:AFRF:MEASurement<Instance>:MEValuation:DEModulation:PDEViation:AVERage
class AverageCls[source]

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

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability indicator values’

  • Rms: float or bool: RMS average value Unit: rad

  • Rms_Sqrt_2: float or bool: RMS result multiplied with the square root of 2 Unit: rad

  • Ppeak: float or bool: Positive peak value Unit: rad

  • Mpeak: float or bool: Negative peak value Unit: rad

  • Mp_Peak_Average: enums.ResultStatus: Peak-to-peak value divided by 2 Unit: rad

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability indicator values’

  • Rms: float: RMS average value Unit: rad

  • Rms_Sqrt_2: float: RMS result multiplied with the square root of 2 Unit: rad

  • Ppeak: float: Positive peak value Unit: rad

  • Mpeak: float: Negative peak value Unit: rad

  • Mp_Peak_Average: float: Peak-to-peak value divided by 2 Unit: rad

calculate() CalculateStruct[source]
# SCPI: CALCulate:AFRF:MEASurement<Instance>:MEValuation:DEModulation:PDEViation:AVERage
value: CalculateStruct = driver.afRf.measurement.multiEval.demodulation.pdeviation.average.calculate()

Query the demodulation results for PM demodulation. A statistical evaluation of the phase deviation is returned. CALCulate commands return error indicators instead of measurement values.

return:

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

fetch() ResultData[source]
# SCPI: FETCh:AFRF:MEASurement<Instance>:MEValuation:DEModulation:PDEViation:AVERage
value: ResultData = driver.afRf.measurement.multiEval.demodulation.pdeviation.average.fetch()

Query the demodulation results for PM demodulation. A statistical evaluation of the phase deviation is returned. CALCulate commands return error indicators instead of measurement values.

return:

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

read() ResultData[source]
# SCPI: READ:AFRF:MEASurement<Instance>:MEValuation:DEModulation:PDEViation:AVERage
value: ResultData = driver.afRf.measurement.multiEval.demodulation.pdeviation.average.read()

Query the demodulation results for PM demodulation. A statistical evaluation of the phase deviation is returned. CALCulate commands return error indicators instead of measurement values.

return:

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