Gs

SCPI Commands :

[SOURce<HW>]:[BB]:ILS:[GS]:MODE
[SOURce<HW>]:[BB]:ILS:[GS]:PHASe
[SOURce<HW>]:[BB]:ILS:[GS]:SDM
class GsCls[source]

Gs commands group definition. 17 total commands, 5 Subgroups, 3 group commands

get_mode() RsSmbv.enums.AvionicIlsGsMode[source]
# SCPI: [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.

return

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

return

phase: float Range: -60 to 120

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

return

sdm: float Range: 0 to 100

set_mode(mode: RsSmbv.enums.AvionicIlsGsMode) None[source]
# SCPI: [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.

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

param phase

float Range: -60 to 120

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

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.gs.clone()

Subgroups