Source code for RsSmbv.Implementations.Source.Bb.Vor.Subcarrier

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


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

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

[docs] def get_depth(self) -> float: """ ``[SOURce<HW>]:[BB]:VOR:SUBCarrier:DEPTh`` \n Snippet: ``value: float = driver.source.bb.vor.subcarrier.get_depth()`` \n Sets the AM modulation depth of the FM carrier. :return: depth: float Range: 0 to 100 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:VOR:SUBCarrier:DEPTh?') return Conversions.str_to_float(response)
[docs] def set_depth(self, depth: float) -> None: """ ``[SOURce<HW>]:[BB]:VOR:SUBCarrier:DEPTh`` \n Snippet: ``driver.source.bb.vor.subcarrier.set_depth(depth = 1.0)`` \n Sets the AM modulation depth of the FM carrier. :param depth: float Range: 0 to 100 """ param = Conversions.decimal_value_to_str(depth) self._core.io.write(f'SOURce<HwInstance>:BB:VOR:SUBCarrier:DEPTh {param}')
[docs] def get_frequency(self) -> float: """ ``[SOURce<HW>]:[BB]:VOR:SUBCarrier:[FREQuency]`` \n Snippet: ``value: float = driver.source.bb.vor.subcarrier.get_frequency()`` \n Sets the frequency of the FM carrier. :return: frequency: float Range: 5E3 to 15E3 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:VOR:SUBCarrier:FREQuency?') return Conversions.str_to_float(response)
[docs] def set_frequency(self, frequency: float) -> None: """ ``[SOURce<HW>]:[BB]:VOR:SUBCarrier:[FREQuency]`` \n Snippet: ``driver.source.bb.vor.subcarrier.set_frequency(frequency = 1.0)`` \n Sets the frequency of the FM carrier. :param frequency: float Range: 5E3 to 15E3 """ param = Conversions.decimal_value_to_str(frequency) self._core.io.write(f'SOURce<HwInstance>:BB:VOR:SUBCarrier:FREQuency {param}')