from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ValueCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("value", core, parent)
[docs]
def set(self, percentage: float) -> None:
"""
``[SENSe]:PMETer:DCYCle:VALue`` \n
Snippet: ``driver.applications.k18AmplifierEt.sense.pmeter.dcycle.value.set(percentage = 1.0)`` \n
Defines the duty cycle for the correction of pulse signals. The power sensor uses the duty cycle in combination with the
mean power to calculate the power of the pulse.
:param percentage: Range: 0.001 to 99.999, Unit: %
"""
param = Conversions.decimal_value_to_str(percentage)
self._core.io.write(f'SENSe:PMETer:DCYCle:VALue {param}')
[docs]
def get(self) -> float:
"""
``[SENSe]:PMETer:DCYCle:VALue`` \n
Snippet: ``value: float = driver.applications.k18AmplifierEt.sense.pmeter.dcycle.value.get()`` \n
Defines the duty cycle for the correction of pulse signals. The power sensor uses the duty cycle in combination with the
mean power to calculate the power of the pulse.
:return: percentage: Range: 0.001 to 99.999, Unit: %
"""
response = self._core.io.query_str(f'SENSe:PMETer:DCYCle:VALue?')
return Conversions.str_to_float(response)