Vor

SCPI Commands :

[SOURce<HW>]:BB:VOR:PRESet
[SOURce<HW>]:BB:VOR:STATe
[SOURce<HW>]:[BB]:VOR:MODE
class VorCls[source]

Vor commands group definition. 45 total commands, 10 Subgroups, 3 group commands

get_mode() RsSmbv.enums.AvionicVorMode[source]
# SCPI: [SOURce<HW>]:[BB]:VOR:MODE
value: enums.AvionicVorMode = driver.source.bb.vor.get_mode()

Sets the operating mode for the VOR modulation signal.

return

mode: NORM| VAR| SUBCarrier| FMSubcarrier NORM VOR modulation is active. VAR Amplitude modulation of the output signal with the variable signal component (30Hz signal content) of the VOR signal. The modulation depth of the 30 Hz signal can be set with [:SOURcehw][:BB]:VOR:VAR[:DEPTh]. SUBCarrier Amplitude modulation of the output signal with the unmodulated FM carrier (9960Hz) of the VOR signal. The modulation depth of the 30 Hz signal can be set with [:SOURcehw][:BB]:VOR:SUBCarrier:DEPTh. FMSubcarrier Amplitude modulation of the output signal with the frequency modulated FM carrier (9960Hz) of the VOR signal. The modulation depth of the 30 Hz signal can be set with [:SOURcehw][:BB]:VOR:SUBCarrier:DEPTh. The frequency deviation can be set with [:SOURcehw][:BB]:VOR:REFerence[:DEViation].

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:VOR:STATe
value: bool = driver.source.bb.vor.get_state()

Activates/deactivates the avionic standard.

return

state: 1| ON| 0| OFF

preset() None[source]
# SCPI: [SOURce<HW>]:BB:VOR:PRESet
driver.source.bb.vor.preset()

Sets the parameters of the digital standard to their default values (*RST values specified for the commands) . Not affected is the state set with the command SOURce<hw>:BB:VOR|ILS|DME:STATe.

preset_with_opc(opc_timeout_ms: int = - 1) None[source]
# SCPI: [SOURce<HW>]:BB:VOR:PRESet
driver.source.bb.vor.preset_with_opc()

Sets the parameters of the digital standard to their default values (*RST values specified for the commands) . Not affected is the state set with the command SOURce<hw>:BB:VOR|ILS|DME:STATe.

Same as preset, but waits for the operation to complete before continuing further. Use the RsSmbv.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms

Maximum time to wait in milliseconds, valid only for this call.

set_mode(mode: RsSmbv.enums.AvionicVorMode) None[source]
# SCPI: [SOURce<HW>]:[BB]:VOR:MODE
driver.source.bb.vor.set_mode(mode = enums.AvionicVorMode.FMSubcarrier)

Sets the operating mode for the VOR modulation signal.

param mode

NORM| VAR| SUBCarrier| FMSubcarrier NORM VOR modulation is active. VAR Amplitude modulation of the output signal with the variable signal component (30Hz signal content) of the VOR signal. The modulation depth of the 30 Hz signal can be set with [:SOURcehw][:BB]:VOR:VAR[:DEPTh]. SUBCarrier Amplitude modulation of the output signal with the unmodulated FM carrier (9960Hz) of the VOR signal. The modulation depth of the 30 Hz signal can be set with [:SOURcehw][:BB]:VOR:SUBCarrier:DEPTh. FMSubcarrier Amplitude modulation of the output signal with the frequency modulated FM carrier (9960Hz) of the VOR signal. The modulation depth of the 30 Hz signal can be set with [:SOURcehw][:BB]:VOR:SUBCarrier:DEPTh. The frequency deviation can be set with [:SOURcehw][:BB]:VOR:REFerence[:DEViation].

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:VOR:STATe
driver.source.bb.vor.set_state(state = False)

Activates/deactivates the avionic standard.

param state

1| ON| 0| OFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.vor.clone()

Subgroups