Source code for RsSmab.Implementations.Csynthesis.Power

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class PowerCls: """Power commands group definition. 3 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("power", core, parent) @property def step(self): """step commands group. 0 Sub-classes, 2 commands.""" if not hasattr(self, '_step'): from .Step import StepCls self._step = StepCls(self._core, self._cmd_group) return self._step
[docs] def get_value(self) -> float: """SCPI: CSYNthesis:POWer \n Snippet: value: float = driver.csynthesis.power.get_value() \n Sets the power level of the generated clock signal. \n :return: power: float Numerical value Sets the level UP|DOWN Varies the level step by step. The level is increased or decreased by the value set with the command method RsSmab.Csynthesis.Power.Step.increment. Range: -24 to 10 """ response = self._core.io.query_str('CSYNthesis:POWer?') return Conversions.str_to_float(response)
[docs] def set_value(self, power: float) -> None: """SCPI: CSYNthesis:POWer \n Snippet: driver.csynthesis.power.set_value(power = 1.0) \n Sets the power level of the generated clock signal. \n :param power: float Numerical value Sets the level UP|DOWN Varies the level step by step. The level is increased or decreased by the value set with the command method RsSmab.Csynthesis.Power.Step.increment. Range: -24 to 10 """ param = Conversions.decimal_value_to_str(power) self._core.io.write(f'CSYNthesis:POWer {param}')
def clone(self) -> 'PowerCls': """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 = PowerCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group