Source code for RsFsw.Implementations.Applications.K9x_11ad.Calculate.Unit.Power

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ...... import enums
from ...... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class PowerCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("power", core, parent)

[docs] def set(self, unit: enums.PowerUnitK9x, window=repcap.Window.Default) -> None: """ ``CALCulate<n>:UNIT:POWer`` \n Snippet: ``driver.applications.k9X11Ad.calculate.unit.power.set(unit = enums.PowerUnitK9x.A, window = repcap.Window.Default)`` \n Selects the power unit. The unit applies to all power-based measurement windows with absolute values. In addition, the unit of the reference level is adapted to the same unit. :param unit: irrelevant :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') """ param = Conversions.enum_scalar_to_str(unit, enums.PowerUnitK9x) window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) self._core.io.write(f'CALCulate{window_cmd_val}:UNIT:POWer {param}')
# noinspection PyTypeChecker
[docs] def get(self, window=repcap.Window.Default) -> enums.PowerUnitK9x: """ ``CALCulate<n>:UNIT:POWer`` \n Snippet: ``value: enums.PowerUnitK9x = driver.applications.k9X11Ad.calculate.unit.power.get(window = repcap.Window.Default)`` \n Selects the power unit. The unit applies to all power-based measurement windows with absolute values. In addition, the unit of the reference level is adapted to the same unit. :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') """ window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) response = self._core.io.query_str(f'CALCulate{window_cmd_val}:UNIT:POWer?') return Conversions.str_to_scalar_enum(response, enums.PowerUnitK9x)