from ...Internal.Core import Core
from ...Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]
class SourceCls:
"""Source commands group definition. 259 total commands, 7 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("source", core, parent)
@property
def areGenerator(self):
"""areGenerator commands group. 17 Sub-classes, 0 commands."""
if not hasattr(self, '_areGenerator'):
from .AreGenerator import AreGeneratorCls
self._areGenerator = AreGeneratorCls(self._core, self._cmd_group)
return self._areGenerator
@property
def bb(self):
"""bb commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_bb'):
from .Bb import BbCls
self._bb = BbCls(self._core, self._cmd_group)
return self._bb
@property
def inputPy(self):
"""inputPy commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_inputPy'):
from .InputPy import InputPyCls
self._inputPy = InputPyCls(self._core, self._cmd_group)
return self._inputPy
@property
def modulation(self):
"""modulation commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_modulation'):
from .Modulation import ModulationCls
self._modulation = ModulationCls(self._core, self._cmd_group)
return self._modulation
@property
def path(self):
"""path commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_path'):
from .Path import PathCls
self._path = PathCls(self._core, self._cmd_group)
return self._path
@property
def power(self):
"""power commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_power'):
from .Power import PowerCls
self._power = PowerCls(self._core, self._cmd_group)
return self._power
@property
def roscillator(self):
"""roscillator commands group. 3 Sub-classes, 2 commands."""
if not hasattr(self, '_roscillator'):
from .Roscillator import RoscillatorCls
self._roscillator = RoscillatorCls(self._core, self._cmd_group)
return self._roscillator
[docs]
def preset(self) -> None:
"""SCPI: SOURce<HW>:PRESet \n
Snippet: driver.source.preset() \n
Presets all parameters which are related to the selected signal path. \n
"""
self._core.io.write(f'SOURce<HwInstance>:PRESet')
[docs]
def preset_with_opc(self, opc_timeout_ms: int = -1) -> None:
"""SCPI: SOURce<HW>:PRESet \n
Snippet: driver.source.preset_with_opc() \n
Presets all parameters which are related to the selected signal path. \n
Same as preset, but waits for the operation to complete before continuing further. Use the RsAreg800.utilities.opc_timeout_set() to set the timeout value. \n
:param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call."""
self._core.io.write_with_opc(f'SOURce<HwInstance>:PRESet', opc_timeout_ms)
def clone(self) -> 'SourceCls':
"""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 = SourceCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group