Source code for RsCmwNrFr1Meas.Implementations.Configure.NrSubMeas.MultiEval.Limit.Qam.Ibe.IqOffset

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 ........Internal.ArgSingleList import ArgSingleList
from ........Internal.ArgSingle import ArgSingle
from ........ import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class IqOffsetCls: """IqOffset commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("iqOffset", core, parent)
[docs] def set(self, offset_0: float, offset_1: float, offset_2: float, offset_3: float, qam=repcap.Qam.Default) -> None: """SCPI: CONFigure:NRSub:MEASurement<Instance>:MEValuation:LIMit:QAM<order>:IBE:IQOFfset \n Snippet: driver.configure.nrSubMeas.multiEval.limit.qam.ibe.iqOffset.set(offset_0 = 1.0, offset_1 = 1.0, offset_2 = 1.0, offset_3 = 1.0, qam = repcap.Qam.Default) \n Defines I/Q origin offset values used for calculation of an upper limit for the inband emission, for QAM modulations. Four different values can be set for four TX power ranges. \n :param offset_0: numeric I/Q origin offset limit for TX power 10 dBm Range: -256 dBc to 256 dBc, Unit: dBc :param offset_1: numeric I/Q origin offset limit for TX power 0 dBm Range: -256 dBc to 256 dBc, Unit: dBc :param offset_2: numeric I/Q origin offset limit for TX power -30 dBm Range: -256 dBc to 256 dBc, Unit: dBc :param offset_3: numeric I/Q origin offset limit for TX power -40 dBm Range: -256 dBc to 256 dBc, Unit: dBc :param qam: optional repeated capability selector. Default value: Order16 (settable in the interface 'Qam') """ param = ArgSingleList().compose_cmd_string(ArgSingle('offset_0', offset_0, DataType.Float), ArgSingle('offset_1', offset_1, DataType.Float), ArgSingle('offset_2', offset_2, DataType.Float), ArgSingle('offset_3', offset_3, DataType.Float)) qam_cmd_val = self._cmd_group.get_repcap_cmd_value(qam, repcap.Qam) self._core.io.write(f'CONFigure:NRSub:MEASurement<Instance>:MEValuation:LIMit:QAM{qam_cmd_val}:IBE:IQOFfset {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class IqOffsetStruct(StructBase): """Response structure. Fields: \n - Offset_0: float: numeric I/Q origin offset limit for TX power 10 dBm Range: -256 dBc to 256 dBc, Unit: dBc - Offset_1: float: numeric I/Q origin offset limit for TX power 0 dBm Range: -256 dBc to 256 dBc, Unit: dBc - Offset_2: float: numeric I/Q origin offset limit for TX power -30 dBm Range: -256 dBc to 256 dBc, Unit: dBc - Offset_3: float: numeric I/Q origin offset limit for TX power -40 dBm Range: -256 dBc to 256 dBc, Unit: dBc""" __meta_args_list = [ ArgStruct.scalar_float('Offset_0'), ArgStruct.scalar_float('Offset_1'), ArgStruct.scalar_float('Offset_2'), ArgStruct.scalar_float('Offset_3')] def __init__(self): StructBase.__init__(self, self) self.Offset_0: float = None self.Offset_1: float = None self.Offset_2: float = None self.Offset_3: float = None
[docs] def get(self, qam=repcap.Qam.Default) -> IqOffsetStruct: """SCPI: CONFigure:NRSub:MEASurement<Instance>:MEValuation:LIMit:QAM<order>:IBE:IQOFfset \n Snippet: value: IqOffsetStruct = driver.configure.nrSubMeas.multiEval.limit.qam.ibe.iqOffset.get(qam = repcap.Qam.Default) \n Defines I/Q origin offset values used for calculation of an upper limit for the inband emission, for QAM modulations. Four different values can be set for four TX power ranges. \n :param qam: optional repeated capability selector. Default value: Order16 (settable in the interface 'Qam') :return: structure: for return value, see the help for IqOffsetStruct structure arguments.""" qam_cmd_val = self._cmd_group.get_repcap_cmd_value(qam, repcap.Qam) return self._core.io.query_struct(f'CONFigure:NRSub:MEASurement<Instance>:MEValuation:LIMit:QAM{qam_cmd_val}:IBE:IQOFfset?', self.__class__.IqOffsetStruct())