[docs]classOffsetCls:"""Offset commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("offset",core,parent)
[docs]defset(self,frequency_offset:float)->None:"""SCPI: 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. \n :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]defget(self)->float:"""SCPI: 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. \n :return: frequency_offset: numeric value Unit: HZ"""response=self._core.io.query_str(f'CONFigure:GENerator:NPRatio:FREQuency:OFFSet?')returnConversions.str_to_float(response)