AfSettings

SCPI Command:

SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:CONNector
SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:ENABle
SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:SDM
SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:DDM
SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:POFFset
class AfSettingsCls[source]

AfSettings commands group definition. 12 total commands, 4 Subgroups, 5 group commands

get_connector() AudioConnector[source]
# SCPI: SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:CONNector
value: enums.AudioConnector = driver.source.avionics.generator.ils.localizer.afSettings.get_connector()

Selects the output connector for the generated AF signal (AF1 OUT or AF2 OUT) . If you want to route both the localizer signal and the glide slope signal to an AF output, you must configure different connectors for the two signals.

return:

connector: AF1O | AF2O

get_ddm() float[source]
# SCPI: SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:DDM
value: float = driver.source.avionics.generator.ils.localizer.afSettings.get_ddm()

Sets the difference in modulation depth between the two lobes. The maximum allowed absolute value is limited by the configured SDM value.

return:

ddm: Range: -100 % to 100 %, Unit: %

get_enable() bool[source]
# SCPI: SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:ENABle
value: bool = driver.source.avionics.generator.ils.localizer.afSettings.get_enable()

Enables or disables the modulation of the RF carrier with the audio tones for the two lobes.

return:

enable: OFF | ON

get_poffset() float[source]
# SCPI: SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:POFFset
value: float = driver.source.avionics.generator.ils.localizer.afSettings.get_poffset()

Sets the phase offset between the audio signals of the two lobes.

return:

poffset: Range: -60 deg to 120 deg, Unit: deg

get_sdm() float[source]
# SCPI: SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:SDM
value: float = driver.source.avionics.generator.ils.localizer.afSettings.get_sdm()

Sets the sum of depth of modulations (SDM) .

return:

mod_depth: Range: 0 % to 100 %, Unit: %

set_connector(connector: AudioConnector) None[source]
# SCPI: SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:CONNector
driver.source.avionics.generator.ils.localizer.afSettings.set_connector(connector = enums.AudioConnector.AF1O)

Selects the output connector for the generated AF signal (AF1 OUT or AF2 OUT) . If you want to route both the localizer signal and the glide slope signal to an AF output, you must configure different connectors for the two signals.

param connector:

AF1O | AF2O

set_ddm(ddm: float) None[source]
# SCPI: SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:DDM
driver.source.avionics.generator.ils.localizer.afSettings.set_ddm(ddm = 1.0)

Sets the difference in modulation depth between the two lobes. The maximum allowed absolute value is limited by the configured SDM value.

param ddm:

Range: -100 % to 100 %, Unit: %

set_enable(enable: bool) None[source]
# SCPI: SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:ENABle
driver.source.avionics.generator.ils.localizer.afSettings.set_enable(enable = False)

Enables or disables the modulation of the RF carrier with the audio tones for the two lobes.

param enable:

OFF | ON

set_poffset(poffset: float) None[source]
# SCPI: SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:POFFset
driver.source.avionics.generator.ils.localizer.afSettings.set_poffset(poffset = 1.0)

Sets the phase offset between the audio signals of the two lobes.

param poffset:

Range: -60 deg to 120 deg, Unit: deg

set_sdm(mod_depth: float) None[source]
# SCPI: SOURce:AVIonics:GENerator<Instance>:ILS:LOCalizer:AFSettings:SDM
driver.source.avionics.generator.ils.localizer.afSettings.set_sdm(mod_depth = 1.0)

Sets the sum of depth of modulations (SDM) .

param mod_depth:

Range: 0 % to 100 %, Unit: %

Cloning the Group

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

Subgroups