Vor
SCPI Commands :
[SOURce<HW>]:BB:VOR:PRESet
[SOURce<HW>]:BB:VOR:STATe
[SOURce<HW>]:[BB]:VOR:MODE
- Commands in total: 45Subgroups: 10Direct child commands: 3
- get_mode() AvionicVorMode[source]
# [SOURce<HW>]:[BB]:VOR:MODE value: enums.AvionicVorMode = driver.source.bb.vor.get_mode()
Sets the operating mode for the VOR modulation signal.
- Returns:
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 method
RsSmbv.source.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 methodRsSmbv.source.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 methodRsSmbv.source.bb.vor.subcarrier.depth(). The frequency deviation can be set with methodRsSmbv.source.bb.vor.reference.deviation().
- get_state() bool[source]
# [SOURce<HW>]:BB:VOR:STATe value: bool = driver.source.bb.vor.get_state()
Activates/deactivates the avionic standard.
- Returns:
state: 1 | ON | 0| OFF
- preset() None[source]
# [SOURce<HW>]:BB:VOR:PRESet driver.source.bb.vor.preset()
Sets the parameters of the digital standard to their default values (
*RSTvalues 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]
# [SOURce<HW>]:BB:VOR:PRESet driver.source.bb.vor.preset_with_opc()
Sets the parameters of the digital standard to their default values (
*RSTvalues 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.
- Parameters:
opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.
- set_mode(mode: AvionicVorMode) None[source]
# [SOURce<HW>]:[BB]:VOR:MODE driver.source.bb.vor.set_mode(mode = enums.AvionicVorMode.FMSubcarrier)
Sets the operating mode for the VOR modulation signal.
- Parameters:
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 method
RsSmbv.source.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 methodRsSmbv.source.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 methodRsSmbv.source.bb.vor.subcarrier.depth(). The frequency deviation can be set with methodRsSmbv.source.bb.vor.reference.deviation().
- set_state(state: bool) None[source]
# [SOURce<HW>]:BB:VOR:STATe driver.source.bb.vor.set_state(state = False)
Activates/deactivates the avionic standard.
- Parameters:
state – 1 | ON | 0| OFF
Cloning the Group
# Create a copy of the original group, that exists independently
vor_copy = driver.source.bb.vor.clone()
Subgroups