Source code for RsCmwLteSig.Implementations.Sense.Connection.Ethroughput.Downlink.Scc

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class SccCls: """Scc commands group definition. 2 total commands, 1 Subgroups, 1 group commands Repeated Capability: SecondaryCompCarrier, default value after init: SecondaryCompCarrier.CC1""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("scc", core, parent) self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_secondaryCompCarrier_get', 'repcap_secondaryCompCarrier_set', repcap.SecondaryCompCarrier.CC1) def repcap_secondaryCompCarrier_set(self, secondaryCompCarrier: repcap.SecondaryCompCarrier) -> None: """Repeated Capability default value numeric suffix. This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to SecondaryCompCarrier.Default Default value after init: SecondaryCompCarrier.CC1""" self._cmd_group.set_repcap_enum_value(secondaryCompCarrier) def repcap_secondaryCompCarrier_get(self) -> repcap.SecondaryCompCarrier: """Returns the current default repeated capability for the child set/get methods""" # noinspection PyTypeChecker return self._cmd_group.get_repcap_enum_value() @property def stream(self): """stream commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_stream'): from .Stream import StreamCls self._stream = StreamCls(self._core, self._cmd_group) return self._stream
[docs] def get(self, secondaryCompCarrier=repcap.SecondaryCompCarrier.Default) -> float: """SCPI: SENSe:LTE:SIGNaling<instance>:CONNection:ETHRoughput:DL:SCC<Carrier> \n Snippet: value: float = driver.sense.connection.ethroughput.downlink.scc.get(secondaryCompCarrier = repcap.SecondaryCompCarrier.Default) \n Returns the expected maximum throughput (averaged over one frame) for the sum of all DL streams of one component carrier. The throughput is calculated for the currently selected scheduling type. \n :param secondaryCompCarrier: optional repeated capability selector. Default value: CC1 (settable in the interface 'Scc') :return: throughput: float Unit: Mbit/s""" secondaryCompCarrier_cmd_val = self._cmd_group.get_repcap_cmd_value(secondaryCompCarrier, repcap.SecondaryCompCarrier) response = self._core.io.query_str(f'SENSe:LTE:SIGNaling<Instance>:CONNection:ETHRoughput:DL:SCC{secondaryCompCarrier_cmd_val}?') return Conversions.str_to_float(response)
def clone(self) -> 'SccCls': """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 = SccCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group