Source code for RsSmbv.Implementations.Source.Bb.W3Gpp.Pparameter

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class PparameterCls: """Pparameter commands group definition. 7 total commands, 3 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("pparameter", core, parent) @property def dpch(self): """dpch commands group. 0 Sub-classes, 2 commands.""" if not hasattr(self, '_dpch'): from .Dpch import DpchCls self._dpch = DpchCls(self._core, self._cmd_group) return self._dpch @property def execute(self): """execute commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_execute'): from .Execute import ExecuteCls self._execute = ExecuteCls(self._core, self._cmd_group) return self._execute @property def sccpch(self): """sccpch commands group. 0 Sub-classes, 2 commands.""" if not hasattr(self, '_sccpch'): from .Sccpch import SccpchCls self._sccpch = SccpchCls(self._core, self._cmd_group) return self._sccpch # noinspection PyTypeChecker
[docs] def get_crest(self) -> enums.CresFactMode: """SCPI: [SOURce<HW>]:BB:W3GPp:PPARameter:CRESt \n Snippet: value: enums.CresFactMode = driver.source.bb.w3Gpp.pparameter.get_crest() \n This command selects the desired range for the crest factor of the test scenario. The crest factor of the signal is kept in the desired range by automatically setting appropriate channelization codes and timing offsets. The setting takes effect only after execution of command BB:W3GPp:PPARameter:EXECute. INTRO_CMD_HELP: The settings of commands \n - BB:W3GP:BST<n>:CHAN<n>:CCODe and - BB:W3GP:BST<n>:CHAN<n>:TOFFset Are adjusted according to the selection. \n :return: crest: MINimum| AVERage| WORSt MINimum The crest factor is minimized. The channelization codes are distributed uniformly over the code domain. The timing offsets are increased by 3 per channel. AVERage An average crest factor is set. The channelization codes are distributed uniformly over the code domain. The timing offsets are all set to 0. WORSt The crest factor is set to an unfavorable value (i.e. maximum) . The channelization codes are assigned in ascending order. The timing offsets are all set to 0. """ response = self._core.io.query_str('SOURce<HwInstance>:BB:W3GPp:PPARameter:CRESt?') return Conversions.str_to_scalar_enum(response, enums.CresFactMode)
[docs] def set_crest(self, crest: enums.CresFactMode) -> None: """SCPI: [SOURce<HW>]:BB:W3GPp:PPARameter:CRESt \n Snippet: driver.source.bb.w3Gpp.pparameter.set_crest(crest = enums.CresFactMode.AVERage) \n This command selects the desired range for the crest factor of the test scenario. The crest factor of the signal is kept in the desired range by automatically setting appropriate channelization codes and timing offsets. The setting takes effect only after execution of command BB:W3GPp:PPARameter:EXECute. INTRO_CMD_HELP: The settings of commands \n - BB:W3GP:BST<n>:CHAN<n>:CCODe and - BB:W3GP:BST<n>:CHAN<n>:TOFFset Are adjusted according to the selection. \n :param crest: MINimum| AVERage| WORSt MINimum The crest factor is minimized. The channelization codes are distributed uniformly over the code domain. The timing offsets are increased by 3 per channel. AVERage An average crest factor is set. The channelization codes are distributed uniformly over the code domain. The timing offsets are all set to 0. WORSt The crest factor is set to an unfavorable value (i.e. maximum) . The channelization codes are assigned in ascending order. The timing offsets are all set to 0. """ param = Conversions.enum_scalar_to_str(crest, enums.CresFactMode) self._core.io.write(f'SOURce<HwInstance>:BB:W3GPp:PPARameter:CRESt {param}')
[docs] def get_schannels(self) -> bool: """SCPI: [SOURce<HW>]:BB:W3GPp:PPARameter:SCHannels \n Snippet: value: bool = driver.source.bb.w3Gpp.pparameter.get_schannels() \n The command activates/deactivates the PCPICH, PSCH, SSCH and PCCPCH. These 'special channels' are required by a user equipment for synchronization. The setting takes effect only after execution of command BB:W3GPp:PPARameter:EXECute. \n :return: schannels: 1| ON| 0| OFF """ response = self._core.io.query_str('SOURce<HwInstance>:BB:W3GPp:PPARameter:SCHannels?') return Conversions.str_to_bool(response)
[docs] def set_schannels(self, schannels: bool) -> None: """SCPI: [SOURce<HW>]:BB:W3GPp:PPARameter:SCHannels \n Snippet: driver.source.bb.w3Gpp.pparameter.set_schannels(schannels = False) \n The command activates/deactivates the PCPICH, PSCH, SSCH and PCCPCH. These 'special channels' are required by a user equipment for synchronization. The setting takes effect only after execution of command BB:W3GPp:PPARameter:EXECute. \n :param schannels: 1| ON| 0| OFF """ param = Conversions.bool_to_str(schannels) self._core.io.write(f'SOURce<HwInstance>:BB:W3GPp:PPARameter:SCHannels {param}')
def clone(self) -> 'PparameterCls': """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 = PparameterCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group