[docs]classFrequencyCls:"""Frequency commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("frequency",core,parent)
[docs]defget_start(self)->float:"""SCPI: [SOURce<HW>]:COMBined:FREQuency:STARt \n Snippet: value: float = driver.source.combined.frequency.get_start() \n Sets the start frequency of the combined RF frequency / level sweep. See 'Correlating parameters in sweep mode'. \n :return: comb_freq_start: float Range: -59999E5 to 12E9 """response=self._core.io.query_str('SOURce<HwInstance>:COMBined:FREQuency:STARt?')returnConversions.str_to_float(response)
[docs]defset_start(self,comb_freq_start:float)->None:"""SCPI: [SOURce<HW>]:COMBined:FREQuency:STARt \n Snippet: driver.source.combined.frequency.set_start(comb_freq_start = 1.0) \n Sets the start frequency of the combined RF frequency / level sweep. See 'Correlating parameters in sweep mode'. \n :param comb_freq_start: float Range: -59999E5 to 12E9 """param=Conversions.decimal_value_to_str(comb_freq_start)self._core.io.write(f'SOURce<HwInstance>:COMBined:FREQuency:STARt {param}')
[docs]defget_stop(self)->float:"""SCPI: [SOURce<HW>]:COMBined:FREQuency:STOP \n Snippet: value: float = driver.source.combined.frequency.get_stop() \n Sets the end frequency of the combined RF frequency / level sweep. \n :return: comb_freq_stop: float Range: -59999E5 to 12E9 """response=self._core.io.query_str('SOURce<HwInstance>:COMBined:FREQuency:STOP?')returnConversions.str_to_float(response)
[docs]defset_stop(self,comb_freq_stop:float)->None:"""SCPI: [SOURce<HW>]:COMBined:FREQuency:STOP \n Snippet: driver.source.combined.frequency.set_stop(comb_freq_stop = 1.0) \n Sets the end frequency of the combined RF frequency / level sweep. \n :param comb_freq_stop: float Range: -59999E5 to 12E9 """param=Conversions.decimal_value_to_str(comb_freq_stop)self._core.io.write(f'SOURce<HwInstance>:COMBined:FREQuency:STOP {param}')