Source code for RsSmw.Implementations.Source.Bb.Gnss.Atmospheric.Ionospheric.Klobuchar.Beta.Unscaled

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class UnscaledCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	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: """ ``[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. :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: """ ``[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. :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)