from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AwgnCls:
"""
| Commands in total: 3
| Subgroups: 1
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("awgn", core, parent)
@property
def create(self):
"""
| Commands in total: 2
| Subgroups: 0
| Direct child commands: 2
"""
if not hasattr(self, '_create'):
from .Create import CreateCls
self._create = CreateCls(self._core, self._cmd_group)
return self._create
[docs]
def get_samples(self) -> int:
"""
``[SOURce<HW>]:BB:ARBitrary:TSIGnal:AWGN:SAMPles`` \n
Snippet: ``value: int = driver.source.bb.arbitrary.tsignal.awgn.get_samples()`` \n
Sets the number of samples generated for the AWGN waveform.
:return: par_awgn_samp: integer Range: 1E6 to 1E9
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ARBitrary:TSIGnal:AWGN:SAMPles?')
return Conversions.str_to_int(response)
[docs]
def set_samples(self, par_awgn_samp: int) -> None:
"""
``[SOURce<HW>]:BB:ARBitrary:TSIGnal:AWGN:SAMPles`` \n
Snippet: ``driver.source.bb.arbitrary.tsignal.awgn.set_samples(par_awgn_samp = 1)`` \n
Sets the number of samples generated for the AWGN waveform.
:param par_awgn_samp: integer Range: 1E6 to 1E9
"""
param = Conversions.decimal_value_to_str(par_awgn_samp)
self._core.io.write(f'SOURce<HwInstance>:BB:ARBitrary:TSIGnal:AWGN:SAMPles {param}')
def clone(self) -> 'AwgnCls':
"""
Clones the group by creating new object from it and its whole existing subgroups.
Also copies all the existing default Repeated Capabilities setting,
which you can change independently without affecting the original group.
"""
new_group = AwgnCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group