Source code for RsCmwCdma2kMeas.Implementations.MultiEval_.Trace_.Cp_.Qsignal_.Minimum

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Minimum: """Minimum commands group definition. 3 total commands, 0 Sub-groups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("minimum", core, parent) # noinspection PyTypeChecker
[docs] class ResultData(StructBase): """Response structure. Fields: \n - Reliability: int: decimal 'Reliability Indicator' - Fch: float: float RMS channel power values for reverse fundamental channel, reverse supplemental channel 0, enhanced access channel and reverse common control channel. Range: -60 dB to 0 dB , Unit: dB - Sch_0: float: float RMS channel power values for reverse fundamental channel, reverse supplemental channel 0, enhanced access channel and reverse common control channel. Range: -60 dB to 0 dB , Unit: dB - Each: float: float RMS channel power values for reverse fundamental channel, reverse supplemental channel 0, enhanced access channel and reverse common control channel. Range: -60 dB to 0 dB , Unit: dB - Ccch: float: float RMS channel power values for reverse fundamental channel, reverse supplemental channel 0, enhanced access channel and reverse common control channel. Range: -60 dB to 0 dB , Unit: dB""" __meta_args_list = [ ArgStruct.scalar_int('Reliability', 'Reliability'), ArgStruct.scalar_float('Fch'), ArgStruct.scalar_float('Sch_0'), ArgStruct.scalar_float('Each'), ArgStruct.scalar_float('Ccch')] def __init__(self): StructBase.__init__(self, self) self.Reliability: int = None self.Fch: float = None self.Sch_0: float = None self.Each: float = None self.Ccch: float = None
[docs] def read(self) -> ResultData: """SCPI: READ:CDMA:MEASurement<Instance>:MEValuation:TRACe:CP:QSIGnal:MINimum \n Snippet: value: ResultData = driver.multiEval.trace.cp.qsignal.minimum.read() \n Returns the values of the channel power Q-Signal traces. The results of the current, average, maximum and minimum traces can be retrieved. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below. \n :return: structure: for return value, see the help for ResultData structure arguments.""" return self._core.io.query_struct(f'READ:CDMA:MEASurement<Instance>:MEValuation:TRACe:CP:QSIGnal:MINimum?', self.__class__.ResultData())
[docs] def fetch(self) -> ResultData: """SCPI: FETCh:CDMA:MEASurement<Instance>:MEValuation:TRACe:CP:QSIGnal:MINimum \n Snippet: value: ResultData = driver.multiEval.trace.cp.qsignal.minimum.fetch() \n Returns the values of the channel power Q-Signal traces. The results of the current, average, maximum and minimum traces can be retrieved. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below. \n :return: structure: for return value, see the help for ResultData structure arguments.""" return self._core.io.query_struct(f'FETCh:CDMA:MEASurement<Instance>:MEValuation:TRACe:CP:QSIGnal:MINimum?', self.__class__.ResultData())
# noinspection PyTypeChecker
[docs] class CalculateStruct(StructBase): """Response structure. Fields: \n - Reliabiltiy: float: decimal 'Reliability Indicator' - Fch: float: float RMS channel power values for reverse fundamental channel, reverse supplemental channel 0, enhanced access channel and reverse common control channel. Range: -60 dB to 0 dB , Unit: dB - Sch_0: float: float RMS channel power values for reverse fundamental channel, reverse supplemental channel 0, enhanced access channel and reverse common control channel. Range: -60 dB to 0 dB , Unit: dB - Each: float: float RMS channel power values for reverse fundamental channel, reverse supplemental channel 0, enhanced access channel and reverse common control channel. Range: -60 dB to 0 dB , Unit: dB - Ccch: float: float RMS channel power values for reverse fundamental channel, reverse supplemental channel 0, enhanced access channel and reverse common control channel. Range: -60 dB to 0 dB , Unit: dB""" __meta_args_list = [ ArgStruct.scalar_float('Reliabiltiy'), ArgStruct.scalar_float('Fch'), ArgStruct.scalar_float('Sch_0'), ArgStruct.scalar_float('Each'), ArgStruct.scalar_float('Ccch')] def __init__(self): StructBase.__init__(self, self) self.Reliabiltiy: float = None self.Fch: float = None self.Sch_0: float = None self.Each: float = None self.Ccch: float = None
[docs] def calculate(self) -> CalculateStruct: """SCPI: CALCulate:CDMA:MEASurement<Instance>:MEValuation:TRACe:CP:QSIGnal:MINimum \n Snippet: value: CalculateStruct = driver.multiEval.trace.cp.qsignal.minimum.calculate() \n Returns the values of the channel power Q-Signal traces. The results of the current, average, maximum and minimum traces can be retrieved. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below. \n :return: structure: for return value, see the help for CalculateStruct structure arguments.""" return self._core.io.query_struct(f'CALCulate:CDMA:MEASurement<Instance>:MEValuation:TRACe:CP:QSIGnal:MINimum?', self.__class__.CalculateStruct())