Source code for RsSmbv.Implementations.Source.Phase

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class PhaseCls: """Phase commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("phase", core, parent) @property def reference(self): """reference commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_reference'): from .Reference import ReferenceCls self._reference = ReferenceCls(self._core, self._cmd_group) return self._reference
[docs] def get_value(self) -> float: """SCPI: [SOURce<HW>]:PHASe \n Snippet: value: float = driver.source.phase.get_value() \n Sets the phase variation relative to the current phase. \n :return: phase: float Range: -36000 to 36000 , Unit: DEG """ response = self._core.io.query_str('SOURce<HwInstance>:PHASe?') return Conversions.str_to_float(response)
[docs] def set_value(self, phase: float) -> None: """SCPI: [SOURce<HW>]:PHASe \n Snippet: driver.source.phase.set_value(phase = 1.0) \n Sets the phase variation relative to the current phase. \n :param phase: float Range: -36000 to 36000 , Unit: DEG """ param = Conversions.decimal_value_to_str(phase) self._core.io.write(f'SOURce<HwInstance>:PHASe {param}')
def clone(self) -> 'PhaseCls': """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 = PhaseCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group