Average

SCPI Commands :

FETCh:WCDMa:MEASurement<instance>:TPC:CARRier<carrier>:UEPower:AVERage
READ:WCDMa:MEASurement<instance>:TPC:CARRier<carrier>:UEPower:AVERage
CALCulate:WCDMa:MEASurement<instance>:TPC:CARRier<carrier>:UEPower:AVERage
class AverageCls[source]

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

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: ‘Reliability indicator’

  • Ue_Power: float or bool: UE power

  • Max_Output_Power: float or bool: Maximum output power

  • Min_Outpu_Power: float or bool: Minimum output power

class ResultData[source]

Response structure. Fields:

  • Reliability: int: ‘Reliability indicator’

  • Ue_Power: float: UE power

  • Max_Output_Power: float: Maximum output power

  • Min_Outpu_Power: float: Minimum output power

calculate(carrier=Carrier.Default) CalculateStruct[source]
# SCPI: CALCulate:WCDMa:MEASurement<instance>:TPC:CARRier<carrier>:UEPower:AVERage
value: CalculateStruct = driver.wcdmaMeas.tpc.carrier.uePower.average.calculate(carrier = repcap.Carrier.Default)

Return the UE power and minimum/maximum output power single value results per carrier. The minimum, maximum and average values of these results can be retrieved. The command returns all parameters listed below, independent of the selected TPC setup. However, only for some of the parameters measured values are available. For the other parameters, only an indicator is returned (e.g. NAV) . 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.

param carrier:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Carrier’)

return:

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

fetch(carrier=Carrier.Default) ResultData[source]
# SCPI: FETCh:WCDMa:MEASurement<instance>:TPC:CARRier<carrier>:UEPower:AVERage
value: ResultData = driver.wcdmaMeas.tpc.carrier.uePower.average.fetch(carrier = repcap.Carrier.Default)

Return the UE power and minimum/maximum output power single value results per carrier. The minimum, maximum and average values of these results can be retrieved. The command returns all parameters listed below, independent of the selected TPC setup. However, only for some of the parameters measured values are available. For the other parameters, only an indicator is returned (e.g. NAV) . 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.

param carrier:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Carrier’)

return:

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

read(carrier=Carrier.Default) ResultData[source]
# SCPI: READ:WCDMa:MEASurement<instance>:TPC:CARRier<carrier>:UEPower:AVERage
value: ResultData = driver.wcdmaMeas.tpc.carrier.uePower.average.read(carrier = repcap.Carrier.Default)

Return the UE power and minimum/maximum output power single value results per carrier. The minimum, maximum and average values of these results can be retrieved. The command returns all parameters listed below, independent of the selected TPC setup. However, only for some of the parameters measured values are available. For the other parameters, only an indicator is returned (e.g. NAV) . 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.

param carrier:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Carrier’)

return:

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