Average

SCPI Command:

CALCulate:AFRF:MEASurement<Instance>:MEValuation:DEModulation:FMSTereo:AVERage
FETCh:AFRF:MEASurement<Instance>:MEValuation:DEModulation:FMSTereo:AVERage
READ:AFRF:MEASurement<Instance>:MEValuation:DEModulation:FMSTereo: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’

  • Audio_Dev_Left: float or bool: Peak frequency deviation due to the left audio channel Unit: Hz

  • Audio_Dev_Right: float or bool: Peak frequency deviation due to the right audio channel Unit: Hz

  • Pilot_Deviation: float or bool: Peak frequency deviation due to the pilot tone Unit: Hz

  • Pilot_Freq_Error: float or bool: Frequency error of the pilot tone Unit: Hz

  • Rds_Deviation: float or bool: Peak frequency deviation due to the signal in the RDS band Unit: Hz

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability indicator values’

  • Audio_Dev_Left: float: Peak frequency deviation due to the left audio channel Unit: Hz

  • Audio_Dev_Right: float: Peak frequency deviation due to the right audio channel Unit: Hz

  • Pilot_Deviation: float: Peak frequency deviation due to the pilot tone Unit: Hz

  • Pilot_Freq_Error: float: Frequency error of the pilot tone Unit: Hz

  • Rds_Deviation: float: Peak frequency deviation due to the signal in the RDS band Unit: Hz

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

Query the demodulation results for the individual components of an FM stereo signal. 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:FMSTereo:AVERage
value: ResultData = driver.afRf.measurement.multiEval.demodulation.fmStereo.average.fetch()

Query the demodulation results for the individual components of an FM stereo signal. 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:FMSTereo:AVERage
value: ResultData = driver.afRf.measurement.multiEval.demodulation.fmStereo.average.read()

Query the demodulation results for the individual components of an FM stereo signal. CALCulate commands return error indicators instead of measurement values.

return:

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