Source code for RsCma.Implementations.Configure.GprfMeasurement.Spectrum.FreqSweep.Vbw

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class VbwCls: """Vbw commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("vbw", core, parent)
[docs] def get_auto(self) -> bool: """SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FSWeep:VBW:AUTO \n Snippet: value: bool = driver.configure.gprfMeasurement.spectrum.freqSweep.vbw.get_auto() \n Enables or disables automatic configuration of the video bandwidth (VBW) for the frequency sweep mode. \n :return: vbw_auto: OFF | ON """ response = self._core.io.query_str('CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FSWeep:VBW:AUTO?') return Conversions.str_to_bool(response)
[docs] def set_auto(self, vbw_auto: bool) -> None: """SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FSWeep:VBW:AUTO \n Snippet: driver.configure.gprfMeasurement.spectrum.freqSweep.vbw.set_auto(vbw_auto = False) \n Enables or disables automatic configuration of the video bandwidth (VBW) for the frequency sweep mode. \n :param vbw_auto: OFF | ON """ param = Conversions.bool_to_str(vbw_auto) self._core.io.write(f'CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FSWeep:VBW:AUTO {param}')
[docs] def get_value(self) -> float or bool: """SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FSWeep:VBW \n Snippet: value: float or bool = driver.configure.gprfMeasurement.spectrum.freqSweep.vbw.get_value() \n Selects the bandwidth of the video filter for the frequency sweep mode. Setting this value is only possible if the automatic VBW selection is switched off, see method RsCma.Configure.GprfMeasurement.Spectrum.FreqSweep.Vbw.auto. \n :return: vbw: (float or boolean) You can enter values between 10 Hz and 10 MHz. The setting is rounded to the closest of the following values: 10 / 20 / 30 / 50 / 100 / 200 / 300 / 500 Hz 1 / 2 / 3 / 5 / 10 / 20 / 30 / 50 / 100 / 200 / 300 / 500 kHz 1 / 2 / 3 / 5 / 10 MHz OFF disables the filter Unit: Hz """ response = self._core.io.query_str('CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FSWeep:VBW?') return Conversions.str_to_float_or_bool(response)
[docs] def set_value(self, vbw: float or bool) -> None: """SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FSWeep:VBW \n Snippet: driver.configure.gprfMeasurement.spectrum.freqSweep.vbw.set_value(vbw = 1.0) \n Selects the bandwidth of the video filter for the frequency sweep mode. Setting this value is only possible if the automatic VBW selection is switched off, see method RsCma.Configure.GprfMeasurement.Spectrum.FreqSweep.Vbw.auto. \n :param vbw: (float or boolean) You can enter values between 10 Hz and 10 MHz. The setting is rounded to the closest of the following values: 10 / 20 / 30 / 50 / 100 / 200 / 300 / 500 Hz 1 / 2 / 3 / 5 / 10 / 20 / 30 / 50 / 100 / 200 / 300 / 500 kHz 1 / 2 / 3 / 5 / 10 MHz OFF disables the filter Unit: Hz """ param = Conversions.decimal_or_bool_value_to_str(vbw) self._core.io.write(f'CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FSWeep:VBW {param}')