Source code for RsCMPX_Gprf.Implementations.Gprf.Measurement.Power.ListPy.Average

from typing import List

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ......Internal.ArgSingleSuppressed import ArgSingleSuppressed
from ......Internal.Types import DataType
from ...... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class AverageCls: """Average commands group definition. 3 total commands, 0 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("average", core, parent) # noinspection PyTypeChecker
[docs] def calculate(self, list_index: int) -> List[enums.ResultStatus2]: """SCPI: CALCulate:GPRF:MEASurement<Instance>:POWer:LIST:AVERage \n Snippet: value: List[enums.ResultStatus2] = driver.gprf.measurement.power.listPy.average.calculate(list_index = 1) \n Returns power results for segment <ListIndex>, see 'Results in list mode'. INTRO_CMD_HELP: The following powers can be retrieved: \n - Current RMS (...:LIST:CURRent?) - Current Min. (...:MINimum:CURRent?) - Current Max. (...:MAXimum:CURRent?) - Average RMS (...:AVERage?) - Minimum (...:PEAK:MINimum?) - Maximum (...:PEAK:MAXimum?) - Standard Deviation (...:SDEViation?) The values described below are returned by FETCh and READ commands. CALCulate commands return error codes instead, one value for each result listed below. \n Suppressed linked return values: reliability \n :param list_index: Index of the segment :return: power_average_rms: Power value for the selected segment""" param = Conversions.decimal_value_to_str(list_index) suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_str_suppressed(f'CALCulate:GPRF:MEASurement<Instance>:POWer:LIST:AVERage? {param}', suppressed) return Conversions.str_to_list_enum(response, enums.ResultStatus2)
[docs] def fetch(self, list_index: int) -> List[float]: """SCPI: FETCh:GPRF:MEASurement<Instance>:POWer:LIST:AVERage \n Snippet: value: List[float] = driver.gprf.measurement.power.listPy.average.fetch(list_index = 1) \n Returns power results for segment <ListIndex>, see 'Results in list mode'. INTRO_CMD_HELP: The following powers can be retrieved: \n - Current RMS (...:LIST:CURRent?) - Current Min. (...:MINimum:CURRent?) - Current Max. (...:MAXimum:CURRent?) - Average RMS (...:AVERage?) - Minimum (...:PEAK:MINimum?) - Maximum (...:PEAK:MAXimum?) - Standard Deviation (...:SDEViation?) The values described below are returned by FETCh and READ commands. CALCulate commands return error codes instead, one value for each result listed below. \n Suppressed linked return values: reliability \n :param list_index: Index of the segment :return: power_average_rms: Power value for the selected segment""" param = Conversions.decimal_value_to_str(list_index) suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'FETCh:GPRF:MEASurement<Instance>:POWer:LIST:AVERage? {param}', suppressed) return response
[docs] def read(self, list_index: int) -> List[float]: """SCPI: READ:GPRF:MEASurement<Instance>:POWer:LIST:AVERage \n Snippet: value: List[float] = driver.gprf.measurement.power.listPy.average.read(list_index = 1) \n Returns power results for segment <ListIndex>, see 'Results in list mode'. INTRO_CMD_HELP: The following powers can be retrieved: \n - Current RMS (...:LIST:CURRent?) - Current Min. (...:MINimum:CURRent?) - Current Max. (...:MAXimum:CURRent?) - Average RMS (...:AVERage?) - Minimum (...:PEAK:MINimum?) - Maximum (...:PEAK:MAXimum?) - Standard Deviation (...:SDEViation?) The values described below are returned by FETCh and READ commands. CALCulate commands return error codes instead, one value for each result listed below. \n Suppressed linked return values: reliability \n :param list_index: Index of the segment :return: power_average_rms: Power value for the selected segment""" param = Conversions.decimal_value_to_str(list_index) suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_bin_or_ascii_float_list_suppressed(f'READ:GPRF:MEASurement<Instance>:POWer:LIST:AVERage? {param}', suppressed) return response