Current

SCPI Commands

READ:CDMA:MEASurement<Instance>:MEValuation:ACP:CURRent
FETCh:CDMA:MEASurement<Instance>:MEValuation:ACP:CURRent
CALCulate:CDMA:MEASurement<Instance>:MEValuation:ACP:CURRent
class Current[source]

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

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: decimal

  • Narrow_Band: float: float MS power, measured with a filter bandwidth of 1.23 MHz. Range: -256 dBm to 256 dBm

  • Wideband: float: float MS power, measured with the wideband filter (8 MHz) . Range: -256 dBm to 256 dBm

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

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal

  • Narrow_Band: float: float MS power, measured with a filter bandwidth of 1.23 MHz. Range: -256 dBm to 256 dBm

  • Wideband: float: float MS power, measured with the wideband filter (8 MHz) . Range: -256 dBm to 256 dBm

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

calculate()CalculateStruct[source]
# SCPI: CALCulate:CDMA:MEASurement<Instance>:MEValuation:ACP:CURRent
value: CalculateStruct = driver.multiEval.acp.current.calculate()

Returns MS power and the ‘out of tolerance’ statistical results. For the MS power results, the current, average and maximum values can be retrieved. The ‘Out of Tolerance’ retrieved via the CURRent, AVERage and MAXimum command are identical. 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:ACP:CURRent
value: ResultData = driver.multiEval.acp.current.fetch()

Returns MS power and the ‘out of tolerance’ statistical results. For the MS power results, the current, average and maximum values can be retrieved. The ‘Out of Tolerance’ retrieved via the CURRent, AVERage and MAXimum command are identical. 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:ACP:CURRent
value: ResultData = driver.multiEval.acp.current.read()

Returns MS power and the ‘out of tolerance’ statistical results. For the MS power results, the current, average and maximum values can be retrieved. The ‘Out of Tolerance’ retrieved via the CURRent, AVERage and MAXimum command are identical. 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.