Source code for RsCmwLteMeas.Implementations.Configure.Srs

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class SrsCls: """Srs commands group definition. 7 total commands, 2 Subgroups, 5 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("srs", core, parent) @property def scount(self): """scount commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_scount'): from .Scount import ScountCls self._scount = ScountCls(self._core, self._cmd_group) return self._scount @property def limit(self): """limit commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_limit'): from .Limit import LimitCls self._limit = LimitCls(self._core, self._cmd_group) return self._limit
[docs] def get_timeout(self) -> float: """SCPI: CONFigure:LTE:MEASurement<Instance>:SRS:TOUT \n Snippet: value: float = driver.configure.srs.get_timeout() \n Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually. When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout. \n :return: timeout: numeric Unit: s """ response = self._core.io.query_str('CONFigure:LTE:MEASurement<Instance>:SRS:TOUT?') return Conversions.str_to_float(response)
[docs] def set_timeout(self, timeout: float) -> None: """SCPI: CONFigure:LTE:MEASurement<Instance>:SRS:TOUT \n Snippet: driver.configure.srs.set_timeout(timeout = 1.0) \n Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually. When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout. \n :param timeout: numeric Unit: s """ param = Conversions.decimal_value_to_str(timeout) self._core.io.write(f'CONFigure:LTE:MEASurement<Instance>:SRS:TOUT {param}')
# noinspection PyTypeChecker
[docs] def get_repetition(self) -> enums.Repeat: """SCPI: CONFigure:LTE:MEASurement<Instance>:SRS:REPetition \n Snippet: value: enums.Repeat = driver.configure.srs.get_repetition() \n Specifies the repetition mode of the measurement. The repetition mode specifies whether the measurement is stopped after a single shot or repeated continuously. Use CONFigure:..:MEAS<i>:...:SCOunt to determine the number of measurement intervals per single shot. \n :return: repetition: SINGleshot | CONTinuous SINGleshot: Single-shot measurement CONTinuous: Continuous measurement """ response = self._core.io.query_str('CONFigure:LTE:MEASurement<Instance>:SRS:REPetition?') return Conversions.str_to_scalar_enum(response, enums.Repeat)
[docs] def set_repetition(self, repetition: enums.Repeat) -> None: """SCPI: CONFigure:LTE:MEASurement<Instance>:SRS:REPetition \n Snippet: driver.configure.srs.set_repetition(repetition = enums.Repeat.CONTinuous) \n Specifies the repetition mode of the measurement. The repetition mode specifies whether the measurement is stopped after a single shot or repeated continuously. Use CONFigure:..:MEAS<i>:...:SCOunt to determine the number of measurement intervals per single shot. \n :param repetition: SINGleshot | CONTinuous SINGleshot: Single-shot measurement CONTinuous: Continuous measurement """ param = Conversions.enum_scalar_to_str(repetition, enums.Repeat) self._core.io.write(f'CONFigure:LTE:MEASurement<Instance>:SRS:REPetition {param}')
# noinspection PyTypeChecker
[docs] def get_scondition(self) -> enums.StopCondition: """SCPI: CONFigure:LTE:MEASurement<Instance>:SRS:SCONdition \n Snippet: value: enums.StopCondition = driver.configure.srs.get_scondition() \n Qualifies whether the measurement is stopped after a failed limit check or continued. SLFail means that the measurement is stopped and reaches the RDY state when one of the results exceeds the limits. \n :return: stop_condition: NONE | SLFail NONE: Continue measurement irrespective of the limit check. SLFail: Stop measurement on limit failure. """ response = self._core.io.query_str('CONFigure:LTE:MEASurement<Instance>:SRS:SCONdition?') return Conversions.str_to_scalar_enum(response, enums.StopCondition)
[docs] def set_scondition(self, stop_condition: enums.StopCondition) -> None: """SCPI: CONFigure:LTE:MEASurement<Instance>:SRS:SCONdition \n Snippet: driver.configure.srs.set_scondition(stop_condition = enums.StopCondition.NONE) \n Qualifies whether the measurement is stopped after a failed limit check or continued. SLFail means that the measurement is stopped and reaches the RDY state when one of the results exceeds the limits. \n :param stop_condition: NONE | SLFail NONE: Continue measurement irrespective of the limit check. SLFail: Stop measurement on limit failure. """ param = Conversions.enum_scalar_to_str(stop_condition, enums.StopCondition) self._core.io.write(f'CONFigure:LTE:MEASurement<Instance>:SRS:SCONdition {param}')
[docs] def get_mo_exception(self) -> bool: """SCPI: CONFigure:LTE:MEASurement<Instance>:SRS:MOEXception \n Snippet: value: bool = driver.configure.srs.get_mo_exception() \n Specifies whether measurement results that the R&S CMW identifies as faulty or inaccurate are rejected. \n :return: meas_on_exception: OFF | ON OFF: Faulty results are rejected. ON: Results are never rejected. """ response = self._core.io.query_str('CONFigure:LTE:MEASurement<Instance>:SRS:MOEXception?') return Conversions.str_to_bool(response)
[docs] def set_mo_exception(self, meas_on_exception: bool) -> None: """SCPI: CONFigure:LTE:MEASurement<Instance>:SRS:MOEXception \n Snippet: driver.configure.srs.set_mo_exception(meas_on_exception = False) \n Specifies whether measurement results that the R&S CMW identifies as faulty or inaccurate are rejected. \n :param meas_on_exception: OFF | ON OFF: Faulty results are rejected. ON: Results are never rejected. """ param = Conversions.bool_to_str(meas_on_exception) self._core.io.write(f'CONFigure:LTE:MEASurement<Instance>:SRS:MOEXception {param}')
[docs] def get_hdmode(self) -> bool: """SCPI: CONFigure:LTE:MEASurement<Instance>:SRS:HDMode \n Snippet: value: bool = driver.configure.srs.get_hdmode() \n Enables or disables the high dynamic mode for power dynamics measurements. \n :return: high_dynamic_mode: OFF | ON """ response = self._core.io.query_str('CONFigure:LTE:MEASurement<Instance>:SRS:HDMode?') return Conversions.str_to_bool(response)
[docs] def set_hdmode(self, high_dynamic_mode: bool) -> None: """SCPI: CONFigure:LTE:MEASurement<Instance>:SRS:HDMode \n Snippet: driver.configure.srs.set_hdmode(high_dynamic_mode = False) \n Enables or disables the high dynamic mode for power dynamics measurements. \n :param high_dynamic_mode: OFF | ON """ param = Conversions.bool_to_str(high_dynamic_mode) self._core.io.write(f'CONFigure:LTE:MEASurement<Instance>:SRS:HDMode {param}')
def clone(self) -> 'SrsCls': """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 = SrsCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group