Average

SCPI Commands

FETCh:WCDMa:MEASurement<Instance>:TPC:TOTal:UEPower:AVERage
READ:WCDMa:MEASurement<Instance>:TPC:TOTal:UEPower:AVERage
class Average[source]

Average commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Ue_Power: float: float UE power Range: -100 dBm to 55 dBm, Unit: dBm

  • Max_Output_Power: float: float Maximum output power Range: -100 dBm to 55 dBm, Unit: dBm

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

Return the UE power and 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.tpc.total.uePower.average.read()

Return the UE power and 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.