[docs]classStepCls:"""Step commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("step",core,parent)
[docs]defset(self,stepsize:float)->None:"""SCPI: [SENSe]:FREQuency:STEP \n Snippet: driver.applications.k30NoiseFigure.sense.frequency.step.set(stepsize = 1.0) \n Defines the frequency stepsize in the frequency table. The stepsize corresponds to the distance from one measurement point to another. If you change the stepsize, the application creates a new frequency list. \n :param stepsize: Range: 0 Hz to span, Unit: HZ """param=Conversions.decimal_value_to_str(stepsize)self._core.io.write(f'SENSe:FREQuency:STEP {param}')
[docs]defget(self)->float:"""SCPI: [SENSe]:FREQuency:STEP \n Snippet: value: float = driver.applications.k30NoiseFigure.sense.frequency.step.get() \n Defines the frequency stepsize in the frequency table. The stepsize corresponds to the distance from one measurement point to another. If you change the stepsize, the application creates a new frequency list. \n :return: stepsize: Range: 0 Hz to span, Unit: HZ"""response=self._core.io.query_str(f'SENSe:FREQuency:STEP?')returnConversions.str_to_float(response)