from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class DohertyCls:
"""
| Commands in total: 47
| Subgroups: 11
| Direct child commands: 2
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("doherty", core, parent)
@property
def amam(self):
"""
| Commands in total: 3
| Subgroups: 1
| Direct child commands: 0
"""
if not hasattr(self, '_amam'):
from .Amam import AmamCls
self._amam = AmamCls(self._core, self._cmd_group)
return self._amam
@property
def amPm(self):
"""
| Commands in total: 3
| Subgroups: 1
| Direct child commands: 0
"""
if not hasattr(self, '_amPm'):
from .AmPm import AmPmCls
self._amPm = AmPmCls(self._core, self._cmd_group)
return self._amPm
@property
def inputPy(self):
"""
| Commands in total: 2
| Subgroups: 0
| Direct child commands: 2
"""
if not hasattr(self, '_inputPy'):
from .InputPy import InputPyCls
self._inputPy = InputPyCls(self._core, self._cmd_group)
return self._inputPy
@property
def lrf(self):
"""
| Commands in total: 2
| Subgroups: 1
| Direct child commands: 0
"""
if not hasattr(self, '_lrf'):
from .Lrf import LrfCls
self._lrf = LrfCls(self._core, self._cmd_group)
return self._lrf
@property
def measurement(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_measurement'):
from .Measurement import MeasurementCls
self._measurement = MeasurementCls(self._core, self._cmd_group)
return self._measurement
@property
def output(self):
"""
| Commands in total: 2
| Subgroups: 0
| Direct child commands: 2
"""
if not hasattr(self, '_output'):
from .Output import OutputCls
self._output = OutputCls(self._core, self._cmd_group)
return self._output
@property
def phase(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_phase'):
from .Phase import PhaseCls
self._phase = PhaseCls(self._core, self._cmd_group)
return self._phase
@property
def pin(self):
"""
| Commands in total: 2
| Subgroups: 0
| Direct child commands: 2
"""
if not hasattr(self, '_pin'):
from .Pin import PinCls
self._pin = PinCls(self._core, self._cmd_group)
return self._pin
@property
def power(self):
"""
| Commands in total: 2
| Subgroups: 1
| Direct child commands: 0
"""
if not hasattr(self, '_power'):
from .Power import PowerCls
self._power = PowerCls(self._core, self._cmd_group)
return self._power
@property
def setting(self):
"""
| Commands in total: 5
| Subgroups: 0
| Direct child commands: 5
"""
if not hasattr(self, '_setting'):
from .Setting import SettingCls
self._setting = SettingCls(self._core, self._cmd_group)
return self._setting
@property
def shaping(self):
"""
| Commands in total: 22
| Subgroups: 5
| Direct child commands: 1
"""
if not hasattr(self, '_shaping'):
from .Shaping import ShapingCls
self._shaping = ShapingCls(self._core, self._cmd_group)
return self._shaping
# noinspection PyTypeChecker
[docs]
def get_scale(self) -> enums.IqOutEnvScale:
"""
``[SOURce<HW>]:IQ:DOHerty:SCALe`` \n
Snippet: ``value: enums.IqOutEnvScale = driver.source.iq.doherty.get_scale()`` \n
Determines the units used on the x and y-axis.
:return: scale: POWer | VOLTage
"""
response = self._core.io.query_str('SOURce<HwInstance>:IQ:DOHerty:SCALe?')
return Conversions.str_to_scalar_enum(response, enums.IqOutEnvScale)
[docs]
def set_scale(self, scale: enums.IqOutEnvScale) -> None:
"""
``[SOURce<HW>]:IQ:DOHerty:SCALe`` \n
Snippet: ``driver.source.iq.doherty.set_scale(scale = enums.IqOutEnvScale.POWer)`` \n
Determines the units used on the x and y-axis.
:param scale: POWer | VOLTage
"""
param = Conversions.enum_scalar_to_str(scale, enums.IqOutEnvScale)
self._core.io.write(f'SOURce<HwInstance>:IQ:DOHerty:SCALe {param}')
[docs]
def get_state(self) -> bool:
"""
``[SOURce]:IQ:DOHerty:STATe`` \n
Snippet: ``value: bool = driver.source.iq.doherty.get_state()`` \n
Enabels/disables the generation of digitally Doherty signals.
:return: state: 1 | ON | 0| OFF
"""
response = self._core.io.query_str('SOURce:IQ:DOHerty:STATe?')
return Conversions.str_to_bool(response)
[docs]
def set_state(self, state: bool) -> None:
"""
``[SOURce]:IQ:DOHerty:STATe`` \n
Snippet: ``driver.source.iq.doherty.set_state(state = False)`` \n
Enabels/disables the generation of digitally Doherty signals.
:param state: 1 | ON | 0| OFF
"""
param = Conversions.bool_to_str(state)
self._core.io.write(f'SOURce:IQ:DOHerty:STATe {param}')
def clone(self) -> 'DohertyCls':
"""
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 = DohertyCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group