Source code for RsFsw.Implementations.Applications.K30_NoiseFigure.Sense.Correction.Enr.Calibration.Table.Select

from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from .........Internal import Conversions
from .........Internal.Utilities import trim_str_response


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SelectCls: """Select commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("select", core, parent)
[docs] def set(self, table_name: str) -> None: """SCPI: [SENSe]:CORRection:ENR:CALibration:TABLe:SELect \n Snippet: driver.applications.k30NoiseFigure.sense.correction.enr.calibration.table.select.set(table_name = 'abc') \n Selects an ENR or temperature table for calibration. Note that the contents of the table are independent of whether you use it for calibration or the actual measurement. When you want to edit a table, regardless if you want to use it later for a measurement or for calibration, you have to use [SENSe:]CORRection:ENR[:MEASurement]:TABLe:SELect. This command only selects a table for calibration. Is available when you use different noise sources for calibration and measurement ([SENSe:]CORRection:ENR:COMMon OFF) . \n :param table_name: String containing the table name. """ param = Conversions.value_to_quoted_str(table_name) self._core.io.write(f'SENSe:CORRection:ENR:CALibration:TABLe:SELect {param}')
[docs] def get(self) -> str: """SCPI: [SENSe]:CORRection:ENR:CALibration:TABLe:SELect \n Snippet: value: str = driver.applications.k30NoiseFigure.sense.correction.enr.calibration.table.select.get() \n Selects an ENR or temperature table for calibration. Note that the contents of the table are independent of whether you use it for calibration or the actual measurement. When you want to edit a table, regardless if you want to use it later for a measurement or for calibration, you have to use [SENSe:]CORRection:ENR[:MEASurement]:TABLe:SELect. This command only selects a table for calibration. Is available when you use different noise sources for calibration and measurement ([SENSe:]CORRection:ENR:COMMon OFF) . \n :return: table_name: String containing the table name.""" response = self._core.io.query_str(f'SENSe:CORRection:ENR:CALibration:TABLe:SELect?') return trim_str_response(response)