Stream<Stream>

RepCap Settings

# Range: S1 .. S2
rc = driver.ebler.trace.throughput.pcc.stream.repcap_stream_get()
driver.ebler.trace.throughput.pcc.stream.repcap_stream_set(repcap.Stream.S1)

SCPI Command :

FETCh:LTE:SIGNaling<instance>:EBLer:TRACe:THRoughput[:PCC]:STReam<Stream>
class StreamCls[source]

Stream commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Stream, default value after init: Stream.S1

class FetchStruct[source]

Response structure. Fields:

  • Reliability: int: decimal See ‘Reliability indicator’

  • Xvalue: List[float]: float Subframe label, 0 = last processed subframe, -1 = previously processed subframe, and so on

  • Yvalue: List[float]: float Throughput value calculated from the BLER result of 200 processed subframes (the labeled subframe and the previous 199 subframes) Unit: kbit/s

fetch(stream=Stream.Default) FetchStruct[source]
# SCPI: FETCh:LTE:SIGNaling<instance>:EBLer:TRACe:THRoughput[:PCC]:STReam<Stream>
value: FetchStruct = driver.ebler.trace.throughput.pcc.stream.fetch(stream = repcap.Stream.Default)

Returns the throughput trace for one downlink stream of one carrier. Each value is returned as a pair of X-value and Y-value. The number of result pairs n equals the number of subframes to be processed per measurement cycle, divided by 200. Returned results: <Reliability>, <XValue>1, <YValue>1, …, <XValue>n, <YValue>n

param stream:

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

return:

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.ebler.trace.throughput.pcc.stream.clone()