from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from .........Internal import Conversions
from ......... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class UnscaledCls:
"""Unscaled commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("unscaled", core, parent)
[docs] def set(self, beta_unscaled: int, betaNull=repcap.BetaNull.Default) -> None:
"""SCPI: [SOURce<HW>]:BB:GNSS:ATMospheric:IONospheric:KLOBuchar:BETA<CH0>:UNSCaled \n
Snippet: driver.source.bb.gnss.atmospheric.ionospheric.klobuchar.beta.unscaled.set(beta_unscaled = 1, betaNull = repcap.BetaNull.Default) \n
Sets the klobuchar parameters beta_0 to beta_3. \n
:param beta_unscaled: integer Range: dynamic
:param betaNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Beta')
"""
param = Conversions.decimal_value_to_str(beta_unscaled)
betaNull_cmd_val = self._cmd_group.get_repcap_cmd_value(betaNull, repcap.BetaNull)
self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:ATMospheric:IONospheric:KLOBuchar:BETA{betaNull_cmd_val}:UNSCaled {param}')
[docs] def get(self, betaNull=repcap.BetaNull.Default) -> int:
"""SCPI: [SOURce<HW>]:BB:GNSS:ATMospheric:IONospheric:KLOBuchar:BETA<CH0>:UNSCaled \n
Snippet: value: int = driver.source.bb.gnss.atmospheric.ionospheric.klobuchar.beta.unscaled.get(betaNull = repcap.BetaNull.Default) \n
Sets the klobuchar parameters beta_0 to beta_3. \n
:param betaNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Beta')
:return: beta_unscaled: integer Range: dynamic"""
betaNull_cmd_val = self._cmd_group.get_repcap_cmd_value(betaNull, repcap.BetaNull)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GNSS:ATMospheric:IONospheric:KLOBuchar:BETA{betaNull_cmd_val}:UNSCaled?')
return Conversions.str_to_int(response)