Source code for RsCmwGsmMeas.Implementations.MultiEval_.ListPy_.Modulation_.StandardDev

from typing import List

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal.Types import DataType
from .....Internal.StructBase import StructBase
from .....Internal.ArgStruct import ArgStruct
from ..... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class StandardDev: """StandardDev commands group definition. 1 total commands, 0 Sub-groups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("standardDev", core, parent) # noinspection PyTypeChecker
[docs] class FetchStruct(StructBase): """Response structure. Fields: \n - Reliability: int: decimal 'Reliability Indicator' In list mode, a zero reliability indicator indicates that the results in all measured segments are valid. A non-zero value indicates that an error occurred in at least one of the measured segments. - Seg_Reliability: List[int]: decimal Reliability indicator for the segment. The meaning of the returned values is the same as for the common reliability indicator, see previous parameter. - Statist_Expired: List[int]: decimal Number of measured steps Range: 0 to Statistical Length (integer value) - Slot_Info: List[enums.SlotInfo]: No parameter help available - Slot_Statistic: List[bool]: ON | OFF ON: Averaging over different burst type OFF: Uniform burst type in the averaging range - Out_Of_Tolerance: List[int]: decimal Percentage of measured bursts with failed limit check Range: 0 % to 100 %, Unit: % - Evm_Rms: List[float]: float Error vector magnitude RMS and peak value Range: 0 % to 50 %, Unit: % - Evm_Peak: List[float]: float Error vector magnitude RMS and peak value Range: 0 % to 50 %, Unit: % - Mag_Error_Rms: List[float]: float Magnitude error RMS and peak value Range: 0 % to 50 %, Unit: % - Mag_Error_Peak: List[float]: float Magnitude error RMS and peak value Range: 0 % to 50 %, Unit: % - Phase_Error_Rms: List[float]: No parameter help available - Phase_Error_Peak: List[float]: No parameter help available - Iq_Offset: List[float]: float I/Q origin offset Range: 0 dB to 50 dB, Unit: dB - Iq_Imbalance: List[float]: float I/Q imbalance Range: 0 dB to 50 dB, Unit: dB - Frequency_Error: List[float]: float Carrier frequency error Range: 0 Hz to 56000 Hz, Unit: Hz - Timing_Error: List[float]: float Transmit time error Range: 0 Symbol to 100 Symbol, Unit: Symbol - Burst_Power: List[float]: float Burst power Range: 0 dB to 71 dB, Unit: dB - Am_Pm_Delay: List[float]: float AM-PM delay (determined for 8PSK and 16-QAM modulation only - for GMSK zeros are returned) Range: 0 s to 0.9225E-6 s, Unit: s""" __meta_args_list = [ ArgStruct.scalar_int('Reliability', 'Reliability'), ArgStruct('Seg_Reliability', DataType.IntegerList, None, False, True, 1), ArgStruct('Statist_Expired', DataType.IntegerList, None, False, True, 1), ArgStruct('Slot_Info', DataType.EnumList, enums.SlotInfo, False, True, 1), ArgStruct('Slot_Statistic', DataType.BooleanList, None, False, True, 1), ArgStruct('Out_Of_Tolerance', DataType.IntegerList, None, False, True, 1), ArgStruct('Evm_Rms', DataType.FloatList, None, False, True, 1), ArgStruct('Evm_Peak', DataType.FloatList, None, False, True, 1), ArgStruct('Mag_Error_Rms', DataType.FloatList, None, False, True, 1), ArgStruct('Mag_Error_Peak', DataType.FloatList, None, False, True, 1), ArgStruct('Phase_Error_Rms', DataType.FloatList, None, False, True, 1), ArgStruct('Phase_Error_Peak', DataType.FloatList, None, False, True, 1), ArgStruct('Iq_Offset', DataType.FloatList, None, False, True, 1), ArgStruct('Iq_Imbalance', DataType.FloatList, None, False, True, 1), ArgStruct('Frequency_Error', DataType.FloatList, None, False, True, 1), ArgStruct('Timing_Error', DataType.FloatList, None, False, True, 1), ArgStruct('Burst_Power', DataType.FloatList, None, False, True, 1), ArgStruct('Am_Pm_Delay', DataType.FloatList, None, False, True, 1)] def __init__(self): StructBase.__init__(self, self) self.Reliability: int = None self.Seg_Reliability: List[int] = None self.Statist_Expired: List[int] = None self.Slot_Info: List[enums.SlotInfo] = None self.Slot_Statistic: List[bool] = None self.Out_Of_Tolerance: List[int] = None self.Evm_Rms: List[float] = None self.Evm_Peak: List[float] = None self.Mag_Error_Rms: List[float] = None self.Mag_Error_Peak: List[float] = None self.Phase_Error_Rms: List[float] = None self.Phase_Error_Peak: List[float] = None self.Iq_Offset: List[float] = None self.Iq_Imbalance: List[float] = None self.Frequency_Error: List[float] = None self.Timing_Error: List[float] = None self.Burst_Power: List[float] = None self.Am_Pm_Delay: List[float] = None
[docs] def fetch(self) -> FetchStruct: """SCPI: FETCh:GSM:MEASurement<Instance>:MEValuation:LIST:MODulation:SDEViation \n Snippet: value: FetchStruct = driver.multiEval.listPy.modulation.standardDev.fetch() \n Returns the standard deviation of the modulation results in list mode. The values listed below in curly brackets {} are returned for each measured segment: {...}seg 1, {...}seg 2, ..., {...}seg n. The position of measured segments within the range of configured segments and their number n is determined by method RsCmwGsmMeas.Configure.MultiEval.ListPy.lrange. \n :return: structure: for return value, see the help for FetchStruct structure arguments.""" return self._core.io.query_struct(f'FETCh:GSM:MEASurement<Instance>:MEValuation:LIST:MODulation:SDEViation?', self.__class__.FetchStruct())