Pcc

SCPI Command :

FETCh:LTE:SIGNaling<instance>:EBLer:TRACe:THRoughput[:PCC]
class PccCls[source]

Pcc commands group definition. 3 total commands, 2 Subgroups, 1 group commands

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() FetchStruct[source]
# SCPI: FETCh:LTE:SIGNaling<instance>:EBLer:TRACe:THRoughput[:PCC]
value: FetchStruct = driver.ebler.trace.throughput.pcc.fetch()

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

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

Subgroups