Source code for RsSmbv.Implementations.Source.Bb.Impairment.IqOutput.Quadrature.Angle

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from ....... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class AngleCls: """Angle commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("angle", core, parent)
[docs] def set(self, angle: float, iqConnector=repcap.IqConnector.Default) -> None: """SCPI: [SOURce]:BB:IMPairment:IQOutput<CH>:QUADrature:[ANGLe] \n Snippet: driver.source.bb.impairment.iqOutput.quadrature.angle.set(angle = 1.0, iqConnector = repcap.IqConnector.Default) \n Sets a quadrature offset (phase angle) between the I and Q vectors deviating from the ideal 90 degrees. A positive quadrature offset results in a phase angle greater than 90 degrees. Value range Table Header: Impairments / Min /dB / Max /dB / Increment \n - Digital / 30 / 30 / 0.01 - Analog / 10 / 10 / 0.01 \n :param angle: float Range: -30 to 30, Unit: DEG :param iqConnector: optional repeated capability selector. Default value: Nr1 (settable in the interface 'IqOutput') """ param = Conversions.decimal_value_to_str(angle) iqConnector_cmd_val = self._cmd_group.get_repcap_cmd_value(iqConnector, repcap.IqConnector) self._core.io.write(f'SOURce:BB:IMPairment:IQOutput{iqConnector_cmd_val}:QUADrature:ANGLe {param}')
[docs] def get(self, iqConnector=repcap.IqConnector.Default) -> float: """SCPI: [SOURce]:BB:IMPairment:IQOutput<CH>:QUADrature:[ANGLe] \n Snippet: value: float = driver.source.bb.impairment.iqOutput.quadrature.angle.get(iqConnector = repcap.IqConnector.Default) \n Sets a quadrature offset (phase angle) between the I and Q vectors deviating from the ideal 90 degrees. A positive quadrature offset results in a phase angle greater than 90 degrees. Value range Table Header: Impairments / Min /dB / Max /dB / Increment \n - Digital / 30 / 30 / 0.01 - Analog / 10 / 10 / 0.01 \n :param iqConnector: optional repeated capability selector. Default value: Nr1 (settable in the interface 'IqOutput') :return: angle: float Range: -30 to 30, Unit: DEG""" iqConnector_cmd_val = self._cmd_group.get_repcap_cmd_value(iqConnector, repcap.IqConnector) response = self._core.io.query_str(f'SOURce:BB:IMPairment:IQOutput{iqConnector_cmd_val}:QUADrature:ANGLe?') return Conversions.str_to_float(response)