Maximum

SCPI Commands

CALCulate:GSM:MEASurement<Instance>:MEValuation:MODulation:MAXimum
FETCh:GSM:MEASurement<Instance>:MEValuation:MODulation:MAXimum
READ:GSM:MEASurement<Instance>:MEValuation:MODulation:MAXimum
class Maximum[source]

Maximum commands group definition. 3 total commands, 0 Sub-groups, 3 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Out_Of_Tolerance: int: decimal Percentage of measurement intervals / bursts of the statistic count ([CMDLINK: CONFigure:GSM:MEASi:MEValuation:SCOunt:MODulation CMDLINK]) exceeding the specified modulation limits. Range: 0 % to 100 %, Unit: %

  • Evm_Rms: enums.ResultStatus2: float Error vector magnitude RMS and peak value Range: 0 % to 100 %, Unit: %

  • Evm_Peak: enums.ResultStatus2: float Error vector magnitude RMS and peak value Range: 0 % to 100 %, Unit: %

  • Mag_Error_Rms: enums.ResultStatus2: float Magnitude error RMS value Range: 0 % to 100 %, Unit: %

  • Mag_Error_Peak: enums.ResultStatus2: float Magnitude error peak value Range: -100 % to 100 %, Unit: %

  • Phase_Error_Rms: enums.ResultStatus2: float Phase error RMS value Range: 0 deg to 180 deg, Unit: deg

  • Phase_Error_Peak: enums.ResultStatus2: float Phase error peak value Range: -180 deg to 180 deg, Unit: deg

  • Iq_Offset: float: float I/Q origin offset Range: -100 dB to 0 dB, Unit: dB

  • Iq_Imbalance: float: float I/Q imbalance Range: -100 dB to 0 dB, Unit: dB

  • Frequency_Error: float: float Carrier frequency error Range: -56000 Hz to 56000 Hz, Unit: Hz

  • Timing_Error: float: float Transmit time error Range: -100 Sym to 100 Sym, Unit: Symbol

  • Burst_Power: float: float Burst power Range: -100 dBm to 55 dBm, Unit: dBm

  • Am_Pm_Delay: float: float AM-PM delay (determined for 8PSK and 16-QAM modulation only - for GMSK zeros are returned) Range: -0.9225E-6 s to 0.9225E-6 s, Unit: s

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Out_Of_Tolerance: int: decimal Percentage of measurement intervals / bursts of the statistic count ([CMDLINK: CONFigure:GSM:MEASi:MEValuation:SCOunt:MODulation CMDLINK]) exceeding the specified modulation limits. Range: 0 % to 100 %, Unit: %

  • Evm_Rms: float: float Error vector magnitude RMS and peak value Range: 0 % to 100 %, Unit: %

  • Evm_Peak: float: float Error vector magnitude RMS and peak value Range: 0 % to 100 %, Unit: %

  • Mag_Error_Rms: float: float Magnitude error RMS value Range: 0 % to 100 %, Unit: %

  • Mag_Error_Peak: float: float Magnitude error peak value Range: -100 % to 100 %, Unit: %

  • Phase_Error_Rms: float: float Phase error RMS value Range: 0 deg to 180 deg, Unit: deg

  • Phase_Error_Peak: float: float Phase error peak value Range: -180 deg to 180 deg, Unit: deg

  • Iq_Offset: float: float I/Q origin offset Range: -100 dB to 0 dB, Unit: dB

  • Iq_Imbalance: float: float I/Q imbalance Range: -100 dB to 0 dB, Unit: dB

  • Frequency_Error: float: float Carrier frequency error Range: -56000 Hz to 56000 Hz, Unit: Hz

  • Timing_Error: float: float Transmit time error Range: -100 Sym to 100 Sym, Unit: Symbol

  • Burst_Power: float: float Burst power Range: -100 dBm to 55 dBm, Unit: dBm

  • Am_Pm_Delay: float: float AM-PM delay (determined for 8PSK and 16-QAM modulation only - for GMSK zeros are returned) Range: -0.9225E-6 s to 0.9225E-6 s, Unit: s

calculate()CalculateStruct[source]
# SCPI: CALCulate:GSM:MEASurement<Instance>:MEValuation:MODulation:MAXimum
value: CalculateStruct = driver.multiEval.modulation.maximum.calculate()

Returns the current and minimum/maximum single slot modulation results of the multi-evaluation measurement. 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:GSM:MEASurement<Instance>:MEValuation:MODulation:MAXimum
value: ResultData = driver.multiEval.modulation.maximum.fetch()

Returns the current and minimum/maximum single slot modulation results of the multi-evaluation measurement. 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:GSM:MEASurement<Instance>:MEValuation:MODulation:MAXimum
value: ResultData = driver.multiEval.modulation.maximum.read()

Returns the current and minimum/maximum single slot modulation results of the multi-evaluation measurement. 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.