Source code for RsFsw.Implementations.Applications.K60_Transient.Sense.Correction.Cvl.Data

from typing import List

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal.Types import DataType
from .......Internal.ArgSingleList import ArgSingleList
from .......Internal.ArgSingle import ArgSingle


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DataCls: """Data commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("data", core, parent)
[docs] def set(self, freq: List[int], level: List[int]) -> None: """SCPI: [SENSe]:CORRection:CVL:DATA \n Snippet: driver.applications.k60Transient.sense.correction.cvl.data.set(freq = [1, 2, 3], level = [1, 2, 3]) \n Defines the reference values of the selected conversion loss tables. The values are entered as a set of frequency/level pairs. You can define a maximum of 500 frequency/level pairs. Before this command can be performed, you must select the conversion loss table (see [SENSe:]CORRection:CVL:SELect) . Is only available with option B21 (External Mixer) installed. \n :param freq: The frequencies have to be sent in ascending order. Unit: HZ :param level: Unit: DB """ param = ArgSingleList().compose_cmd_string(ArgSingle.as_open_list('freq', freq, DataType.IntegerList, None), ArgSingle.as_open_list('level', level, DataType.IntegerList, None)) self._core.io.write(f'SENSe:CORRection:CVL:DATA {param}'.rstrip())
[docs] def get(self, freq: List[int], level: List[int]) -> List[int]: """SCPI: [SENSe]:CORRection:CVL:DATA \n Snippet: value: List[int] = driver.applications.k60Transient.sense.correction.cvl.data.get(freq = [1, 2, 3], level = [1, 2, 3]) \n Defines the reference values of the selected conversion loss tables. The values are entered as a set of frequency/level pairs. You can define a maximum of 500 frequency/level pairs. Before this command can be performed, you must select the conversion loss table (see [SENSe:]CORRection:CVL:SELect) . Is only available with option B21 (External Mixer) installed. \n :param freq: The frequencies have to be sent in ascending order. Unit: HZ :param level: Unit: DB :return: freq: The frequencies have to be sent in ascending order. Unit: HZ""" param = ArgSingleList().compose_cmd_string(ArgSingle.as_open_list('freq', freq, DataType.IntegerList, None), ArgSingle.as_open_list('level', level, DataType.IntegerList, None)) response = self._core.io.query_bin_or_ascii_int_list(f'SENSe:CORRection:CVL:DATA? {param}'.rstrip()) return response