Average

SCPI Commands :

FETCh:WCDMa:MEASurement<instance>:TPC:TOTal:UEPower:AVERage
READ:WCDMa:MEASurement<instance>:TPC:TOTal:UEPower: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’

  • Ue_Power: float: UE power

  • Max_Output_Power: float: Maximum output power

fetch() ResultData[source]
# SCPI: FETCh:WCDMa:MEASurement<instance>:TPC:TOTal:UEPower:AVERage
value: ResultData = driver.wcdmaMeas.tpc.total.uePower.average.fetch()

Return the UE power and the maximum output power single value results over all carriers. The minimum, maximum and average values of these results can be retrieved.

return:

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

read() ResultData[source]
# SCPI: READ:WCDMa:MEASurement<instance>:TPC:TOTal:UEPower:AVERage
value: ResultData = driver.wcdmaMeas.tpc.total.uePower.average.read()

Return the UE power and the maximum output power single value results over all carriers. The minimum, maximum and average values of these results can be retrieved.

return:

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