Average

SCPI Commands :

READ:NRSub:MEASurement<Instance>:MEValuation:TXPower:AVERage
FETCh:NRSub:MEASurement<Instance>:MEValuation:TXPower:AVERage
class AverageCls[source]

Average commands group definition. 2 total commands, 0 Subgroups, 2 group commands

class ResultData[source]

Response structure. Fields:

  • Reliability: int: ‘Reliability indicator’

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

  • Tx_Power: float: Total TX power

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

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

return:

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

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

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

return:

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