Localizer

SCPI Commands :

[SOURce<HW>]:[BB]:ILS:LOCalizer:MODE
[SOURce<HW>]:[BB]:ILS:LOCalizer:PHASe
[SOURce<HW>]:[BB]:ILS:LOCalizer:SDM
Commands in total: 28
Subgroups: 6
Direct child commands: 3
get_mode() AvionicIlsLocMode[source]
# [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.

Returns:

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]
# [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.

Returns:

phase: float Range: -60 to 120

get_sdm() float[source]
# [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.

Returns:

sdm: float Range: 0 to 100

set_mode(mode: AvionicIlsLocMode) None[source]
# [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.

Parameters:

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]
# [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.

Parameters:

phase – float Range: -60 to 120

set_sdm(sdm: float) None[source]
# [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.

Parameters:

sdm – float Range: 0 to 100

Cloning the Group

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

Subgroups