Relative

SCPI Command :

FETCh:SIGNaling:MEASurement:BLER:CWORd<no>:RELative
class RelativeCls[source]

Relative commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class FetchStruct[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability indicator’

  • Cell_Name: List[str]: Name of the cell providing the measured connection

  • Ack: List[float]: Number of received acknowledgments as percentage

  • Nack: List[float]: Number of received negative acknowledgments as percentage

  • Dtx: List[float]: Number of missing answers (no ACK, no NACK) as percentage

  • Bler: List[float]: Block error ratio as percentage

  • Throughput_Avg: List[float]: Average throughput as percentage of scheduled throughput

fetch(algorithm: Algorithm = None, cword=Cword.Default) FetchStruct[source]
# SCPI: FETCh:SIGNaling:MEASurement:BLER:CWORd<no>:RELative
value: FetchStruct = driver.signaling.measurement.bler.cword.relative.fetch(algorithm = enums.Algorithm.ERC1, cword = repcap.Cword.Default)

Returns the relative DL results of the BLER measurement, for code word <no>. There is one set of results {…} per cell: <Reliability>, {<CellName>, <ACK>, <NACK>, <DTX>, <BLER>, <ThroughputAvg>}, {…}, …

param algorithm:

Selects the formula for calculation of the BLER from the number of ACK, NACK and DTX. ERC1 (Default) : BLER = (NACK + DTX) / (ACK + NACK + DTX) ERC2: BLER = DTX / (ACK + NACK + DTX) ERC3: BLER = NACK / (ACK + NACK + DTX) ERC4: BLER = NACK / (ACK + NACK)

param cword:

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

return:

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