from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class NcorrectionCls:
"""Ncorrection commands group definition. 2 total commands, 1 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("ncorrection", core, parent)
@property
def calibration(self):
"""calibration commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_calibration'):
from .Calibration import CalibrationCls
self._calibration = CalibrationCls(self._core, self._cmd_group)
return self._calibration
[docs] def set(self, state: bool) -> None:
"""SCPI: [SENSe]:POWer:NCORrection \n
Snippet: driver.sense.power.ncorrection.set(state = False) \n
Turns noise cancellation on and off. If noise cancellation is on, the FSW performs a reference measurement to determine
its inherent noise and subtracts the result from the channel power measurement result (first active trace only) .
For more information see 'Noise Cancellation'. \n
:param state: ON | OFF | 1 | 0
"""
param = Conversions.bool_to_str(state)
self._core.io.write(f'SENSe:POWer:NCORrection {param}')
[docs] def get(self) -> bool:
"""SCPI: [SENSe]:POWer:NCORrection \n
Snippet: value: bool = driver.sense.power.ncorrection.get() \n
Turns noise cancellation on and off. If noise cancellation is on, the FSW performs a reference measurement to determine
its inherent noise and subtracts the result from the channel power measurement result (first active trace only) .
For more information see 'Noise Cancellation'. \n
:return: state: ON | OFF | 1 | 0"""
response = self._core.io.query_str(f'SENSe:POWer:NCORrection?')
return Conversions.str_to_bool(response)
def clone(self) -> 'NcorrectionCls':
"""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 = NcorrectionCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group