Source code for RsCma.Implementations.GprfMeasurement.Acp.Obw.Maximum

from typing import List

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from .....Internal.ArgSingleSuppressed import ArgSingleSuppressed
from .....Internal.Types import DataType


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class MaximumCls: """Maximum commands group definition. 3 total commands, 0 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("maximum", core, parent)
[docs] def fetch(self) -> List[float]: """SCPI: FETCh:GPRF:MEASurement<Instance>:ACP:OBW:MAXimum \n Snippet: value: List[float] = driver.gprfMeasurement.acp.obw.maximum.fetch() \n Query the OBW result. There are separate commands for the current, average and maximum value. CALCulate commands return error indicators instead of measurement values. \n Use RsCma.reliability.last_value to read the updated reliability indicator. \n :return: obw: Unit: Hz""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'FETCh:GPRF:MEASurement<Instance>:ACP:OBW:MAXimum?', suppressed) return response
[docs] def read(self) -> List[float]: """SCPI: READ:GPRF:MEASurement<Instance>:ACP:OBW:MAXimum \n Snippet: value: List[float] = driver.gprfMeasurement.acp.obw.maximum.read() \n Query the OBW result. There are separate commands for the current, average and maximum value. CALCulate commands return error indicators instead of measurement values. \n Use RsCma.reliability.last_value to read the updated reliability indicator. \n :return: obw: Unit: Hz""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'READ:GPRF:MEASurement<Instance>:ACP:OBW:MAXimum?', suppressed) return response
[docs] def calculate(self) -> List[float or bool]: """SCPI: CALCulate:GPRF:MEASurement<Instance>:ACP:OBW:MAXimum \n Snippet: value: List[float or bool] = driver.gprfMeasurement.acp.obw.maximum.calculate() \n Query the OBW result. There are separate commands for the current, average and maximum value. CALCulate commands return error indicators instead of measurement values. \n Use RsCma.reliability.last_value to read the updated reliability indicator. \n :return: obw: (float or boolean items) Unit: Hz""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_str_suppressed(f'CALCulate:GPRF:MEASurement<Instance>:ACP:OBW:MAXimum?', suppressed) return Conversions.str_to_float_or_bool_list(response)