from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ModextCls:
"""Modext commands group definition. 2 total commands, 1 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("modext", core, parent)
@property
def impedance(self):
"""impedance commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_impedance'):
from .Impedance import ImpedanceCls
self._impedance = ImpedanceCls(self._core, self._cmd_group)
return self._impedance
# noinspection PyTypeChecker
[docs] def get_coupling(self) -> enums.AcDc:
"""SCPI: [SOURce<HW>]:INPut:MODext:COUPling \n
Snippet: value: enums.AcDc = driver.source.inputPy.modext.get_coupling() \n
Selects the coupling mode for an externally applied modulation signal. \n
:return: coupling: AC| DC AC Passes the AC signal component of the modulation signal. DC Passes the modulation signal with both components, AC and DC.
"""
response = self._core.io.query_str('SOURce<HwInstance>:INPut:MODext:COUPling?')
return Conversions.str_to_scalar_enum(response, enums.AcDc)
[docs] def set_coupling(self, coupling: enums.AcDc) -> None:
"""SCPI: [SOURce<HW>]:INPut:MODext:COUPling \n
Snippet: driver.source.inputPy.modext.set_coupling(coupling = enums.AcDc.AC) \n
Selects the coupling mode for an externally applied modulation signal. \n
:param coupling: AC| DC AC Passes the AC signal component of the modulation signal. DC Passes the modulation signal with both components, AC and DC.
"""
param = Conversions.enum_scalar_to_str(coupling, enums.AcDc)
self._core.io.write(f'SOURce<HwInstance>:INPut:MODext:COUPling {param}')
def clone(self) -> 'ModextCls':
"""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 = ModextCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group