Source code for RsFsw.Implementations.Sense.Adjust.Configure.Level.Duration

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DurationCls: """Duration commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("duration", core, parent) @property def mode(self): """mode commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_mode'): from .Mode import ModeCls self._mode = ModeCls(self._core, self._cmd_group) return self._mode
[docs] def set(self, duration: float) -> None: """SCPI: [SENSe]:ADJust:CONFigure:LEVel:DURation \n Snippet: driver.sense.adjust.configure.level.duration.set(duration = 1.0) \n To determine the ideal reference level, the FSW performs a measurement on the current input data. This command defines the length of the measurement if [SENSe:]ADJust:CONFigure:LEVel:DURation:MODE is set to MANual. \n :param duration: Numeric value in seconds Range: 0.001 to 16000.0, Unit: s """ param = Conversions.decimal_value_to_str(duration) self._core.io.write(f'SENSe:ADJust:CONFigure:LEVel:DURation {param}')
[docs] def get(self) -> float: """SCPI: [SENSe]:ADJust:CONFigure:LEVel:DURation \n Snippet: value: float = driver.sense.adjust.configure.level.duration.get() \n To determine the ideal reference level, the FSW performs a measurement on the current input data. This command defines the length of the measurement if [SENSe:]ADJust:CONFigure:LEVel:DURation:MODE is set to MANual. \n :return: duration: Numeric value in seconds Range: 0.001 to 16000.0, Unit: s""" response = self._core.io.query_str(f'SENSe:ADJust:CONFigure:LEVel:DURation?') return Conversions.str_to_float(response)
def clone(self) -> 'DurationCls': """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 = DurationCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group