Source code for rsrtx.Implementations.Zvc.Z.Icurrent.Skew

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


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

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

[docs] def set(self, deskew_offset: float, zvcProbe=repcap.ZvcProbe.Default, zvcChannel=repcap.ZvcChannel.Default) -> None: """ ``ZVC:Z<*>:I<*>:SKEW`` \n Snippet: ``driver.zvc.z.icurrent.skew.set(deskew_offset = 1.0, zvcProbe = repcap.ZvcProbe.Default, zvcChannel = repcap.ZvcChannel.Default)`` \n Sets the skew offset value for the current probe channel. This is a delay value, that is known from the circuit specifics but cannot be compensated by the instrument automatically. :param deskew_offset: -6E-6 to 6E-6 :param zvcProbe: optional repeated capability selector. Default value: Ix1 (settable in the interface 'Z') :param zvcChannel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Icurrent') """ param = Conversions.decimal_value_to_str(deskew_offset) zvcProbe_cmd_val = self._cmd_group.get_repcap_cmd_value(zvcProbe, repcap.ZvcProbe) zvcChannel_cmd_val = self._cmd_group.get_repcap_cmd_value(zvcChannel, repcap.ZvcChannel) self._core.io.write_with_opc(f'ZVC:Z{zvcProbe_cmd_val}:I{zvcChannel_cmd_val}:SKEW {param}')
[docs] def get(self, zvcProbe=repcap.ZvcProbe.Default, zvcChannel=repcap.ZvcChannel.Default) -> float: """ ``ZVC:Z<*>:I<*>:SKEW`` \n Snippet: ``value: float = driver.zvc.z.icurrent.skew.get(zvcProbe = repcap.ZvcProbe.Default, zvcChannel = repcap.ZvcChannel.Default)`` \n Sets the skew offset value for the current probe channel. This is a delay value, that is known from the circuit specifics but cannot be compensated by the instrument automatically. :param zvcProbe: optional repeated capability selector. Default value: Ix1 (settable in the interface 'Z') :param zvcChannel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Icurrent') :return: deskew_offset: -6E-6 to 6E-6 """ zvcProbe_cmd_val = self._cmd_group.get_repcap_cmd_value(zvcProbe, repcap.ZvcProbe) zvcChannel_cmd_val = self._cmd_group.get_repcap_cmd_value(zvcChannel, repcap.ZvcChannel) response = self._core.io.query_str_with_opc(f'ZVC:Z{zvcProbe_cmd_val}:I{zvcChannel_cmd_val}:SKEW?') return Conversions.str_to_float(response)