Source code for RsSmw.Implementations.Source.Regenerator.Simulation.Analyzer

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AnalyzerCls:
	"""
	| Commands in total: 2
	| Subgroups: 1
	| Direct child commands: 1
	"""

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

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

	# noinspection PyTypeChecker
[docs] def get_status(self) -> enums.RegSimFreqRefFswState: """ ``[SOURce<HW>]:REGenerator:SIMulation:ANALyzer:STATus`` \n Snippet: ``value: enums.RegSimFreqRefFswState = driver.source.regenerator.simulation.analyzer.get_status()`` \n Queries the frequency status. The command can be used only if a R&S FSW is connected to the R&S SMW200A. :return: status: VALid | UPDated """ response = self._core.io.query_str('SOURce<HwInstance>:REGenerator:SIMulation:ANALyzer:STATus?') return Conversions.str_to_scalar_enum(response, enums.RegSimFreqRefFswState)
[docs] def set_status(self, status: enums.RegSimFreqRefFswState) -> None: """ ``[SOURce<HW>]:REGenerator:SIMulation:ANALyzer:STATus`` \n Snippet: ``driver.source.regenerator.simulation.analyzer.set_status(status = enums.RegSimFreqRefFswState.UPDated)`` \n Queries the frequency status. The command can be used only if a R&S FSW is connected to the R&S SMW200A. :param status: VALid | UPDated """ param = Conversions.enum_scalar_to_str(status, enums.RegSimFreqRefFswState) self._core.io.write(f'SOURce<HwInstance>:REGenerator:SIMulation:ANALyzer:STATus {param}')
def clone(self) -> 'AnalyzerCls': """ 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 = AnalyzerCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group