Source code for RsCmwWlanMeas.Implementations.MultiEval.Modulation.EvMagnitude.User.Current

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal.StructBase import StructBase
from ......Internal.ArgStruct import ArgStruct
from ...... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class CurrentCls: """Current commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("current", core, parent) # noinspection PyTypeChecker
[docs] class FetchStruct(StructBase): """Response structure. Fields: \n - Reliability: int: decimal See 'Reliability indicator' - Evm_Vs_User_All: float: No parameter help available - Evm_Vs_User_Data: float: No parameter help available - Evm_Vs_User_Pilot: float: No parameter help available""" __meta_args_list = [ ArgStruct.scalar_int('Reliability', 'Reliability'), ArgStruct.scalar_float('Evm_Vs_User_All'), ArgStruct.scalar_float('Evm_Vs_User_Data'), ArgStruct.scalar_float('Evm_Vs_User_Pilot')] def __init__(self): StructBase.__init__(self, self) self.Reliability: int = None self.Evm_Vs_User_All: float = None self.Evm_Vs_User_Data: float = None self.Evm_Vs_User_Pilot: float = None
[docs] def fetch(self, user=repcap.User.Default) -> FetchStruct: """SCPI: FETCh:WLAN:MEASurement<instance>:MEValuation:MODulation:EVMagnitude:USER<user>:CURRent \n Snippet: value: FetchStruct = driver.multiEval.modulation.evMagnitude.user.current.fetch(user = repcap.User.Default) \n Return the single value results for OFDMA SISO measurements for the specified user. For MIMO measurements, the stream/antenna-independent values are returned. There are current, average, minimum, maximum and standard deviation results. \n :param user: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') :return: structure: for return value, see the help for FetchStruct structure arguments.""" user_cmd_val = self._cmd_group.get_repcap_cmd_value(user, repcap.User) return self._core.io.query_struct(f'FETCh:WLAN:MEASurement<Instance>:MEValuation:MODulation:EVMagnitude:USER{user_cmd_val}:CURRent?', self.__class__.FetchStruct())