Source code for RsFswp.Implementations.Applications.K60_Transient.InputPy.Gain.Value

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ValueCls: """Value commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("value", core, parent)
[docs] def set(self, gain: float) -> None: """SCPI: INPut:GAIN[:VALue] \n Snippet: driver.applications.k60Transient.inputPy.gain.value.set(gain = 1.0) \n This command selects the 'gain' if the preamplifier is activated (INP:GAIN:STAT ON, see method RsFswp.Applications. K30_NoiseFigure.InputPy.Gain.State.set) . The command requires the additional preamplifier hardware option. \n :param gain: For R&S FSWP models 1322.8003K08, 1322.8003K09, 1322.8003K27 and 1322.8003K51, the following settings are available: 15 dB and 30 dB All other values are rounded to the nearest of these two. For R&S FSWP models 1322.8003K26 and 1322.8003K50: 30 dB Unit: DB """ param = Conversions.decimal_value_to_str(gain) self._core.io.write(f'INPut:GAIN:VALue {param}')
[docs] def get(self) -> float: """SCPI: INPut:GAIN[:VALue] \n Snippet: value: float = driver.applications.k60Transient.inputPy.gain.value.get() \n This command selects the 'gain' if the preamplifier is activated (INP:GAIN:STAT ON, see method RsFswp.Applications. K30_NoiseFigure.InputPy.Gain.State.set) . The command requires the additional preamplifier hardware option. \n :return: gain: For R&S FSWP models 1322.8003K08, 1322.8003K09, 1322.8003K27 and 1322.8003K51, the following settings are available: 15 dB and 30 dB All other values are rounded to the nearest of these two. For R&S FSWP models 1322.8003K26 and 1322.8003K50: 30 dB Unit: DB""" response = self._core.io.query_str(f'INPut:GAIN:VALue?') return Conversions.str_to_float(response)