Location

SCPI Command :

[CONFigure]:SIGNaling:NRADio:CELL:RFSettings:COMBined:LOCation
class LocationCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Duplex_Mode: enums.DuplexModeB: No parameter help available

  • Fbi: int: Frequency band indicator

  • Dl_Bw: enums.DlUlBandwidth: DL carrier bandwidth in MHz

  • Dl_Location: enums.DlUlLocation: DL frequency
    • MID, LOW, HIGH: Automatic selection of mid, low or high position in the frequency band.

    • USER: User-defined frequency, specified via a separate command.

  • Ul_Bw: enums.DlUlBandwidth: UL carrier bandwidth in MHz (ignored for TDD/SDL)

  • Ul_Location: enums.DlUlLocation: UL frequency (ignored for TDD/SDL)
    • MID, LOW, HIGH: Automatic selection of mid, low or high position in the frequency band.

    • USER: User-defined frequency, specified via a separate command.

  • Scs: int: Subcarrier spacing

class SetStruct[source]

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

  • Cell_Name: str: No parameter help available

  • Duplex_Mode: enums.DuplexModeB: No parameter help available

  • Fbi: int: Optional setting parameter. Frequency band indicator

  • Dl_Bw: enums.DlUlBandwidth: Optional setting parameter. DL carrier bandwidth in MHz

  • Dl_Location: enums.DlUlLocation: Optional setting parameter. DL frequency
    • MID, LOW, HIGH: Automatic selection of mid, low or high position in the frequency band.

    • USER: User-defined frequency, specified via a separate command.

  • Ul_Bw: enums.DlUlBandwidth: Optional setting parameter. UL carrier bandwidth in MHz (ignored for TDD/SDL)

  • Ul_Location: enums.DlUlLocation: Optional setting parameter. UL frequency (ignored for TDD/SDL)
    • MID, LOW, HIGH: Automatic selection of mid, low or high position in the frequency band.

    • USER: User-defined frequency, specified via a separate command.

  • Scs: int: Optional setting parameter. Subcarrier spacing

get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:RFSettings:COMBined:LOCation
value: GetStruct = driver.configure.signaling.nradio.cell.rfSettings.combined.location.get(cell_name = 'abc')

Modifies several frequency settings simultaneously, for example, to change the frequency for an established connection, without losing the connection.

param cell_name:

No help available

return:

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

set(structure: SetStruct) None[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:RFSettings:COMBined:LOCation
structure = driver.configure.signaling.nradio.cell.rfSettings.combined.location.SetStruct()
structure.Cell_Name: str = 'abc'
structure.Duplex_Mode: enums.DuplexModeB = enums.DuplexModeB.FDD
structure.Fbi: int = 1
structure.Dl_Bw: enums.DlUlBandwidth = enums.DlUlBandwidth.B005
structure.Dl_Location: enums.DlUlLocation = enums.DlUlLocation.HIGH
structure.Ul_Bw: enums.DlUlBandwidth = enums.DlUlBandwidth.B005
structure.Ul_Location: enums.DlUlLocation = enums.DlUlLocation.HIGH
structure.Scs: int = 1
driver.configure.signaling.nradio.cell.rfSettings.combined.location.set(structure)

Modifies several frequency settings simultaneously, for example, to change the frequency for an established connection, without losing the connection.

param structure:

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