from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class LimitCls:
"""
| Commands in total: 9
| Subgroups: 4
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("limit", core, parent)
@property
def pdynamics(self):
"""
| Commands in total: 5
| Subgroups: 2
| Direct child commands: 2
"""
if not hasattr(self, '_pdynamics'):
from .Pdynamics import PdynamicsCls
self._pdynamics = PdynamicsCls(self._core, self._cmd_group)
return self._pdynamics
@property
def evMagnitude(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_evMagnitude'):
from .EvMagnitude import EvMagnitudeCls
self._evMagnitude = EvMagnitudeCls(self._core, self._cmd_group)
return self._evMagnitude
@property
def merror(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_merror'):
from .Merror import MerrorCls
self._merror = MerrorCls(self._core, self._cmd_group)
return self._merror
@property
def perror(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_perror'):
from .Perror import PerrorCls
self._perror = PerrorCls(self._core, self._cmd_group)
return self._perror
[docs]
def get_freq_error(self) -> float | bool:
"""
``CONFigure:NRSub:MEASurement<Instance>:SRS:LIMit:FERRor`` \n
Snippet: ``value: float | bool = driver.configure.nrSubMeas.srs.limit.get_freq_error()`` \n
Defines an upper limit for the carrier frequency error.
:return: frequency_error: (float or boolean) numeric | ON | OFF
"""
response = self._core.io.query_str('CONFigure:NRSub:MEASurement<Instance>:SRS:LIMit:FERRor?')
return Conversions.str_to_float_or_bool(response)
[docs]
def set_freq_error(self, frequency_error: float | bool) -> None:
"""
``CONFigure:NRSub:MEASurement<Instance>:SRS:LIMit:FERRor`` \n
Snippet: ``driver.configure.nrSubMeas.srs.limit.set_freq_error(frequency_error = 1.0)`` \n
Defines an upper limit for the carrier frequency error.
:param frequency_error: (float or boolean) numeric | ON | OFF
"""
param = Conversions.decimal_or_bool_value_to_str(frequency_error)
self._core.io.write(f'CONFigure:NRSub:MEASurement<Instance>:SRS:LIMit:FERRor {param}')
def clone(self) -> 'LimitCls':
"""
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 = LimitCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group