Absolute

SCPI Commands

FETCh:WCDMa:SIGNaling<Instance>:HACK:THRoughput:CARRier<Carrier>:ABSolute
READ:WCDMa:SIGNaling<Instance>:HACK:THRoughput:CARRier<Carrier>:ABSolute
class Absolute[source]

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

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability Indicator’

  • Abs_Current: float: Current throughput Range: 0 bit/s to 100E+6 bit/s, Unit: bit/s

  • Abs_Maximum: float: Maximum throughput Range: 0 bit/s to 100E+6 bit/s, Unit: bit/s

  • Abs_Minimum: float: Minimum throughput Range: 0 bit/s to 100E+6 bit/s, Unit: bit/s

  • Abs_Scheduled: float: Scheduled throughput Range: 0 bit/s to 100E+6 bit/s, Unit: bit/s

  • Max_Possible: float: Maximum possible throughput Range: 0 bit/s to 100E+6 bit/s, Unit: bit/s

  • Abs_Total_Current: float: Current throughput - sum of all carriers Range: 0 bit/s to 100E+6 bit/s, Unit: bit/s

  • Total_Max_Pos: float: Maximum possible throughput - sum of all carriers Range: 0 bit/s to 100E+6 bit/s, Unit: bit/s

  • Abs_Total_Average: float: Average throughput calculated from a sum of all carriers Range: 0 bit/s to 100E+6 bit/s, Unit: bit/s

  • Abs_Average: float: Average throughput Range: 0 bit/s to 100E+6 bit/s, Unit: bit/s

fetch()ResultData[source]
# SCPI: FETCh:WCDMa:SIGNaling<instance>:HACK:THRoughput:CARRier<carrier>:ABSolute
value: ResultData = driver.hack.throughput.carrier.absolute.fetch()

Return the throughput results as absolute values. The current, maximum, minimum, scheduled and average values are returned, see ‘Throughput’. In addition to the measured values, the theoretical maximum possible throughput is returned, see ‘Max. possible Throughput’.

Global Repeated Capabilities: repcap.Carrier
return

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

read()ResultData[source]
# SCPI: READ:WCDMa:SIGNaling<instance>:HACK:THRoughput:CARRier<carrier>:ABSolute
value: ResultData = driver.hack.throughput.carrier.absolute.read()

Return the throughput results as absolute values. The current, maximum, minimum, scheduled and average values are returned, see ‘Throughput’. In addition to the measured values, the theoretical maximum possible throughput is returned, see ‘Max. possible Throughput’.

Global Repeated Capabilities: repcap.Carrier
return

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