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

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SpotCls: """Spot commands group definition. 3 total commands, 2 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("spot", core, parent) @property def hot(self): """hot commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_hot'): from .Hot import HotCls self._hot = HotCls(self._core, self._cmd_group) return self._hot @property def cold(self): """cold commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_cold'): from .Cold import ColdCls self._cold = ColdCls(self._core, self._cmd_group) return self._cold
[docs] def set(self, enr: float) -> None: """SCPI: [SENSe]:CORRection:ENR:CALibration:SPOT \n Snippet: driver.applications.k30NoiseFigure.sense.correction.enr.calibration.spot.set(enr = 1.0) \n Defines the constant ENR for all measurement points during calibration. Is available when you use different noise sources for calibration and measurement ([SENSe:]CORRection:ENR:COMMon OFF) . \n :param enr: Range: -999.99 to 999.99, Unit: DB """ param = Conversions.decimal_value_to_str(enr) self._core.io.write(f'SENSe:CORRection:ENR:CALibration:SPOT {param}')
[docs] def get(self) -> float: """SCPI: [SENSe]:CORRection:ENR:CALibration:SPOT \n Snippet: value: float = driver.applications.k30NoiseFigure.sense.correction.enr.calibration.spot.get() \n Defines the constant ENR for all measurement points during calibration. Is available when you use different noise sources for calibration and measurement ([SENSe:]CORRection:ENR:COMMon OFF) . \n :return: enr: Range: -999.99 to 999.99, Unit: DB""" response = self._core.io.query_str(f'SENSe:CORRection:ENR:CALibration:SPOT?') return Conversions.str_to_float(response)
def clone(self) -> 'SpotCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = SpotCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group