Average

SCPI Commands

READ:CDMA:MEASurement<Instance>:MEValuation:OBW:AVERage
FETCh:CDMA:MEASurement<Instance>:MEValuation:OBW:AVERage
CALCulate:CDMA:MEASurement<Instance>:MEValuation:OBW:AVERage
class Average[source]

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

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Obw: float: float Occupied bandwidth Range: 0 MHz to 8 MHz , Unit: Hz

  • Out_Of_Tol_Count: float: float Out of tolerance result, i.e. percentage of measurement intervals of the statistic count ([CMDLINK: CONFigure:CDMA:MEASi:MEValuation:SCOunt:MODulation CMDLINK]) exceeding the specified limit, see ‘Limits (Spectrum) ‘. Range: 0 % to 100 %, Unit: %

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Obw: float: float Occupied bandwidth Range: 0 MHz to 8 MHz , Unit: Hz

  • Out_Of_Tol_Count: float: float Out of tolerance result, i.e. percentage of measurement intervals of the statistic count ([CMDLINK: CONFigure:CDMA:MEASi:MEValuation:SCOunt:MODulation CMDLINK]) exceeding the specified limit, see ‘Limits (Spectrum) ‘. Range: 0 % to 100 %, Unit: %

calculate()CalculateStruct[source]
# SCPI: CALCulate:CDMA:MEASurement<Instance>:MEValuation:OBW:AVERage
value: CalculateStruct = driver.multiEval.obw.average.calculate()

Return the current, average and maximum occupied bandwidth 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:CDMA:MEASurement<Instance>:MEValuation:OBW:AVERage
value: ResultData = driver.multiEval.obw.average.fetch()

Return the current, average and maximum occupied bandwidth 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:CDMA:MEASurement<Instance>:MEValuation:OBW:AVERage
value: ResultData = driver.multiEval.obw.average.read()

Return the current, average and maximum occupied bandwidth 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.