from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class StepCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("step", core, parent)
[docs]
def set(self, stepsize: float) -> None:
"""
``[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.
: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]
def get(self) -> float:
"""
``[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.
:return: stepsize: Range: 0 Hz to span, Unit: HZ
"""
response = self._core.io.query_str(f'SENSe:FREQuency:STEP?')
return Conversions.str_to_float(response)