Source code for RsFsw.Implementations.Applications.K18_AmplifierEt.Sense.Pservoing.Max.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, max_iterations: float) -> None: """ ``[SENSe]:PSERvoing:MAX:ITERation`` \n Snippet: ``driver.applications.k18AmplifierEt.sense.pservoing.max.iteration.set(max_iterations = 1.0)`` \n Sets and queries the maximum number of iteratons during the power servoing sequence. :param max_iterations: numeric value """ param = Conversions.decimal_value_to_str(max_iterations) self._core.io.write(f'SENSe:PSERvoing:MAX:ITERation {param}')
[docs] def get(self) -> float: """ ``[SENSe]:PSERvoing:MAX:ITERation`` \n Snippet: ``value: float = driver.applications.k18AmplifierEt.sense.pservoing.max.iteration.get()`` \n Sets and queries the maximum number of iteratons during the power servoing sequence. :return: max_iterations: numeric value """ response = self._core.io.query_str(f'SENSe:PSERvoing:MAX:ITERation?') return Conversions.str_to_float(response)