Source code for RsCMPX_WcdmaMeas.Implementations.WcdmaMeas.Tpc

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class TpcCls: """Tpc commands group definition. 54 total commands, 4 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("tpc", core, parent) @property def dhib(self): """dhib commands group. 5 Sub-classes, 0 commands.""" if not hasattr(self, '_dhib'): from .Dhib import DhibCls self._dhib = DhibCls(self._core, self._cmd_group) return self._dhib @property def carrier(self): """carrier commands group. 3 Sub-classes, 0 commands.""" if not hasattr(self, '_carrier'): from .Carrier import CarrierCls self._carrier = CarrierCls(self._core, self._cmd_group) return self._carrier @property def total(self): """total commands group. 2 Sub-classes, 0 commands.""" if not hasattr(self, '_total'): from .Total import TotalCls self._total = TotalCls(self._core, self._cmd_group) return self._total @property def state(self): """state commands group. 1 Sub-classes, 1 commands.""" if not hasattr(self, '_state'): from .State import StateCls self._state = StateCls(self._core, self._cmd_group) return self._state
[docs] def stop(self, opc_timeout_ms: int = -1) -> None: """SCPI: STOP:WCDMa:MEASurement<instance>:TPC \n Snippet: driver.wcdmaMeas.tpc.stop() \n INTRO_CMD_HELP: Starts, stops or aborts the measurement: \n - INITiate... starts or restarts the measurement. The measurement enters the RUN state. - STOP... halts the measurement immediately. The measurement enters the RDY state. Measurement results are kept. The resources remain allocated to the measurement. - ABORt... halts the measurement immediately. The measurement enters the OFF state. All measurement values are set to NAV. Allocated resources are released. Use FETCh...STATe? to query the current measurement state. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'STOP:WCDMa:MEASurement<Instance>:TPC', opc_timeout_ms)
[docs] def abort(self, opc_timeout_ms: int = -1) -> None: """SCPI: ABORt:WCDMa:MEASurement<instance>:TPC \n Snippet: driver.wcdmaMeas.tpc.abort() \n INTRO_CMD_HELP: Starts, stops or aborts the measurement: \n - INITiate... starts or restarts the measurement. The measurement enters the RUN state. - STOP... halts the measurement immediately. The measurement enters the RDY state. Measurement results are kept. The resources remain allocated to the measurement. - ABORt... halts the measurement immediately. The measurement enters the OFF state. All measurement values are set to NAV. Allocated resources are released. Use FETCh...STATe? to query the current measurement state. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'ABORt:WCDMa:MEASurement<Instance>:TPC', opc_timeout_ms)
[docs] def initiate(self, opc_timeout_ms: int = -1) -> None: """SCPI: INITiate:WCDMa:MEASurement<instance>:TPC \n Snippet: driver.wcdmaMeas.tpc.initiate() \n INTRO_CMD_HELP: Starts, stops or aborts the measurement: \n - INITiate... starts or restarts the measurement. The measurement enters the RUN state. - STOP... halts the measurement immediately. The measurement enters the RDY state. Measurement results are kept. The resources remain allocated to the measurement. - ABORt... halts the measurement immediately. The measurement enters the OFF state. All measurement values are set to NAV. Allocated resources are released. Use FETCh...STATe? to query the current measurement state. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'INITiate:WCDMa:MEASurement<Instance>:TPC', opc_timeout_ms)
def clone(self) -> 'TpcCls': """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 = TpcCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group