from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class NstateCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("nstate", core, parent)
[docs]
def set(self, apskn_state: float) -> None:
"""
``[SENSe]:DDEMod:PATTern:APSK:NSTate`` \n
Snippet: ``driver.applications.k70Vsa.sense.ddemod.pattern.apsk.nstate.set(apskn_state = 1.0)`` \n
Defines the demodulation order for APSK for the pattern (see also method
``RsFsw.applications.k70Vsa.sense.ddemod.pattern.formatPy.set()`` ) . Depending on the demodulation state, the following
orders are available:
<APSKNstate> / Order \n
- 16 / 16APSK
- 32 / 32APSK
Is only available if the additional Multi-Modulation Analysis option (FSW-K70M) is installed.
:param apskn_state: 16 | 32
"""
param = Conversions.decimal_value_to_str(apskn_state)
self._core.io.write(f'SENSe:DDEMod:PATTern:APSK:NSTate {param}')
[docs]
def get(self) -> float:
"""
``[SENSe]:DDEMod:PATTern:APSK:NSTate`` \n
Snippet: ``value: float = driver.applications.k70Vsa.sense.ddemod.pattern.apsk.nstate.get()`` \n
Defines the demodulation order for APSK for the pattern (see also method
``RsFsw.applications.k70Vsa.sense.ddemod.pattern.formatPy.set()`` ) . Depending on the demodulation state, the following
orders are available:
<APSKNstate> / Order \n
- 16 / 16APSK
- 32 / 32APSK
Is only available if the additional Multi-Modulation Analysis option (FSW-K70M) is installed.
:return: apskn_state: 16 | 32
"""
response = self._core.io.query_str(f'SENSe:DDEMod:PATTern:APSK:NSTate?')
return Conversions.str_to_float(response)