from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal.StructBase import StructBase
from ......Internal.ArgStruct import ArgStruct
from ...... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]
class CurrentCls:
"""Current commands group definition. 3 total commands, 0 Subgroups, 3 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("current", core, parent)
# noinspection PyTypeChecker
[docs]
class ResultData(StructBase):
"""Response structure. Fields: \n
- Reliability: int: decimal 'Reliability indicator'
- Endc_Neg: float: float ACLR for the adjacent channel with lower frequency Unit: dB
- Carrier: float: float Power in the allocated channel (aggregated BW) Unit: dBm
- Endc_Pos: float: float ACLR for the adjacent channel with higher frequency Unit: dB"""
__meta_args_list = [
ArgStruct.scalar_int('Reliability', 'Reliability'),
ArgStruct.scalar_float('Endc_Neg'),
ArgStruct.scalar_float('Carrier'),
ArgStruct.scalar_float('Endc_Pos')]
def __init__(self):
StructBase.__init__(self, self)
self.Reliability: int = None
self.Endc_Neg: float = None
self.Carrier: float = None
self.Endc_Pos: float = None
[docs]
def read(self) -> ResultData:
"""SCPI: READ:NRSub:MEASurement<Instance>:MEValuation:ACLR:ENDC:CURRent \n
Snippet: value: ResultData = driver.nrSubMeas.multiEval.aclr.endc.current.read() \n
Returns the relative ACLR values for EN-DC, as displayed in the table below the ACLR diagram. The current and average
values can be retrieved. See also 'View Spectrum ACLR'. 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:NRSub:MEASurement<Instance>:MEValuation:ACLR:ENDC:CURRent?', self.__class__.ResultData())
[docs]
def fetch(self) -> ResultData:
"""SCPI: FETCh:NRSub:MEASurement<Instance>:MEValuation:ACLR:ENDC:CURRent \n
Snippet: value: ResultData = driver.nrSubMeas.multiEval.aclr.endc.current.fetch() \n
Returns the relative ACLR values for EN-DC, as displayed in the table below the ACLR diagram. The current and average
values can be retrieved. See also 'View Spectrum ACLR'. 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:NRSub:MEASurement<Instance>:MEValuation:ACLR:ENDC:CURRent?', self.__class__.ResultData())
# noinspection PyTypeChecker
[docs]
class CalculateStruct(StructBase):
"""Response structure. Fields: \n
- Reliability: int: decimal 'Reliability indicator'
- Endc_Neg: enums.ResultStatus2: float ACLR for the adjacent channel with lower frequency Unit: dB
- Carrier: enums.ResultStatus2: float Power in the allocated channel (aggregated BW) Unit: dBm
- Endc_Pos: enums.ResultStatus2: float ACLR for the adjacent channel with higher frequency Unit: dB"""
__meta_args_list = [
ArgStruct.scalar_int('Reliability', 'Reliability'),
ArgStruct.scalar_enum('Endc_Neg', enums.ResultStatus2),
ArgStruct.scalar_enum('Carrier', enums.ResultStatus2),
ArgStruct.scalar_enum('Endc_Pos', enums.ResultStatus2)]
def __init__(self):
StructBase.__init__(self, self)
self.Reliability: int = None
self.Endc_Neg: enums.ResultStatus2 = None
self.Carrier: enums.ResultStatus2 = None
self.Endc_Pos: enums.ResultStatus2 = None
[docs]
def calculate(self) -> CalculateStruct:
"""SCPI: CALCulate:NRSub:MEASurement<Instance>:MEValuation:ACLR:ENDC:CURRent \n
Snippet: value: CalculateStruct = driver.nrSubMeas.multiEval.aclr.endc.current.calculate() \n
Returns the relative ACLR values for EN-DC, as displayed in the table below the ACLR diagram. The current and average
values can be retrieved. See also 'View Spectrum ACLR'. 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:NRSub:MEASurement<Instance>:MEValuation:ACLR:ENDC:CURRent?', self.__class__.CalculateStruct())