Source code for RsFsw.Implementations.Sense.Correction.Transducer.Scaling

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


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

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

[docs] def set(self, scaling_type: enums.ScalingMode) -> None: """ ``[SENSe]:CORRection:TRANsducer:SCALing`` \n Snippet: ``driver.sense.correction.transducer.scaling.set(scaling_type = enums.ScalingMode.LINear)`` \n This command selects the frequency scaling of the transducer factor. :param scaling_type: LINear | LOGarithmic """ param = Conversions.enum_scalar_to_str(scaling_type, enums.ScalingMode) self._core.io.write(f'SENSe:CORRection:TRANsducer:SCALing {param}')
# noinspection PyTypeChecker
[docs] def get(self) -> enums.ScalingMode: """ ``[SENSe]:CORRection:TRANsducer:SCALing`` \n Snippet: ``value: enums.ScalingMode = driver.sense.correction.transducer.scaling.get()`` \n This command selects the frequency scaling of the transducer factor. :return: scaling_type: LINear | LOGarithmic """ response = self._core.io.query_str(f'SENSe:CORRection:TRANsducer:SCALing?') return Conversions.str_to_scalar_enum(response, enums.ScalingMode)