Source code for RsCMPX_LteMeas.Implementations.LteMeas.MultiEval.ListPy.Power.TxPower.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. 2 total commands, 0 Subgroups, 2 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:LTE:MEASurement<Instance>:MEValuation:LIST:POWer:TXPower:MAXimum \n Snippet: value: List[float] = driver.lteMeas.multiEval.listPy.power.txPower.maximum.fetch() \n Return the total TX power of all component carriers, for all measured list mode segments. \n Suppressed linked return values: reliability \n :return: tx_power: Comma-separated list of values, one per measured segment""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'FETCh:LTE:MEASurement<Instance>:MEValuation:LIST:POWer:TXPower:MAXimum?', suppressed) return response
[docs] def calculate(self) -> List[float or bool]: """SCPI: CALCulate:LTE:MEASurement<Instance>:MEValuation:LIST:POWer:TXPower:MAXimum \n Snippet: value: List[float or bool] = driver.lteMeas.multiEval.listPy.power.txPower.maximum.calculate() \n No command help available \n Suppressed linked return values: reliability \n :return: tx_power: (float or boolean items) No help available""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_str_suppressed(f'CALCulate:LTE:MEASurement<Instance>:MEValuation:LIST:POWer:TXPower:MAXimum?', suppressed) return Conversions.str_to_float_or_bool_list(response)