Source code for RsCmwLteMeas.Implementations.MultiEval.ListPy.Segment.EsFlatness.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. 3 total commands, 1 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("current", core, parent) @property def scIndex(self): """scIndex commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_scIndex'): from .ScIndex import ScIndexCls self._scIndex = ScIndexCls(self._core, self._cmd_group) return self._scIndex # noinspection PyTypeChecker
[docs] class FetchStruct(StructBase): """Response structure. Fields: \n - Seg_Reliability: int: decimal Reliability indicator for the segment - Statist_Expired: int: decimal Reached statistical length in slots - Out_Of_Tolerance: int: decimal Percentage of measured subframes with failed limit check Unit: % - Ripple_1: float: float Max (range 1) - min (range 1) Unit: dB - Ripple_2: float: float Max (range 2) - min (range 2) Unit: dB - Max_R_1_Min_R_2: float: float Max (range 1) - min (range 2) Unit: dB - Max_R_2_Min_R_1: float: float Max (range 2) - min (range 1) Unit: dB - Min_R_1: float: float Min (range 1) Unit: dB - Max_R_1: float: float Max (range 1) Unit: dB - Min_R_2: float: float Min (range 2) Unit: dB - Max_R_2: float: float Max (range 2) Unit: dB""" __meta_args_list = [ ArgStruct.scalar_int('Seg_Reliability'), ArgStruct.scalar_int('Statist_Expired'), ArgStruct.scalar_int('Out_Of_Tolerance'), ArgStruct.scalar_float('Ripple_1'), ArgStruct.scalar_float('Ripple_2'), ArgStruct.scalar_float('Max_R_1_Min_R_2'), ArgStruct.scalar_float('Max_R_2_Min_R_1'), ArgStruct.scalar_float('Min_R_1'), ArgStruct.scalar_float('Max_R_1'), ArgStruct.scalar_float('Min_R_2'), ArgStruct.scalar_float('Max_R_2')] def __init__(self): StructBase.__init__(self, self) self.Seg_Reliability: int = None self.Statist_Expired: int = None self.Out_Of_Tolerance: int = None self.Ripple_1: float = None self.Ripple_2: float = None self.Max_R_1_Min_R_2: float = None self.Max_R_2_Min_R_1: float = None self.Min_R_1: float = None self.Max_R_1: float = None self.Min_R_2: float = None self.Max_R_2: float = None
[docs] def fetch(self, segment=repcap.Segment.Default) -> FetchStruct: """SCPI: FETCh:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:ESFLatness:CURRent \n Snippet: value: FetchStruct = driver.multiEval.listPy.segment.esFlatness.current.fetch(segment = repcap.Segment.Default) \n Return equalizer spectrum flatness single value results for segment <no> in list mode. \n Use RsCmwLteMeas.reliability.last_value to read the updated reliability indicator. \n :param segment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Segment') :return: structure: for return value, see the help for FetchStruct structure arguments.""" segment_cmd_val = self._cmd_group.get_repcap_cmd_value(segment, repcap.Segment) return self._core.io.query_struct(f'FETCh:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent{segment_cmd_val}:ESFLatness:CURRent?', self.__class__.FetchStruct())
# noinspection PyTypeChecker
[docs] class CalculateStruct(StructBase): """Response structure. Fields: \n - Reliability: int: decimal 'Reliability indicator' - Seg_Reliability: int: decimal Reliability indicator for the segment - Statist_Expired: int: decimal Reached statistical length in slots - Out_Of_Tolerance: int: decimal Percentage of measured subframes with failed limit check Unit: % - Ripple_1: float or bool: Limit check result for max (range 1) - min (range 1) . - Ripple_2: float or bool: Limit check result for max (range 2) - min (range 2) . - Max_R_1_Min_R_2: float or bool: Limit check result for max (range 1) - min (range 2) . Unit: dB - Max_R_2_Min_R_1: float or bool: Limit check result for max (range 2) - min (range 1) . Unit: dB""" __meta_args_list = [ ArgStruct.scalar_int('Reliability', 'Reliability'), ArgStruct.scalar_int('Seg_Reliability'), ArgStruct.scalar_int('Statist_Expired'), ArgStruct.scalar_int('Out_Of_Tolerance'), ArgStruct.scalar_float_ext('Ripple_1'), ArgStruct.scalar_float_ext('Ripple_2'), ArgStruct.scalar_float_ext('Max_R_1_Min_R_2'), ArgStruct.scalar_float_ext('Max_R_2_Min_R_1')] def __init__(self): StructBase.__init__(self, self) self.Reliability: int = None self.Seg_Reliability: int = None self.Statist_Expired: int = None self.Out_Of_Tolerance: int = None self.Ripple_1: float or bool = None self.Ripple_2: float or bool = None self.Max_R_1_Min_R_2: float or bool = None self.Max_R_2_Min_R_1: float or bool = None
[docs] def calculate(self, segment=repcap.Segment.Default) -> CalculateStruct: """SCPI: CALCulate:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:ESFLatness:CURRent \n Snippet: value: CalculateStruct = driver.multiEval.listPy.segment.esFlatness.current.calculate(segment = repcap.Segment.Default) \n Return equalizer spectrum flatness single value results for segment <no> in list mode. \n :param segment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Segment') :return: structure: for return value, see the help for CalculateStruct structure arguments.""" segment_cmd_val = self._cmd_group.get_repcap_cmd_value(segment, repcap.Segment) return self._core.io.query_struct(f'CALCulate:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent{segment_cmd_val}:ESFLatness:CURRent?', self.__class__.CalculateStruct())
def clone(self) -> 'CurrentCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = CurrentCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group