Source code for RsCma.Implementations.GprfMeasurement.Power.Minimum.Current

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 CurrentCls: """Current commands group definition. 3 total commands, 0 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("current", core, parent)
[docs] def calculate(self) -> List[float or bool]: """SCPI: CALCulate:GPRF:MEASurement<Instance>:POWer:MINimum:CURRent \n Snippet: value: List[float or bool] = driver.gprfMeasurement.power.minimum.current.calculate() \n Query the 'Power Current Min.' result. CALCulate commands return an error indicator instead of a power value. \n Use RsCma.reliability.last_value to read the updated reliability indicator. \n :return: power_current_min: (float or boolean items) 'Power Current Min.' result Unit: dBm""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_str_suppressed(f'CALCulate:GPRF:MEASurement<Instance>:POWer:MINimum:CURRent?', suppressed) return Conversions.str_to_float_or_bool_list(response)
[docs] def fetch(self) -> List[float]: """SCPI: FETCh:GPRF:MEASurement<Instance>:POWer:MINimum:CURRent \n Snippet: value: List[float] = driver.gprfMeasurement.power.minimum.current.fetch() \n Query the 'Power Current Min.' result. CALCulate commands return an error indicator instead of a power value. \n Use RsCma.reliability.last_value to read the updated reliability indicator. \n :return: power_current_min: 'Power Current Min.' result Unit: dBm""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'FETCh:GPRF:MEASurement<Instance>:POWer:MINimum:CURRent?', suppressed) return response
[docs] def read(self) -> List[float]: """SCPI: READ:GPRF:MEASurement<Instance>:POWer:MINimum:CURRent \n Snippet: value: List[float] = driver.gprfMeasurement.power.minimum.current.read() \n Query the 'Power Current Min.' result. CALCulate commands return an error indicator instead of a power value. \n Use RsCma.reliability.last_value to read the updated reliability indicator. \n :return: power_current_min: 'Power Current Min.' result Unit: dBm""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'READ:GPRF:MEASurement<Instance>:POWer:MINimum:CURRent?', suppressed) return response