All

SCPI Commands

CALCulate:GSM:MEASurement<Instance>:MEValuation:PVTime:ALL
FETCh:GSM:MEASurement<Instance>:MEValuation:PVTime:ALL
READ:GSM:MEASurement<Instance>:MEValuation:PVTime:ALL
class All[source]

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

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Bursts_Out_Tol: float or bool: float Percentage of measurement intervals / bursts of the statistic count ([CMDLINK: CONFigure:GSM:MEASi:MEValuation:SCOunt:PVTime CMDLINK]) exceeding the specified limits, see ‘Limits (Power vs. Time) ‘ Range: 0 % to 100 %, Unit: %

  • Avg_Burst_Pow_Avg: List[float]: No parameter help available

  • Avg_Burst_Pow_Cur: List[float]: No parameter help available

  • Max_Burst_Pow_Cur: List[float]: No parameter help available

  • Min_Burst_Pow_Cur: List[float]: No parameter help available

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Bursts_Out_Tol: float or bool: float Percentage of measurement intervals / bursts of the statistic count ([CMDLINK: CONFigure:GSM:MEASi:MEValuation:SCOunt:PVTime CMDLINK]) exceeding the specified limits, see ‘Limits (Power vs. Time) ‘ Range: 0 % to 100 %, Unit: %

  • Avg_Burst_Pow_Avg: List[float or bool]: No parameter help available

  • Avg_Burst_Pow_Cur: List[float or bool]: No parameter help available

  • Max_Burst_Pow_Cur: List[float or bool]: No parameter help available

  • Min_Burst_Pow_Cur: List[float or bool]: No parameter help available

calculate()CalculateStruct[source]
# SCPI: CALCulate:GSM:MEASurement<Instance>:MEValuation:PVTime[:ALL]
value: CalculateStruct = driver.multiEval.powerVsTime.all.calculate()

Returns burst power values for slot 0 to slot 7. In addition to the current value statistical values are returned (average, minimum and maximum) . The relative number of bursts out of tolerance is also returned. 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. The number to the left of each result parameter is provided for easy identification of the parameter position within the result array.

return

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

fetch()ResultData[source]
# SCPI: FETCh:GSM:MEASurement<Instance>:MEValuation:PVTime[:ALL]
value: ResultData = driver.multiEval.powerVsTime.all.fetch()

Returns burst power values for slot 0 to slot 7. In addition to the current value statistical values are returned (average, minimum and maximum) . The relative number of bursts out of tolerance is also returned. 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. The number to the left of each result parameter is provided for easy identification of the parameter position within the result array.

return

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

read()ResultData[source]
# SCPI: READ:GSM:MEASurement<Instance>:MEValuation:PVTime[:ALL]
value: ResultData = driver.multiEval.powerVsTime.all.read()

Returns burst power values for slot 0 to slot 7. In addition to the current value statistical values are returned (average, minimum and maximum) . The relative number of bursts out of tolerance is also returned. 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. The number to the left of each result parameter is provided for easy identification of the parameter position within the result array.

return

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