Source code for RsSmbv.Implementations.Source.Bb.Gbas.Vdb.Mconfig.CwaThreshold

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class CwaThresholdCls: """CwaThreshold commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("cwaThreshold", core, parent)
[docs] def set(self, cr_wd_at_th: float, vdbTransmitter=repcap.VdbTransmitter.Default) -> None: """SCPI: [SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:CWAThreshold \n Snippet: driver.source.bb.gbas.vdb.mconfig.cwaThreshold.set(cr_wd_at_th = 1.0, vdbTransmitter = repcap.VdbTransmitter.Default) \n Requires 'Mode > GBAS' (LAAS) header information. Sets the course width at threshold. \n :param cr_wd_at_th: float Range: 80 to 143.75 :param vdbTransmitter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Vdb') """ param = Conversions.decimal_value_to_str(cr_wd_at_th) vdbTransmitter_cmd_val = self._cmd_group.get_repcap_cmd_value(vdbTransmitter, repcap.VdbTransmitter) self._core.io.write(f'SOURce<HwInstance>:BB:GBAS:VDB{vdbTransmitter_cmd_val}:MCONfig:CWAThreshold {param}')
[docs] def get(self, vdbTransmitter=repcap.VdbTransmitter.Default) -> float: """SCPI: [SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:CWAThreshold \n Snippet: value: float = driver.source.bb.gbas.vdb.mconfig.cwaThreshold.get(vdbTransmitter = repcap.VdbTransmitter.Default) \n Requires 'Mode > GBAS' (LAAS) header information. Sets the course width at threshold. \n :param vdbTransmitter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Vdb') :return: cr_wd_at_th: float Range: 80 to 143.75""" vdbTransmitter_cmd_val = self._cmd_group.get_repcap_cmd_value(vdbTransmitter, repcap.VdbTransmitter) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GBAS:VDB{vdbTransmitter_cmd_val}:MCONfig:CWAThreshold?') return Conversions.str_to_float(response)