Source code for RsFsw.Implementations.Applications.K18_AmplifierEt.Sense.Power.Achannel.FilterPy.Alpha.Achannel

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class AchannelCls: """Achannel commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("achannel", core, parent)
[docs] def set(self, value: float) -> None: """SCPI: [SENSe]:POWer:ACHannel:FILTer:ALPHa:ACHannel \n Snippet: driver.applications.k18AmplifierEt.sense.power.achannel.filterPy.alpha.achannel.set(value = 1.0) \n Defines the roll-off factor for the adjacent channel weighting filter. For asymmetrical MSR signals, this command defines the roll-off factor for the lower adjacent channel. To configure the factor for the upper adjacent channel, use the [SENSe:]POWer:ACHannel:FILTer:ALPHa:UACHannel command. \n :param value: Roll-off factor Range: 0 to 1 """ param = Conversions.decimal_value_to_str(value) self._core.io.write(f'SENSe:POWer:ACHannel:FILTer:ALPHa:ACHannel {param}')
[docs] def get(self) -> float: """SCPI: [SENSe]:POWer:ACHannel:FILTer:ALPHa:ACHannel \n Snippet: value: float = driver.applications.k18AmplifierEt.sense.power.achannel.filterPy.alpha.achannel.get() \n Defines the roll-off factor for the adjacent channel weighting filter. For asymmetrical MSR signals, this command defines the roll-off factor for the lower adjacent channel. To configure the factor for the upper adjacent channel, use the [SENSe:]POWer:ACHannel:FILTer:ALPHa:UACHannel command. \n :return: value: No help available""" response = self._core.io.query_str(f'SENSe:POWer:ACHannel:FILTer:ALPHa:ACHannel?') return Conversions.str_to_float(response)