Cell

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:NCELl:LTE:CELL<n>
class CellCls[source]

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

class CellStruct[source]

Structure for setting input parameters. Contains optional setting parameters. Fields:

  • Enable: bool: OFF | ON Enables or disables the entry

  • Band: enums.OperatingBandC: OB1 | … | OB46 | OB48 | … | OB53 | OB65 | … | OB76 | OB85 | OB87 | OB88 | OB250 | OB252 | OB255

  • Channel: int: integer Downlink channel number Range: depends on operating band

  • Cell_Id: int: integer Physical layer cell ID Range: 0 to 503

  • Qoffset: enums.Qoffset: N24 | N22 | N20 | N18 | N16 | N14 | N12 | N10 | N8 | N6 | N5 | N4 | N3 | N2 | N1 | ZERO | P1 | P2 | P3 | P4 | P5 | P6 | P8 | P10 | P12 | P14 | P16 | P18 | P20 | P22 | P24 Corresponds to value ‘q-OffsetCell’ in 3GPP TS 36.331 N24 to N1: -24 dB to -1 dB ZERO: 0 dB P1 to P24: 1 dB to 24 dB

  • Measurement: bool: Optional setting parameter. OFF | ON Disables / enables neighbor cell measurements for the entry ON is only allowed if also Enable = ON

get(cellNo=CellNo.Default) CellStruct[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:NCELl:LTE:CELL<n>
value: CellStruct = driver.configure.ncell.lte.cell.get(cellNo = repcap.CellNo.Default)

Configures the entry number <n> of the neighbor cell list for LTE. For channel number ranges depending on operating bands see ‘Operating bands’. Note that only 5 entries with different channel numbers can be active at a time. Entries with the same channel number must have different cell IDs.

param cellNo:

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

return:

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

set(structure: CellStruct, cellNo=CellNo.Default) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:NCELl:LTE:CELL<n>
structure = driver.configure.ncell.lte.cell.CellStruct()
structure.Enable: bool = False
structure.Band: enums.OperatingBandC = enums.OperatingBandC.OB1
structure.Channel: int = 1
structure.Cell_Id: int = 1
structure.Qoffset: enums.Qoffset = enums.Qoffset.N1
structure.Measurement: bool = False
driver.configure.ncell.lte.cell.set(structure, cellNo = repcap.CellNo.Default)

Configures the entry number <n> of the neighbor cell list for LTE. For channel number ranges depending on operating bands see ‘Operating bands’. Note that only 5 entries with different channel numbers can be active at a time. Entries with the same channel number must have different cell IDs.

param structure:

for set value, see the help for CellStruct structure arguments.

param cellNo:

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