Current

SCPI Commands :

READ:NRSub:MEASurement<Instance>:MEValuation:TXPower:CURRent
FETCh:NRSub:MEASurement<Instance>:MEValuation:TXPower:CURRent
Commands in total: 2
Subgroups: 0
Direct child commands: 2
class ResultData[source]

Response structure. Fields:

  • 1 Reliability: int: ‘Reliability indicator’

  • 2 Out_Of_Tolerance: int: For future use, currently no related limits

  • 3 Tx_Power: float: Total TX power

fetch() ResultData[source]
# FETCh:NRSub:MEASurement<Instance>:MEValuation:TXPower:CURRent
value: ResultData = driver.nrSubMeas.multiEval.txPower.current.fetch()

Return the total TX power results (current, average, minimum, maximum and standard deviation) .

Returns:

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

read() ResultData[source]
# READ:NRSub:MEASurement<Instance>:MEValuation:TXPower:CURRent
value: ResultData = driver.nrSubMeas.multiEval.txPower.current.read()

Return the total TX power results (current, average, minimum, maximum and standard deviation) .

Returns:

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