Current

SCPI Commands :

CALCulate:WLAN:MEASurement<Instance>:MEValuation:PVTime:REDGe:CURRent
READ:WLAN:MEASurement<Instance>:MEValuation:PVTime:REDGe:CURRent
FETCh:WLAN:MEASurement<Instance>:MEValuation:PVTime:REDGe:CURRent
class CurrentCls[source]

Current commands group definition. 3 total commands, 0 Subgroups, 3 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability indicator’

  • Power: enums.ResultStatus2: float Range: 0 µs to 10 µs, Unit: μs

  • Out_Of_Tol: enums.ResultStatus2: float Out of tolerance result, i.e. percentage of measurement intervals of the statistic count for PVT measurements exceeding the specified power limit Range: 0 % to 100 % , Unit: %

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability indicator’

  • Power: float: float Range: 0 µs to 10 µs, Unit: μs

  • Out_Of_Tol: float: float Out of tolerance result, i.e. percentage of measurement intervals of the statistic count for PVT measurements exceeding the specified power limit Range: 0 % to 100 % , Unit: %

calculate() CalculateStruct[source]
# SCPI: CALCulate:WLAN:MEASurement<Instance>:MEValuation:PVTime:REDGe:CURRent
value: CalculateStruct = driver.multiEval.powerVsTime.risingEdge.current.calculate()

Returns the current, average and maximum ramp durations of the power vs time measurement, for the falling edge (FEDGe) and rising edge (REDGe) . 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:WLAN:MEASurement<Instance>:MEValuation:PVTime:REDGe:CURRent
value: ResultData = driver.multiEval.powerVsTime.risingEdge.current.fetch()

Returns the current, average and maximum ramp durations of the power vs time measurement, for the falling edge (FEDGe) and rising edge (REDGe) . 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:WLAN:MEASurement<Instance>:MEValuation:PVTime:REDGe:CURRent
value: ResultData = driver.multiEval.powerVsTime.risingEdge.current.read()

Returns the current, average and maximum ramp durations of the power vs time measurement, for the falling edge (FEDGe) and rising edge (REDGe) . 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.