Extended

SCPI Commands

READ:DATA:MEASurement<MeasInstance>:THRoughput:TRACe:OVERall:DLINk:EXTended
FETCh:DATA:MEASurement<MeasInstance>:THRoughput:TRACe:OVERall:DLINk:EXTended
class Extended[source]

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

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability Indicator’

  • Counter: List[int]: Counter for identification of the result value The counter starts with 1 and is incremented for each result as long as the measurement is running.

  • Result: List[float]: Unit: bit/s

fetch()ResultData[source]
# SCPI: FETCh:DATA:MEASurement<Instance>:THRoughput:TRACe:OVERall:DLINk:EXTended
value: ResultData = driver.data.measurement.throughput.trace.overall.dlink.extended.fetch()

Query the values of the overall throughput trace in uplink (ULINk) or downlink (DLINk) direction. The trace values are returned from right to left (last to first measurement) . There are two values per interval: <Reliability>, {<Counter>, <Result>}interval n, {…}interval n-1, … The counter is useful if you want to perform repeated queries and combine the returned result traces. To configure the number of intervals, see method RsCmwDau.Configure.Data.Measurement.Throughput. mcount.

return

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

read()ResultData[source]
# SCPI: READ:DATA:MEASurement<Instance>:THRoughput:TRACe:OVERall:DLINk:EXTended
value: ResultData = driver.data.measurement.throughput.trace.overall.dlink.extended.read()

Query the values of the overall throughput trace in uplink (ULINk) or downlink (DLINk) direction. The trace values are returned from right to left (last to first measurement) . There are two values per interval: <Reliability>, {<Counter>, <Result>}interval n, {…}interval n-1, … The counter is useful if you want to perform repeated queries and combine the returned result traces. To configure the number of intervals, see method RsCmwDau.Configure.Data.Measurement.Throughput. mcount.

return

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