[docs]classDeviationCls:"""Deviation commands group definition. 3 total commands, 0 Subgroups, 3 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("deviation",core,parent)# noinspection PyTypeChecker
[docs]defget_mode(self)->enums.ModulationDevMode:"""SCPI: [SOURce<HW>]:FM:DEViation:MODE \n Snippet: value: enums.ModulationDevMode = driver.source.fm.deviation.get_mode() \n Selects the coupling mode. The coupling mode parameter also determines the mode for fixing the total deviation. \n :return: fm_dev_mode: UNCoupled| TOTal| RATio UNCoupled Does not couple the LF signals. The deviation values of both paths are independent. TOTal Couples the deviation of both paths. RATio Couples the deviation ratio of both paths """response=self._core.io.query_str('SOURce<HwInstance>:FM:DEViation:MODE?')returnConversions.str_to_scalar_enum(response,enums.ModulationDevMode)
[docs]defset_mode(self,fm_dev_mode:enums.ModulationDevMode)->None:"""SCPI: [SOURce<HW>]:FM:DEViation:MODE \n Snippet: driver.source.fm.deviation.set_mode(fm_dev_mode = enums.ModulationDevMode.RATio) \n Selects the coupling mode. The coupling mode parameter also determines the mode for fixing the total deviation. \n :param fm_dev_mode: UNCoupled| TOTal| RATio UNCoupled Does not couple the LF signals. The deviation values of both paths are independent. TOTal Couples the deviation of both paths. RATio Couples the deviation ratio of both paths """param=Conversions.enum_scalar_to_str(fm_dev_mode,enums.ModulationDevMode)self._core.io.write(f'SOURce<HwInstance>:FM:DEViation:MODE {param}')
[docs]defget_sum(self)->float:"""SCPI: [SOURce<HW>]:FM:DEViation:SUM \n Snippet: value: float = driver.source.fm.deviation.get_sum() \n Sets the total deviation of the LF signal when using combined signal sources in frequency modulation. \n :return: fm_dev_sum: float Range: 0 to 40E6 """response=self._core.io.query_str('SOURce<HwInstance>:FM:DEViation:SUM?')returnConversions.str_to_float(response)
[docs]defset_sum(self,fm_dev_sum:float)->None:"""SCPI: [SOURce<HW>]:FM:DEViation:SUM \n Snippet: driver.source.fm.deviation.set_sum(fm_dev_sum = 1.0) \n Sets the total deviation of the LF signal when using combined signal sources in frequency modulation. \n :param fm_dev_sum: float Range: 0 to 40E6 """param=Conversions.decimal_value_to_str(fm_dev_sum)self._core.io.write(f'SOURce<HwInstance>:FM:DEViation:SUM {param}')
[docs]defset(self,deviation:float,generatorIx=repcap.GeneratorIx.Default)->None:"""SCPI: [SOURce<HW>]:FM<CH>:[DEViation] \n Snippet: driver.source.fm.deviation.set(deviation = 1.0, generatorIx = repcap.GeneratorIx.Default) \n Sets the modulation deviation of the frequency modulation in Hz. \n :param deviation: float The maximum deviation depends on the RF frequency and the selected modulation mode (see the specifiacton document) . Range: 0 to max :param generatorIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fm') """param=Conversions.decimal_value_to_str(deviation)generatorIx_cmd_val=self._cmd_group.get_repcap_cmd_value(generatorIx,repcap.GeneratorIx)self._core.io.write(f'SOURce<HwInstance>:FM{generatorIx_cmd_val}:DEViation {param}')
[docs]defget(self,generatorIx=repcap.GeneratorIx.Default)->float:"""SCPI: [SOURce<HW>]:FM<CH>:[DEViation] \n Snippet: value: float = driver.source.fm.deviation.get(generatorIx = repcap.GeneratorIx.Default) \n Sets the modulation deviation of the frequency modulation in Hz. \n :param generatorIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fm') :return: deviation: float The maximum deviation depends on the RF frequency and the selected modulation mode (see the specifiacton document) . Range: 0 to max"""generatorIx_cmd_val=self._cmd_group.get_repcap_cmd_value(generatorIx,repcap.GeneratorIx)response=self._core.io.query_str(f'SOURce<HwInstance>:FM{generatorIx_cmd_val}:DEViation?')returnConversions.str_to_float(response)