Source code for RsSmbv.Implementations.Source.LfOutput.Sweep.Frequency.Step

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class StepCls: """Step commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("step", core, parent)
[docs] def get_logarithmic(self) -> float: """SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:LOGarithmic \n Snippet: value: float = driver.source.lfOutput.sweep.frequency.step.get_logarithmic() \n Sets the step width factor for logarithmic sweeps to calculate the frequencies of the steps. For information on how the value is calculated and the interdependency with other parameters, see 'Correlating parameters in sweep mode' \n :return: logarithmic: float The unit is mandatory Range: 0.01 to 100, Unit: PCT """ response = self._core.io.query_str('SOURce<HwInstance>:LFOutput:SWEep:FREQuency:STEP:LOGarithmic?') return Conversions.str_to_float(response)
[docs] def set_logarithmic(self, logarithmic: float) -> None: """SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:LOGarithmic \n Snippet: driver.source.lfOutput.sweep.frequency.step.set_logarithmic(logarithmic = 1.0) \n Sets the step width factor for logarithmic sweeps to calculate the frequencies of the steps. For information on how the value is calculated and the interdependency with other parameters, see 'Correlating parameters in sweep mode' \n :param logarithmic: float The unit is mandatory Range: 0.01 to 100, Unit: PCT """ param = Conversions.decimal_value_to_str(logarithmic) self._core.io.write(f'SOURce<HwInstance>:LFOutput:SWEep:FREQuency:STEP:LOGarithmic {param}')
[docs] def get_linear(self) -> float: """SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:[LINear] \n Snippet: value: float = driver.source.lfOutput.sweep.frequency.step.get_linear() \n Sets the step width for the linear sweep. For information on how the value is calculated and the interdependency with other parameters, see 'Correlating parameters in sweep mode' \n :return: linear: float Range: 0.1 to STOP-STARt """ response = self._core.io.query_str('SOURce<HwInstance>:LFOutput:SWEep:FREQuency:STEP:LINear?') return Conversions.str_to_float(response)
[docs] def set_linear(self, linear: float) -> None: """SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:[LINear] \n Snippet: driver.source.lfOutput.sweep.frequency.step.set_linear(linear = 1.0) \n Sets the step width for the linear sweep. For information on how the value is calculated and the interdependency with other parameters, see 'Correlating parameters in sweep mode' \n :param linear: float Range: 0.1 to STOP-STARt """ param = Conversions.decimal_value_to_str(linear) self._core.io.write(f'SOURce<HwInstance>:LFOutput:SWEep:FREQuency:STEP:LINear {param}')