Localizer

SCPI Commands :

[SOURce<HW>]:[BB]:ILS:LOCalizer:MODE
[SOURce<HW>]:[BB]:ILS:LOCalizer:PHASe
[SOURce<HW>]:[BB]:ILS:LOCalizer:SDM
class LocalizerCls[source]

Localizer commands group definition. 28 total commands, 6 Subgroups, 3 group commands

get_mode() RsSmbv.enums.AvionicIlsLocMode[source]
# SCPI: [SOURce<HW>]:[BB]:ILS:LOCalizer:MODE
value: enums.AvionicIlsLocMode = driver.source.bb.ils.localizer.get_mode()

Sets the operating mode for the ILS localizer modulation signal.

return

mode: NORM| LLOBe| RLOBe NORM ILS localizer modulation is active. LLOBe Amplitude modulation of the output signal with the left lobe (90Hz) signal component of the ILS localizer signal is active. RLOBe Amplitude modulation of the output signal with the right lobe (150Hz) signal component of the ILS localizer signal is active.

get_phase() float[source]
# SCPI: [SOURce<HW>]:[BB]:ILS:LOCalizer:PHASe
value: float = driver.source.bb.ils.localizer.get_phase()

Sets the phase between the modulation signals of the left and right antenna lobe of the ILS localizer signal. The zero crossing of the right lobe (150 Hz) signal serves as a reference. The angle refers to the period of the signal of the right antenna lobe.

return

phase: float Range: -60 to 120

get_sdm() float[source]
# SCPI: [SOURce<HW>]:[BB]:ILS:LOCalizer:SDM
value: float = driver.source.bb.ils.localizer.get_sdm()

Sets the arithmetic sum of the modulation depths of the left lobe (90 Hz) and right lobe (150 Hz) for the ILS localizer signal contents. The RMS modulation depth of the sum signal depends on the phase setting of both modulation tones.

return

sdm: float Range: 0 to 100

set_mode(mode: RsSmbv.enums.AvionicIlsLocMode) None[source]
# SCPI: [SOURce<HW>]:[BB]:ILS:LOCalizer:MODE
driver.source.bb.ils.localizer.set_mode(mode = enums.AvionicIlsLocMode.LLOBe)

Sets the operating mode for the ILS localizer modulation signal.

param mode

NORM| LLOBe| RLOBe NORM ILS localizer modulation is active. LLOBe Amplitude modulation of the output signal with the left lobe (90Hz) signal component of the ILS localizer signal is active. RLOBe Amplitude modulation of the output signal with the right lobe (150Hz) signal component of the ILS localizer signal is active.

set_phase(phase: float) None[source]
# SCPI: [SOURce<HW>]:[BB]:ILS:LOCalizer:PHASe
driver.source.bb.ils.localizer.set_phase(phase = 1.0)

Sets the phase between the modulation signals of the left and right antenna lobe of the ILS localizer signal. The zero crossing of the right lobe (150 Hz) signal serves as a reference. The angle refers to the period of the signal of the right antenna lobe.

param phase

float Range: -60 to 120

set_sdm(sdm: float) None[source]
# SCPI: [SOURce<HW>]:[BB]:ILS:LOCalizer:SDM
driver.source.bb.ils.localizer.set_sdm(sdm = 1.0)

Sets the arithmetic sum of the modulation depths of the left lobe (90 Hz) and right lobe (150 Hz) for the ILS localizer signal contents. The RMS modulation depth of the sum signal depends on the phase setting of both modulation tones.

param sdm

float Range: 0 to 100

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.ils.localizer.clone()

Subgroups