Source code for RsCmwGsmSig.Implementations.Throughput_.Trace_.Downlink_.Sdu_.Current

from typing import List

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Current: """Current commands group definition. 2 total commands, 0 Sub-groups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("current", core, parent)
[docs] def fetch(self) -> List[float]: """SCPI: FETCh:GSM:SIGNaling<instance>:THRoughput:TRACe:DL:SDU:CURRent \n Snippet: value: List[float] = driver.throughput.trace.downlink.sdu.current.fetch() \n Return the values of the downlink PDU and SDU throughput traces. The results of the average and current traces can be retrieved. The number of trace values n depends on the configured <result interval> and <window size>: n = integer (<window size> / <result interval>) \n Use RsCmwGsmSig.reliability.last_value to read the updated reliability indicator. \n :return: downlink_sdu: float Comma-separated list of n throughput trace values Range: 0 bit/s to 100E+6 bit/s , Unit: bit/s""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'FETCh:GSM:SIGNaling<Instance>:THRoughput:TRACe:DL:SDU:CURRent?', suppressed) return response
[docs] def read(self) -> List[float]: """SCPI: READ:GSM:SIGNaling<instance>:THRoughput:TRACe:DL:SDU:CURRent \n Snippet: value: List[float] = driver.throughput.trace.downlink.sdu.current.read() \n Return the values of the downlink PDU and SDU throughput traces. The results of the average and current traces can be retrieved. The number of trace values n depends on the configured <result interval> and <window size>: n = integer (<window size> / <result interval>) \n Use RsCmwGsmSig.reliability.last_value to read the updated reliability indicator. \n :return: downlink_sdu: float Comma-separated list of n throughput trace values Range: 0 bit/s to 100E+6 bit/s , Unit: bit/s""" suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'READ:GSM:SIGNaling<Instance>:THRoughput:TRACe:DL:SDU:CURRent?', suppressed) return response