Source code for RsSmcv.Implementations.Source.Iq.Dpd.Output.Error

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class ErrorCls: """Error commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("error", core, parent)
[docs] def get_max(self) -> float: """SCPI: [SOURce<HW>]:IQ:DPD:OUTPut:ERRor:MAX \n Snippet: value: float = driver.source.iq.dpd.output.error.get_max() \n No command help available \n :return: maximum_error: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:IQ:DPD:OUTPut:ERRor:MAX?') return Conversions.str_to_float(response)
[docs] def set_max(self, maximum_error: float) -> None: """SCPI: [SOURce<HW>]:IQ:DPD:OUTPut:ERRor:MAX \n Snippet: driver.source.iq.dpd.output.error.set_max(maximum_error = 1.0) \n No command help available \n :param maximum_error: No help available """ param = Conversions.decimal_value_to_str(maximum_error) self._core.io.write(f'SOURce<HwInstance>:IQ:DPD:OUTPut:ERRor:MAX {param}')
[docs] def get_value(self) -> float: """SCPI: [SOURce<HW>]:IQ:DPD:OUTPut:ERRor \n Snippet: value: float = driver.source.iq.dpd.output.error.get_value() \n No command help available \n :return: achieved_error: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:IQ:DPD:OUTPut:ERRor?') return Conversions.str_to_float(response)