Source code for RsCma.Implementations.GprfMeasurement.ExtPwrSensor

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal.Utilities import trim_str_response
from ....Internal.StructBase import StructBase
from ....Internal.ArgStruct import ArgStruct


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ExtPwrSensorCls: """ExtPwrSensor commands group definition. 8 total commands, 1 Subgroups, 6 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("extPwrSensor", core, parent) @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 initiate(self, opc_timeout_ms: int = -1) -> None: """SCPI: INITiate:GPRF:MEASurement<Instance>:EPSensor \n Snippet: driver.gprfMeasurement.extPwrSensor.initiate() \n Starts or continues the EPS measurement. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'INITiate:GPRF:MEASurement<Instance>:EPSensor', opc_timeout_ms)
[docs] def stop(self, opc_timeout_ms: int = -1) -> None: """SCPI: STOP:GPRF:MEASurement<Instance>:EPSensor \n Snippet: driver.gprfMeasurement.extPwrSensor.stop() \n Pauses the EPS measurement. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'STOP:GPRF:MEASurement<Instance>:EPSensor', opc_timeout_ms)
[docs] def abort(self, opc_timeout_ms: int = -1) -> None: """SCPI: ABORt:GPRF:MEASurement<Instance>:EPSensor \n Snippet: driver.gprfMeasurement.extPwrSensor.abort() \n Stops the EPS measurement. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'ABORt:GPRF:MEASurement<Instance>:EPSensor', opc_timeout_ms)
[docs] def get_idn(self) -> str: """SCPI: FETCh:GPRF:MEASurement<Instance>:EPSensor:IDN \n Snippet: value: str = driver.gprfMeasurement.extPwrSensor.get_idn() \n Queries the identification string of the connected external power sensor. \n :return: idn: String parameter """ response = self._core.io.query_str('FETCh:GPRF:MEASurement<Instance>:EPSensor:IDN?') return trim_str_response(response)
# noinspection PyTypeChecker
[docs] class ResultData(StructBase): """Response structure. Fields: \n - Reliability: int: See 'Reliability indicator values' - Current_Power: float: Sensor power in the last measurement interval Unit: dBm - Average_Power: float: Average of all CurrentPower values within the last measurement cycle Unit: dBm - Minimum_Power: float: Minimum CurrentPower value since the start of the measurement Unit: dBm - Maximum_Power: float: Maximum CurrentPower value since the start of the measurement Unit: dBm - Elapsed_Stat: int: Elapsed statistic count (progress bar) Range: 0 to configured statistic count""" __meta_args_list = [ ArgStruct.scalar_int('Reliability', 'Reliability'), ArgStruct.scalar_float('Current_Power'), ArgStruct.scalar_float('Average_Power'), ArgStruct.scalar_float('Minimum_Power'), ArgStruct.scalar_float('Maximum_Power'), ArgStruct.scalar_int('Elapsed_Stat')] def __init__(self): StructBase.__init__(self, self) self.Reliability: int = None self.Current_Power: float = None self.Average_Power: float = None self.Minimum_Power: float = None self.Maximum_Power: float = None self.Elapsed_Stat: int = None
[docs] def fetch(self) -> ResultData: """SCPI: FETCh:GPRF:MEASurement<Instance>:EPSensor \n Snippet: value: ResultData = driver.gprfMeasurement.extPwrSensor.fetch() \n Return all EPS measurement results. \n :return: structure: for return value, see the help for ResultData structure arguments.""" return self._core.io.query_struct(f'FETCh:GPRF:MEASurement<Instance>:EPSensor?', self.__class__.ResultData())
[docs] def read(self) -> ResultData: """SCPI: READ:GPRF:MEASurement<Instance>:EPSensor \n Snippet: value: ResultData = driver.gprfMeasurement.extPwrSensor.read() \n Return all EPS measurement results. \n :return: structure: for return value, see the help for ResultData structure arguments.""" return self._core.io.query_struct(f'READ:GPRF:MEASurement<Instance>:EPSensor?', self.__class__.ResultData())
def clone(self) -> 'ExtPwrSensorCls': """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 = ExtPwrSensorCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group