Scc<SecondaryCompCarrier>

RepCap Settings

# Range: CC1 .. CC7
rc = driver.ebler.trace.throughput.scc.repcap_secondaryCompCarrier_get()
driver.ebler.trace.throughput.scc.repcap_secondaryCompCarrier_set(repcap.SecondaryCompCarrier.CC1)

SCPI Command :

FETCh:LTE:SIGNaling<instance>:EBLer:TRACe:THRoughput:SCC<Carrier>
class SccCls[source]

Scc commands group definition. 3 total commands, 2 Subgroups, 1 group commands Repeated Capability: SecondaryCompCarrier, default value after init: SecondaryCompCarrier.CC1

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(secondaryCompCarrier=SecondaryCompCarrier.Default) FetchStruct[source]
# SCPI: FETCh:LTE:SIGNaling<instance>:EBLer:TRACe:THRoughput:SCC<Carrier>
value: FetchStruct = driver.ebler.trace.throughput.scc.fetch(secondaryCompCarrier = repcap.SecondaryCompCarrier.Default)

Returns the throughput trace for the sum of all DL streams 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 secondaryCompCarrier:

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

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.scc.clone()

Subgroups