from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SymbolRateCls:
"""SymbolRate commands group definition. 6 total commands, 5 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("symbolRate", core, parent)
@property
def common(self):
"""common commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_common'):
from .Common import CommonCls
self._common = CommonCls(self._core, self._cmd_group)
return self._common
@property
def fifo(self):
"""fifo commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_fifo'):
from .Fifo import FifoCls
self._fifo = FifoCls(self._core, self._cmd_group)
return self._fifo
@property
def max(self):
"""max commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_max'):
from .Max import MaxCls
self._max = MaxCls(self._core, self._cmd_group)
return self._max
@property
def source(self):
"""source commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_source'):
from .Source import SourceCls
self._source = SourceCls(self._core, self._cmd_group)
return self._source
@property
def sum(self):
"""sum commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_sum'):
from .Sum import SumCls
self._sum = SumCls(self._core, self._cmd_group)
return self._sum
[docs] def set(self, srate: float, iqConnector=repcap.IqConnector.Default) -> None:
"""SCPI: [SOURce]:IQ:OUTPut:DIGital:BBMM<CH>:SRATe \n
Snippet: driver.source.iq.output.digital.bbmm.symbolRate.set(srate = 1.0, iqConnector = repcap.IqConnector.Default) \n
Sets the sample rate of the digital I/Q output signal. \n
:param srate: float Range: 400 to depends on options, Unit: Hz The maximum value depends on the installed options as follows: R&S SMW-B10: max = 200E6 and depends on the connected receiving device R&S SMW-B9: system clock depending on the system configuration and fader configuration See also 'Supported digital interfaces depending on the system configuration'.
:param iqConnector: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bbmm')
"""
param = Conversions.decimal_value_to_str(srate)
iqConnector_cmd_val = self._cmd_group.get_repcap_cmd_value(iqConnector, repcap.IqConnector)
self._core.io.write(f'SOURce:IQ:OUTPut:DIGital:BBMM{iqConnector_cmd_val}:SRATe {param}')
[docs] def get(self, iqConnector=repcap.IqConnector.Default) -> float:
"""SCPI: [SOURce]:IQ:OUTPut:DIGital:BBMM<CH>:SRATe \n
Snippet: value: float = driver.source.iq.output.digital.bbmm.symbolRate.get(iqConnector = repcap.IqConnector.Default) \n
Sets the sample rate of the digital I/Q output signal. \n
:param iqConnector: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Bbmm')
:return: srate: float Range: 400 to depends on options, Unit: Hz The maximum value depends on the installed options as follows: R&S SMW-B10: max = 200E6 and depends on the connected receiving device R&S SMW-B9: system clock depending on the system configuration and fader configuration See also 'Supported digital interfaces depending on the system configuration'."""
iqConnector_cmd_val = self._cmd_group.get_repcap_cmd_value(iqConnector, repcap.IqConnector)
response = self._core.io.query_str(f'SOURce:IQ:OUTPut:DIGital:BBMM{iqConnector_cmd_val}:SRATe?')
return Conversions.str_to_float(response)
def clone(self) -> 'SymbolRateCls':
"""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 = SymbolRateCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group