from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class PhaseCls:
"""
| Commands in total: 2
| Subgroups: 1
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("phase", core, parent)
@property
def reference(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
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:
"""
``[SOURce<HW>]:PHASe`` \n
Snippet: ``value: float = driver.source.phase.get_value()`` \n
Sets the phase variation relative to the current phase.
:return: phase: float Range: -720 to 720, 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:
"""
``[SOURce<HW>]:PHASe`` \n
Snippet: ``driver.source.phase.set_value(phase = 1.0)`` \n
Sets the phase variation relative to the current phase.
:param phase: float Range: -720 to 720, 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