Gs
SCPI Commands :
[SOURce<HW>]:[BB]:ILS:[GS]:MODE
[SOURce<HW>]:[BB]:ILS:[GS]:PHASe
[SOURce<HW>]:[BB]:ILS:[GS]:SDM
- Commands in total: 17Subgroups: 5Direct child commands: 3
- get_mode() AvionicIlsGsMode[source]
# [SOURce<HW>]:[BB]:ILS:[GS]:MODE value: enums.AvionicIlsGsMode = driver.source.bb.ils.gs.get_mode()
Sets the operating mode for the ILS glide slope modulation signal.
- Returns:
mode: NORM | ULOBe | LLOBe NORM ILS glide slope modulation is active. ULOBe Amplitude modulation of the output signal with the upper lobe (90Hz) signal component of the ILS glide slope signal is active. LLOBe Amplitude modulation of the output signal with the lower lobe (150Hz) signal component of the ILS glide slope signal is active.
- get_phase() float[source]
# [SOURce<HW>]:[BB]:ILS:[GS]:PHASe value: float = driver.source.bb.ils.gs.get_phase()
Sets the phase between the modulation signals of the upper and lower antenna lobe of the ILS glide slope signal. Zero crossing of the lower 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:[GS]:SDM value: float = driver.source.bb.ils.gs.get_sdm()
Sets the arithmetic sum of the modulation depths of the upper lobe (90 Hz) and lower lobe (150 Hz) for the ILS glide slope 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: AvionicIlsGsMode) None[source]
# [SOURce<HW>]:[BB]:ILS:[GS]:MODE driver.source.bb.ils.gs.set_mode(mode = enums.AvionicIlsGsMode.LLOBe)
Sets the operating mode for the ILS glide slope modulation signal.
- Parameters:
mode – NORM | ULOBe | LLOBe NORM ILS glide slope modulation is active. ULOBe Amplitude modulation of the output signal with the upper lobe (90Hz) signal component of the ILS glide slope signal is active. LLOBe Amplitude modulation of the output signal with the lower lobe (150Hz) signal component of the ILS glide slope signal is active.
- set_phase(phase: float) None[source]
# [SOURce<HW>]:[BB]:ILS:[GS]:PHASe driver.source.bb.ils.gs.set_phase(phase = 1.0)
Sets the phase between the modulation signals of the upper and lower antenna lobe of the ILS glide slope signal. Zero crossing of the lower 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:[GS]:SDM driver.source.bb.ils.gs.set_sdm(sdm = 1.0)
Sets the arithmetic sum of the modulation depths of the upper lobe (90 Hz) and lower lobe (150 Hz) for the ILS glide slope 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
gs_copy = driver.source.bb.ils.gs.clone()
Subgroups