from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class PowerCls:
"""
| Commands in total: 2
| Subgroups: 0
| Direct child commands: 2
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("power", core, parent)
[docs]
def get_step(self) -> float:
"""
``[SOURce<HW>]:BB:ARBitrary:MCARrier:EDIT:CARRier:POWer:STEP`` \n
Snippet: ``value: float = driver.source.bb.arbitrary.mcarrier.edit.carrier.power.get_step()`` \n
Sets the step width by which the starting power of the carriers in the defined carrier range is incremented.
:return: step: float Range: -80 to 80, Unit: dB
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ARBitrary:MCARrier:EDIT:CARRier:POWer:STEP?')
return Conversions.str_to_float(response)
[docs]
def set_step(self, step: float) -> None:
"""
``[SOURce<HW>]:BB:ARBitrary:MCARrier:EDIT:CARRier:POWer:STEP`` \n
Snippet: ``driver.source.bb.arbitrary.mcarrier.edit.carrier.power.set_step(step = 1.0)`` \n
Sets the step width by which the starting power of the carriers in the defined carrier range is incremented.
:param step: float Range: -80 to 80, Unit: dB
"""
param = Conversions.decimal_value_to_str(step)
self._core.io.write(f'SOURce<HwInstance>:BB:ARBitrary:MCARrier:EDIT:CARRier:POWer:STEP {param}')
[docs]
def get_start(self) -> float:
"""
``[SOURce<HW>]:BB:ARBitrary:MCARrier:EDIT:CARRier:POWer:[STARt]`` \n
Snippet: ``value: float = driver.source.bb.arbitrary.mcarrier.edit.carrier.power.get_start()`` \n
Sets the power for the individual carriers in the defined carrier range.
:return: start: float Range: -80 to 0, Unit: dB
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ARBitrary:MCARrier:EDIT:CARRier:POWer:STARt?')
return Conversions.str_to_float(response)
[docs]
def set_start(self, start: float) -> None:
"""
``[SOURce<HW>]:BB:ARBitrary:MCARrier:EDIT:CARRier:POWer:[STARt]`` \n
Snippet: ``driver.source.bb.arbitrary.mcarrier.edit.carrier.power.set_start(start = 1.0)`` \n
Sets the power for the individual carriers in the defined carrier range.
:param start: float Range: -80 to 0, Unit: dB
"""
param = Conversions.decimal_value_to_str(start)
self._core.io.write(f'SOURce<HwInstance>:BB:ARBitrary:MCARrier:EDIT:CARRier:POWer:STARt {param}')