Cword<Cword>

RepCap Settings

# Range: Nr1 .. Nr2
rc = driver.signaling.measurement.cqiReporting.lte.cword.repcap_cword_get()
driver.signaling.measurement.cqiReporting.lte.cword.repcap_cword_set(repcap.Cword.Nr1)

SCPI Command :

FETCh:SIGNaling:MEASurement:CQIReporting:LTE:CWORd<no>
class CwordCls[source]

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

class FetchStruct[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability indicator’

  • Cell_Name: List[str]: Name of the cell for which the values are reported.

  • Median_Cqi: List[int]: Median of the CQI values reported by the UE.

  • Range_Median_Rel: List[float]: Number of received CQI values in the range (median CQI - 1) to (median CQI + 1) , as percentage of TotalNoReports.

  • Range_Median_Abs: List[int]: Number of received CQI values in the range (median CQI - 1) to (median CQI + 1) , as absolute value.

  • Total_No_Reports: List[int]: Total number of received CQI values.

fetch(cword=Cword.Default) FetchStruct[source]
# SCPI: FETCh:SIGNaling:MEASurement:CQIReporting:LTE:CWORd<no>
value: FetchStruct = driver.signaling.measurement.cqiReporting.lte.cword.fetch(cword = repcap.Cword.Default)

Returns the statistical evaluation of the histogram of reported CQI values. There are separate commands for LTE cells and NR cells. And there is one set of results {…} per cell: <Reliability>, {<CellName>, <MedianCqi>, <RangeMedianRel>, <RangeMedianAbs>, <TotalNoReports>}, {…}, …

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.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.signaling.measurement.cqiReporting.lte.cword.clone()