Source code for RsSmw.Implementations.Source.Sweep

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class SweepCls:
	"""
	| Commands in total: 27
	| Subgroups: 3
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("sweep", core, parent)

	@property
	def combined(self):
		"""
		| Commands in total: 6
		| Subgroups: 1
		| Direct child commands: 5
		"""
		if not hasattr(self, '_combined'):
			from .Combined import CombinedCls
			self._combined = CombinedCls(self._core, self._cmd_group)
		return self._combined

	@property
	def power(self):
		"""
		| Commands in total: 10
		| Subgroups: 3
		| Direct child commands: 7
		"""
		if not hasattr(self, '_power'):
			from .Power import PowerCls
			self._power = PowerCls(self._core, self._cmd_group)
		return self._power

	@property
	def frequency(self):
		"""
		| Commands in total: 10
		| Subgroups: 2
		| Direct child commands: 7
		"""
		if not hasattr(self, '_frequency'):
			from .Frequency import FrequencyCls
			self._frequency = FrequencyCls(self._core, self._cmd_group)
		return self._frequency

[docs] def reset_all(self) -> None: """ ``[SOURce<HW>]:SWEep:RESet:[ALL]`` \n Snippet: ``driver.source.sweep.reset_all()`` \n Resets all active sweeps to the starting point. """ self._core.io.write(f'SOURce<HwInstance>:SWEep:RESet:ALL')
[docs] def reset_all_with_opc(self, opc_timeout_ms: int = -1) -> None: """ ``[SOURce<HW>]:SWEep:RESet:[ALL]`` \n Snippet: ``driver.source.sweep.reset_all_with_opc()`` \n Resets all active sweeps to the starting point. Same as reset_all, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value. :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call. """ self._core.io.write_with_opc(f'SOURce<HwInstance>:SWEep:RESet:ALL', opc_timeout_ms)
def clone(self) -> 'SweepCls': """ 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 = SweepCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group