from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class OffsetCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("offset", core, parent)
[docs]
def set(self, frequency_offset: float) -> None:
"""
``CONFigure:GENerator:NPRatio:FREQuency:OFFSet`` \n
Snippet: ``driver.configure.generator.npratio.frequency.offset.set(frequency_offset = 1.0)`` \n
Defines a fixed offset to be applied to the generator frequency.
:param frequency_offset: numeric value Unit: HZ
"""
param = Conversions.decimal_value_to_str(frequency_offset)
self._core.io.write(f'CONFigure:GENerator:NPRatio:FREQuency:OFFSet {param}')
[docs]
def get(self) -> float:
"""
``CONFigure:GENerator:NPRatio:FREQuency:OFFSet`` \n
Snippet: ``value: float = driver.configure.generator.npratio.frequency.offset.get()`` \n
Defines a fixed offset to be applied to the generator frequency.
:return: frequency_offset: numeric value Unit: HZ
"""
response = self._core.io.query_str(f'CONFigure:GENerator:NPRatio:FREQuency:OFFSet?')
return Conversions.str_to_float(response)