Source code for RsSmbv.Implementations.Test.Bb.Generator

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from .....Internal.Utilities import trim_str_response
from ..... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class GeneratorCls: """Generator commands group definition. 12 total commands, 5 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("generator", core, parent) @property def const(self): """const commands group. 0 Sub-classes, 2 commands.""" if not hasattr(self, '_const'): from .Const import ConstCls self._const = ConstCls(self._core, self._cmd_group) return self._const @property def frequency(self): """frequency commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_frequency'): from .Frequency import FrequencyCls self._frequency = FrequencyCls(self._core, self._cmd_group) return self._frequency @property def gain(self): """gain commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_gain'): from .Gain import GainCls self._gain = GainCls(self._core, self._cmd_group) return self._gain @property def offset(self): """offset commands group. 0 Sub-classes, 2 commands.""" if not hasattr(self, '_offset'): from .Offset import OffsetCls self._offset = OffsetCls(self._core, self._cmd_group) return self._offset @property def phase(self): """phase commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_phase'): from .Phase import PhaseCls self._phase = PhaseCls(self._core, self._cmd_group) return self._phase
[docs] def get_arbitrary(self) -> str: """SCPI: TEST:BB:GENerator:ARBitrary \n Snippet: value: str = driver.test.bb.generator.get_arbitrary() \n Selects the ARB waveform to be tested. \n :return: filename: string """ response = self._core.io.query_str('TEST:BB:GENerator:ARBitrary?') return trim_str_response(response)
[docs] def set_arbitrary(self, filename: str) -> None: """SCPI: TEST:BB:GENerator:ARBitrary \n Snippet: driver.test.bb.generator.set_arbitrary(filename = 'abc') \n Selects the ARB waveform to be tested. \n :param filename: string """ param = Conversions.value_to_quoted_str(filename) self._core.io.write(f'TEST:BB:GENerator:ARBitrary {param}')
# noinspection PyTypeChecker
[docs] def get_source(self) -> enums.TestBbGenIqSour: """SCPI: TEST:BB:GENerator:SOURce \n Snippet: value: enums.TestBbGenIqSour = driver.test.bb.generator.get_source() \n Selects the test signal source. \n :return: iq_source: SINE| CONStant| ARB| TTONe SINE Generates a sine waveform. To determine the frequency, use command method RsSmbv.Test.Bb.Generator.Frequency.set. CONStant Uses a constant I/Q test signal. ARB Selects a signal generated generated by the ARB. """ response = self._core.io.query_str('TEST:BB:GENerator:SOURce?') return Conversions.str_to_scalar_enum(response, enums.TestBbGenIqSour)
[docs] def set_source(self, iq_source: enums.TestBbGenIqSour) -> None: """SCPI: TEST:BB:GENerator:SOURce \n Snippet: driver.test.bb.generator.set_source(iq_source = enums.TestBbGenIqSour.ARB) \n Selects the test signal source. \n :param iq_source: SINE| CONStant| ARB| TTONe SINE Generates a sine waveform. To determine the frequency, use command method RsSmbv.Test.Bb.Generator.Frequency.set. CONStant Uses a constant I/Q test signal. ARB Selects a signal generated generated by the ARB. """ param = Conversions.enum_scalar_to_str(iq_source, enums.TestBbGenIqSour) self._core.io.write(f'TEST:BB:GENerator:SOURce {param}')
[docs] def get_state(self) -> bool: """SCPI: TEST:BB:GENerator:STATe \n Snippet: value: bool = driver.test.bb.generator.get_state() \n Starts the test generator. \n :return: state: 1| ON| 0| OFF """ response = self._core.io.query_str('TEST:BB:GENerator:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, state: bool) -> None: """SCPI: TEST:BB:GENerator:STATe \n Snippet: driver.test.bb.generator.set_state(state = False) \n Starts the test generator. \n :param state: 1| ON| 0| OFF """ param = Conversions.bool_to_str(state) self._core.io.write(f'TEST:BB:GENerator:STATe {param}')
def clone(self) -> 'GeneratorCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = GeneratorCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group