from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]
class OffsetCls:
"""Offset commands group definition. 2 total commands, 1 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("offset", core, parent)
@property
def state(self):
"""state commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_state'):
from .State import StateCls
self._state = StateCls(self._core, self._cmd_group)
return self._state
[docs]
def set(self, offset: float, channel=repcap.Channel.Default) -> None:
"""SCPI: SENSe<CH>:[POWer]:SWEep:FREQuency:[SENSor]:OFFSet \n
Snippet: driver.sense.power.sweep.frequency.sensor.offset.set(offset = 1.0, channel = repcap.Channel.Default) \n
Defines the level offset at the sensor input in dB. Activate the offset with the command method RsSmab.Sense.Power.Sweep.
Frequency.Sensor.Offset.State.set. \n
:param offset: float Range: -100 to 100
:param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Sense')
"""
param = Conversions.decimal_value_to_str(offset)
channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel)
self._core.io.write(f'SENSe{channel_cmd_val}:POWer:SWEep:FREQuency:SENSor:OFFSet {param}')
[docs]
def get(self, channel=repcap.Channel.Default) -> float:
"""SCPI: SENSe<CH>:[POWer]:SWEep:FREQuency:[SENSor]:OFFSet \n
Snippet: value: float = driver.sense.power.sweep.frequency.sensor.offset.get(channel = repcap.Channel.Default) \n
Defines the level offset at the sensor input in dB. Activate the offset with the command method RsSmab.Sense.Power.Sweep.
Frequency.Sensor.Offset.State.set. \n
:param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Sense')
:return: offset: float Range: -100 to 100"""
channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel)
response = self._core.io.query_str(f'SENSe{channel_cmd_val}:POWer:SWEep:FREQuency:SENSor:OFFSet?')
return Conversions.str_to_float(response)
def clone(self) -> 'OffsetCls':
"""Clones the group by creating new object from it and its whole existing subgroups
Also copies all the existing default Repeated Capabilities setting,
which you can change independently without affecting the original group"""
new_group = OffsetCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group