Source code for RsFsw.Implementations.Instrument.Couple.Generator.Center.Offset

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class OffsetCls: """Offset commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("offset", core, parent)
[docs] def set(self, frequency: float) -> None: """SCPI: INSTrument:COUPle:GENerator:CENTer:OFFSet \n Snippet: driver.instrument.couple.generator.center.offset.set(frequency = 1.0) \n Defines a fixed offset to the center frequency of the FSW for the coupled signal generator. This command requires the method RsFsw.Instrument.Couple.Generator.State.set and the method RsFsw.Instrument.Couple.Generator.Center.State.set to be ON. \n :param frequency: Unit: HZ """ param = Conversions.decimal_value_to_str(frequency) self._core.io.write(f'INSTrument:COUPle:GENerator:CENTer:OFFSet {param}')
[docs] def get(self) -> float: """SCPI: INSTrument:COUPle:GENerator:CENTer:OFFSet \n Snippet: value: float = driver.instrument.couple.generator.center.offset.get() \n Defines a fixed offset to the center frequency of the FSW for the coupled signal generator. This command requires the method RsFsw.Instrument.Couple.Generator.State.set and the method RsFsw.Instrument.Couple.Generator.Center.State.set to be ON. \n :return: frequency: Unit: HZ""" response = self._core.io.query_str(f'INSTrument:COUPle:GENerator:CENTer:OFFSet?') return Conversions.str_to_float(response)