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

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, level: float) -> None: """ ``INSTrument:COUPle:GENerator:RLEVel:OFFSet`` \n Snippet: ``driver.instrument.couple.generator.refLevel.offset.set(level = 1.0)`` \n Defines a fixed offset to the reference level 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.refLevel.state.set()`` to be ON. :param level: Unit: DB """ param = Conversions.decimal_value_to_str(level) self._core.io.write(f'INSTrument:COUPle:GENerator:RLEVel:OFFSet {param}')
[docs] def get(self) -> float: """ ``INSTrument:COUPle:GENerator:RLEVel:OFFSet`` \n Snippet: ``value: float = driver.instrument.couple.generator.refLevel.offset.get()`` \n Defines a fixed offset to the reference level 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.refLevel.state.set()`` to be ON. :return: level: Unit: DB """ response = self._core.io.query_str(f'INSTrument:COUPle:GENerator:RLEVel:OFFSet?') return Conversions.str_to_float(response)