from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class CarrierCls:
"""Carrier commands group definition. 8 total commands, 4 Subgroups, 2 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("carrier", core, parent)
@property
def listPy(self):
"""listPy commands group. 3 Sub-classes, 0 commands."""
if not hasattr(self, '_listPy'):
from .ListPy import ListPyCls
self._listPy = ListPyCls(self._core, self._cmd_group)
return self._listPy
@property
def phase(self):
"""phase commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_phase'):
from .Phase import PhaseCls
self._phase = PhaseCls(self._core, self._cmd_group)
return self._phase
@property
def power(self):
"""power commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_power'):
from .Power import PowerCls
self._power = PowerCls(self._core, self._cmd_group)
return self._power
@property
def state(self):
"""state commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_state'):
from .State import StateCls
self._state = StateCls(self._core, self._cmd_group)
return self._state
[docs] def get_count(self) -> int:
"""SCPI: [SOURce<HW>]:BB:MCCW:CARRier:COUNt \n
Snippet: value: int = driver.source.bb.mccw.carrier.get_count() \n
Sets the number of carriers in the multi carrier CW signal. \n
:return: count: integer Range: 1 to 160001
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:MCCW:CARRier:COUNt?')
return Conversions.str_to_int(response)
[docs] def set_count(self, count: int) -> None:
"""SCPI: [SOURce<HW>]:BB:MCCW:CARRier:COUNt \n
Snippet: driver.source.bb.mccw.carrier.set_count(count = 1) \n
Sets the number of carriers in the multi carrier CW signal. \n
:param count: integer Range: 1 to 160001
"""
param = Conversions.decimal_value_to_str(count)
self._core.io.write(f'SOURce<HwInstance>:BB:MCCW:CARRier:COUNt {param}')
[docs] def get_spacing(self) -> float:
"""SCPI: [SOURce<HW>]:BB:MCCW:CARRier:SPACing \n
Snippet: value: float = driver.source.bb.mccw.carrier.get_spacing() \n
Sets the carrier spacing. \n
:return: spacing: float Value range depends on the available bandwidth and the number of carriers, see 'Cross-reference between total bandwidth, carrier spacing, and number of carriers'. Range: 0 to depends on the installed options, e.g. 120E6
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:MCCW:CARRier:SPACing?')
return Conversions.str_to_float(response)
[docs] def set_spacing(self, spacing: float) -> None:
"""SCPI: [SOURce<HW>]:BB:MCCW:CARRier:SPACing \n
Snippet: driver.source.bb.mccw.carrier.set_spacing(spacing = 1.0) \n
Sets the carrier spacing. \n
:param spacing: float Value range depends on the available bandwidth and the number of carriers, see 'Cross-reference between total bandwidth, carrier spacing, and number of carriers'. Range: 0 to depends on the installed options, e.g. 120E6
"""
param = Conversions.decimal_value_to_str(spacing)
self._core.io.write(f'SOURce<HwInstance>:BB:MCCW:CARRier:SPACing {param}')
def clone(self) -> 'CarrierCls':
"""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 = CarrierCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group