from ...Internal.Core import Core
from ...Internal.CommandsGroup import CommandsGroup
from ...Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]
class NoiseCls:
"""Noise commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("noise", core, parent)
[docs]
def get_bandwidth(self) -> float:
"""SCPI: WAVeform:NOISe:BWIDth \n
Snippet: value: float = driver.waveform.noise.get_bandwidth() \n
Sets the bandwidth of the generated AWGN waveform. \n
:return: bwidth: float Range: 0 to 2e+09, Unit: Hz
"""
response = self._core.io.query_str('WAVeform:NOISe:BWIDth?')
return Conversions.str_to_float(response)
[docs]
def set_bandwidth(self, bwidth: float) -> None:
"""SCPI: WAVeform:NOISe:BWIDth \n
Snippet: driver.waveform.noise.set_bandwidth(bwidth = 1.0) \n
Sets the bandwidth of the generated AWGN waveform. \n
:param bwidth: float Range: 0 to 2e+09, Unit: Hz
"""
param = Conversions.decimal_value_to_str(bwidth)
self._core.io.write(f'WAVeform:NOISe:BWIDth {param}')