Source code for RsFsw.Implementations.Applications.K18_AmplifierEt.Configure.Hammerstein.Iteration

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


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

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

[docs] def set(self, level: float) -> None: """ ``CONFigure:HAMMerstein:ITERation`` \n Snippet: ``driver.applications.k18AmplifierEt.configure.hammerstein.iteration.set(level = 1.0)`` \n Configures the iteration step for the Hammerstein model. :param level: numeric value """ param = Conversions.decimal_value_to_str(level) self._core.io.write(f'CONFigure:HAMMerstein:ITERation {param}')
[docs] def get(self) -> float: """ ``CONFigure:HAMMerstein:ITERation`` \n Snippet: ``value: float = driver.applications.k18AmplifierEt.configure.hammerstein.iteration.get()`` \n Configures the iteration step for the Hammerstein model. :return: level: numeric value """ response = self._core.io.query_str(f'CONFigure:HAMMerstein:ITERation?') return Conversions.str_to_float(response)