Source code for RsCMPX_NrFr1Meas.Implementations.NrSubMeas.MultiEval

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class MultiEvalCls:
	"""
	| Commands in total: 588
	| Subgroups: 13
	| Direct child commands: 3
	"""

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

	@property
	def state(self):
		"""
		| Commands in total: 2
		| Subgroups: 1
		| Direct child commands: 1
		"""
		if not hasattr(self, '_state'):
			from .State import StateCls
			self._state = StateCls(self._core, self._cmd_group)
		return self._state

	@property
	def referenceMarker(self):
		"""
		| Commands in total: 2
		| Subgroups: 2
		| Direct child commands: 0
		"""
		if not hasattr(self, '_referenceMarker'):
			from .ReferenceMarker import ReferenceMarkerCls
			self._referenceMarker = ReferenceMarkerCls(self._core, self._cmd_group)
		return self._referenceMarker

	@property
	def amarker(self):
		"""
		| Commands in total: 2
		| Subgroups: 2
		| Direct child commands: 0
		"""
		if not hasattr(self, '_amarker'):
			from .Amarker import AmarkerCls
			self._amarker = AmarkerCls(self._core, self._cmd_group)
		return self._amarker

	@property
	def dmarker(self):
		"""
		| Commands in total: 2
		| Subgroups: 2
		| Direct child commands: 0
		"""
		if not hasattr(self, '_dmarker'):
			from .Dmarker import DmarkerCls
			self._dmarker = DmarkerCls(self._core, self._cmd_group)
		return self._dmarker

	@property
	def cc(self):
		"""
		| Commands in total: 100
		| Subgroups: 2
		| Direct child commands: 0
		"""
		if not hasattr(self, '_cc'):
			from .Cc import CcCls
			self._cc = CcCls(self._core, self._cmd_group)
		return self._cc

	@property
	def trace(self):
		"""
		| Commands in total: 52
		| Subgroups: 5
		| Direct child commands: 0
		"""
		if not hasattr(self, '_trace'):
			from .Trace import TraceCls
			self._trace = TraceCls(self._core, self._cmd_group)
		return self._trace

	@property
	def vfThroughput(self):
		"""
		| Commands in total: 1
		| Subgroups: 0
		| Direct child commands: 1
		"""
		if not hasattr(self, '_vfThroughput'):
			from .VfThroughput import VfThroughputCls
			self._vfThroughput = VfThroughputCls(self._core, self._cmd_group)
		return self._vfThroughput

	@property
	def seMask(self):
		"""
		| Commands in total: 22
		| Subgroups: 9
		| Direct child commands: 0
		"""
		if not hasattr(self, '_seMask'):
			from .SeMask import SeMaskCls
			self._seMask = SeMaskCls(self._core, self._cmd_group)
		return self._seMask

	@property
	def aclr(self):
		"""
		| Commands in total: 14
		| Subgroups: 5
		| Direct child commands: 0
		"""
		if not hasattr(self, '_aclr'):
			from .Aclr import AclrCls
			self._aclr = AclrCls(self._core, self._cmd_group)
		return self._aclr

	@property
	def layer(self):
		"""
		| Commands in total: 14
		| Subgroups: 1
		| Direct child commands: 0
		"""
		if not hasattr(self, '_layer'):
			from .Layer import LayerCls
			self._layer = LayerCls(self._core, self._cmd_group)
		return self._layer

	@property
	def pmonitor(self):
		"""
		| Commands in total: 10
		| Subgroups: 5
		| Direct child commands: 0
		"""
		if not hasattr(self, '_pmonitor'):
			from .Pmonitor import PmonitorCls
			self._pmonitor = PmonitorCls(self._core, self._cmd_group)
		return self._pmonitor

	@property
	def txPower(self):
		"""
		| Commands in total: 10
		| Subgroups: 5
		| Direct child commands: 0
		"""
		if not hasattr(self, '_txPower'):
			from .TxPower import TxPowerCls
			self._txPower = TxPowerCls(self._core, self._cmd_group)
		return self._txPower

	@property
	def listPy(self):
		"""
		| Commands in total: 354
		| Subgroups: 7
		| Direct child commands: 0
		"""
		if not hasattr(self, '_listPy'):
			from .ListPy import ListPyCls
			self._listPy = ListPyCls(self._core, self._cmd_group)
		return self._listPy

[docs] def initiate(self, opc_timeout_ms: int = -1) -> None: """ ``INITiate:NRSub:MEASurement<Instance>:MEValuation`` \n Snippet: ``driver.nrSubMeas.multiEval.initiate()`` \n Starts, stops or aborts the measurement: \n - The INITiate:... command starts or restarts the measurement. The measurement enters the RUN state. - The STOP:... command halts the measurement immediately. The measurement enters the RDY state. Measurement results are kept. The resources remain allocated to the measurement. - The ABORt:... command halts the measurement immediately. The measurement enters the OFF state. All measurement values are set to NAV. Allocated resources are released. To query the current measurement state, use FETCh...STATe?. :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call. """ self._core.io.write_with_opc(f'INITiate:NRSub:MEASurement<Instance>:MEValuation', opc_timeout_ms)
[docs] def stop(self) -> None: """ ``STOP:NRSub:MEASurement<Instance>:MEValuation`` \n Snippet: ``driver.nrSubMeas.multiEval.stop()`` \n Starts, stops or aborts the measurement: \n - The INITiate:... command starts or restarts the measurement. The measurement enters the RUN state. - The STOP:... command halts the measurement immediately. The measurement enters the RDY state. Measurement results are kept. The resources remain allocated to the measurement. - The ABORt:... command halts the measurement immediately. The measurement enters the OFF state. All measurement values are set to NAV. Allocated resources are released. To query the current measurement state, use FETCh...STATe?. """ self._core.io.write(f'STOP:NRSub:MEASurement<Instance>:MEValuation')
[docs] def stop_with_opc(self, opc_timeout_ms: int = -1) -> None: """ ``STOP:NRSub:MEASurement<Instance>:MEValuation`` \n Snippet: ``driver.nrSubMeas.multiEval.stop_with_opc()`` \n Starts, stops or aborts the measurement: \n - The INITiate:... command starts or restarts the measurement. The measurement enters the RUN state. - The STOP:... command halts the measurement immediately. The measurement enters the RDY state. Measurement results are kept. The resources remain allocated to the measurement. - The ABORt:... command halts the measurement immediately. The measurement enters the OFF state. All measurement values are set to NAV. Allocated resources are released. To query the current measurement state, use FETCh...STATe?. Same as stop, but waits for the operation to complete before continuing further. Use the RsCMPX_NrFr1Meas.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'STOP:NRSub:MEASurement<Instance>:MEValuation', opc_timeout_ms)
[docs] def abort(self, opc_timeout_ms: int = -1) -> None: """ ``ABORt:NRSub:MEASurement<Instance>:MEValuation`` \n Snippet: ``driver.nrSubMeas.multiEval.abort()`` \n Starts, stops or aborts the measurement: \n - The INITiate:... command starts or restarts the measurement. The measurement enters the RUN state. - The STOP:... command halts the measurement immediately. The measurement enters the RDY state. Measurement results are kept. The resources remain allocated to the measurement. - The ABORt:... command halts the measurement immediately. The measurement enters the OFF state. All measurement values are set to NAV. Allocated resources are released. To query the current measurement state, use FETCh...STATe?. :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call. """ self._core.io.write_with_opc(f'ABORt:NRSub:MEASurement<Instance>:MEValuation', opc_timeout_ms)
def clone(self) -> 'MultiEvalCls': """ 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 = MultiEvalCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group