Source code for RsSmbv.Implementations.Source.Am.Deviation

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DeviationCls: """Deviation commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("deviation", core, parent) # noinspection PyTypeChecker
[docs] def get_mode(self) -> enums.ModulationDevMode: """SCPI: [SOURce<HW>]:AM:DEViation:MODE \n Snippet: value: enums.ModulationDevMode = driver.source.am.deviation.get_mode() \n Selects the coupling mode. The coupling mode parameter also determines the mode for fixing the total depth. \n :return: am_dev_mode: UNCoupled| TOTal| RATio UNCoupled Does not couple the LF signals. The deviation depth values of both paths are independent. TOTal Couples the deviation depth of both paths. RATio Couples the deviation depth ratio of both paths """ response = self._core.io.query_str('SOURce<HwInstance>:AM:DEViation:MODE?') return Conversions.str_to_scalar_enum(response, enums.ModulationDevMode)
[docs] def set_mode(self, am_dev_mode: enums.ModulationDevMode) -> None: """SCPI: [SOURce<HW>]:AM:DEViation:MODE \n Snippet: driver.source.am.deviation.set_mode(am_dev_mode = enums.ModulationDevMode.RATio) \n Selects the coupling mode. The coupling mode parameter also determines the mode for fixing the total depth. \n :param am_dev_mode: UNCoupled| TOTal| RATio UNCoupled Does not couple the LF signals. The deviation depth values of both paths are independent. TOTal Couples the deviation depth of both paths. RATio Couples the deviation depth ratio of both paths """ param = Conversions.enum_scalar_to_str(am_dev_mode, enums.ModulationDevMode) self._core.io.write(f'SOURce<HwInstance>:AM:DEViation:MODE {param}')