Source code for RsSmbv.Implementations.Source.Bb.Arbitrary.Mcarrier.Edit.Carrier.Phase

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class PhaseCls: """Phase commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("phase", core, parent)
[docs] def get_step(self) -> float: """SCPI: [SOURce<HW>]:BB:ARBitrary:MCARrier:EDIT:CARRier:PHASe:STEP \n Snippet: value: float = driver.source.bb.arbitrary.mcarrier.edit.carrier.phase.get_step() \n Sets the step width by which the start phases of the carriers in the defined carrier range is incremented. \n :return: step: float Range: -359.99 to 359.99, Unit: DEG """ response = self._core.io.query_str('SOURce<HwInstance>:BB:ARBitrary:MCARrier:EDIT:CARRier:PHASe:STEP?') return Conversions.str_to_float(response)
[docs] def set_step(self, step: float) -> None: """SCPI: [SOURce<HW>]:BB:ARBitrary:MCARrier:EDIT:CARRier:PHASe:STEP \n Snippet: driver.source.bb.arbitrary.mcarrier.edit.carrier.phase.set_step(step = 1.0) \n Sets the step width by which the start phases of the carriers in the defined carrier range is incremented. \n :param step: float Range: -359.99 to 359.99, Unit: DEG """ param = Conversions.decimal_value_to_str(step) self._core.io.write(f'SOURce<HwInstance>:BB:ARBitrary:MCARrier:EDIT:CARRier:PHASe:STEP {param}')
[docs] def get_start(self) -> float: """SCPI: [SOURce<HW>]:BB:ARBitrary:MCARrier:EDIT:CARRier:PHASe:[STARt] \n Snippet: value: float = driver.source.bb.arbitrary.mcarrier.edit.carrier.phase.get_start() \n Sets the start phase for the individual carriers in the defined carrier range. \n :return: start: float Range: 0 to 359.99, Unit: DEG """ response = self._core.io.query_str('SOURce<HwInstance>:BB:ARBitrary:MCARrier:EDIT:CARRier:PHASe:STARt?') return Conversions.str_to_float(response)
[docs] def set_start(self, start: float) -> None: """SCPI: [SOURce<HW>]:BB:ARBitrary:MCARrier:EDIT:CARRier:PHASe:[STARt] \n Snippet: driver.source.bb.arbitrary.mcarrier.edit.carrier.phase.set_start(start = 1.0) \n Sets the start phase for the individual carriers in the defined carrier range. \n :param start: float Range: 0 to 359.99, Unit: DEG """ param = Conversions.decimal_value_to_str(start) self._core.io.write(f'SOURce<HwInstance>:BB:ARBitrary:MCARrier:EDIT:CARRier:PHASe:STARt {param}')