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 Average[source]

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

class CalculateStruct[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

  • Min_Outpu_Power: float: float Minimum output power Range: -100 dBm to 55 dBm, Unit: dBm

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

  • Min_Outpu_Power: float: float Minimum output power Range: -100 dBm to 55 dBm, Unit: dBm

calculate(carrier=<Carrier.Default: -1>)CalculateStruct[source]
# SCPI: CALCulate:WCDMa:MEASurement<instance>:TPC:CARRier<carrier>:UEPower:AVERage
value: CalculateStruct = driver.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: -1>)ResultData[source]
# SCPI: FETCh:WCDMa:MEASurement<instance>:TPC:CARRier<carrier>:UEPower:AVERage
value: ResultData = driver.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: -1>)ResultData[source]
# SCPI: READ:WCDMa:MEASurement<instance>:TPC:CARRier<carrier>:UEPower:AVERage
value: ResultData = driver.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.