Statistics

SCPI Commands

FETCh:WCDMa:MEASurement<Instance>:TPC:CARRier<Carrier>:UEPower:STATistics
READ:WCDMa:MEASurement<Instance>:TPC:CARRier<Carrier>:UEPower:STATistics
class Statistics[source]

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

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Max_Output_Power: int: decimal Number of trace values for maximum output power Range: 0 to 341

  • Min_Outpu_Power: int: decimal Number of trace values for minimum output power Range: 0 to 341

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

Return the ‘Statistics’ values, indicating how many trace values have been considered to derive the results. The results are the maximum, minimum and average values of the maximum output power and the minimum output power per carrier. The command returns all parameters listed below, independent of the selected TPC setup. Depending on the TPC setup, either a result value or an indicator is returned (e.g. NAV) .

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:STATistics
value: ResultData = driver.tpc.carrier.uePower.statistics.read(carrier = repcap.Carrier.Default)

Return the ‘Statistics’ values, indicating how many trace values have been considered to derive the results. The results are the maximum, minimum and average values of the maximum output power and the minimum output power per carrier. The command returns all parameters listed below, independent of the selected TPC setup. Depending on the TPC setup, either a result value or an indicator is returned (e.g. NAV) .

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.