from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class VarCls:
"""
| Commands in total: 2
| Subgroups: 0
| Direct child commands: 2
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("var", core, parent)
[docs]
def get_frequency(self) -> float:
"""
``[SOURce<HW>]:[BB]:VOR:VAR:FREQuency`` \n
Snippet: ``value: float = driver.source.bb.vor.var.get_frequency()`` \n
Sets the frequency of the variable and the reference signal. As the two signals must have the same frequency, the setting
is valid for both signals.
:return: frequency: float Range: 10 to 60
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:VOR:VAR:FREQuency?')
return Conversions.str_to_float(response)
[docs]
def set_frequency(self, frequency: float) -> None:
"""
``[SOURce<HW>]:[BB]:VOR:VAR:FREQuency`` \n
Snippet: ``driver.source.bb.vor.var.set_frequency(frequency = 1.0)`` \n
Sets the frequency of the variable and the reference signal. As the two signals must have the same frequency, the setting
is valid for both signals.
:param frequency: float Range: 10 to 60
"""
param = Conversions.decimal_value_to_str(frequency)
self._core.io.write(f'SOURce<HwInstance>:BB:VOR:VAR:FREQuency {param}')
[docs]
def get_depth(self) -> float:
"""
``[SOURce<HW>]:[BB]:VOR:VAR:[DEPTh]`` \n
Snippet: ``value: float = driver.source.bb.vor.var.get_depth()`` \n
Sets the AM modulation depth of the 30 Hz variable signal.
:return: depth: float Range: 0 to 100
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:VOR:VAR:DEPTh?')
return Conversions.str_to_float(response)
[docs]
def set_depth(self, depth: float) -> None:
"""
``[SOURce<HW>]:[BB]:VOR:VAR:[DEPTh]`` \n
Snippet: ``driver.source.bb.vor.var.set_depth(depth = 1.0)`` \n
Sets the AM modulation depth of the 30 Hz variable signal.
:param depth: float Range: 0 to 100
"""
param = Conversions.decimal_value_to_str(depth)
self._core.io.write(f'SOURce<HwInstance>:BB:VOR:VAR:DEPTh {param}')