Gslope

SCPI Commands :

[SOURce<HW>]:[BB]:ILS:[GSLope]:MODE
[SOURce<HW>]:[BB]:ILS:[GSLope]:PHASe
[SOURce<HW>]:[BB]:ILS:[GSLope]:SDM
Commands in total: 17
Subgroups: 5
Direct child commands: 3
get_mode() AvionicIlsGsMode[source]
# [SOURce<HW>]:[BB]:ILS:[GSLope]:MODE
value: enums.AvionicIlsGsMode = driver.source.bb.ils.gslope.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:[GSLope]:PHASe
value: float = driver.source.bb.ils.gslope.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:[GSLope]:SDM
value: float = driver.source.bb.ils.gslope.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:[GSLope]:MODE
driver.source.bb.ils.gslope.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:[GSLope]:PHASe
driver.source.bb.ils.gslope.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:[GSLope]:SDM
driver.source.bb.ils.gslope.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
gslope_copy = driver.source.bb.ils.gslope.clone()

Subgroups