Source code for RsFsw.Implementations.Applications.K6_Pulse.Calculate.Pspectrum.Window

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class WindowCls: """Window commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("window", core, parent)
[docs] def set(self, window_type: enums.SpectrumWindowType, window=repcap.Window.Default) -> None: """SCPI: CALCulate<n>:PSPectrum:WINDow \n Snippet: driver.applications.k6Pulse.calculate.pspectrum.window.set(window_type = enums.SpectrumWindowType.BARTlett, window = repcap.Window.Default) \n Defines the used FFT window type for Pulse-to-Pulse Spectrum displays For more information see 'Parameter spectrum calculation'. \n :param window_type: RECTangle | BARTlett | HAMMing | HANNing | BLACkman :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') """ param = Conversions.enum_scalar_to_str(window_type, enums.SpectrumWindowType) window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) self._core.io.write(f'CALCulate{window_cmd_val}:PSPectrum:WINDow {param}')
# noinspection PyTypeChecker
[docs] def get(self, window=repcap.Window.Default) -> enums.SpectrumWindowType: """SCPI: CALCulate<n>:PSPectrum:WINDow \n Snippet: value: enums.SpectrumWindowType = driver.applications.k6Pulse.calculate.pspectrum.window.get(window = repcap.Window.Default) \n Defines the used FFT window type for Pulse-to-Pulse Spectrum displays For more information see 'Parameter spectrum calculation'. \n :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') :return: window_type: RECTangle | BARTlett | HAMMing | HANNing | BLACkman""" window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) response = self._core.io.query_str(f'CALCulate{window_cmd_val}:PSPectrum:WINDow?') return Conversions.str_to_scalar_enum(response, enums.SpectrumWindowType)