Current

SCPI Commands

FETCh:GSM:MEASurement<Instance>:MEValuation:LIST:PVTime:CURRent
CALCulate:GSM:MEASurement<Instance>:MEValuation:LIST:PVTime:CURRent
class Current[source]

Current commands group definition. 3 total commands, 1 Sub-groups, 2 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Seg_Reliability: List[int]: decimal Reliability indicator for the segment. The meaning of the returned values is the same as for the common reliability indicator, see previous parameter.

  • Statist_Expired: List[int]: decimal Number of measured steps Range: 0 to Statistical Length (integer value)

  • Slot_Info: List[enums.SlotInfo]: No parameter help available

  • Slot_Statistic: List[bool]: ON | OFF ON: Averaging over different burst type OFF: Uniform burst type in the averaging range

  • Out_Of_Tolerance: List[int]: decimal Percentage of measured bursts with failed limit check Range: 0 % to 100 %, Unit: %

  • Average_Burst_Pow: List[float]: No parameter help available

class FetchStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Seg_Reliability: List[int]: decimal Reliability indicator for the segment. The meaning of the returned values is the same as for the common reliability indicator, see previous parameter.

  • Statist_Expired: List[int]: decimal Number of measured steps Range: 0 to Statistical Length (integer value)

  • Slot_Info: List[enums.SlotInfo]: No parameter help available

  • Slot_Statistic: List[bool]: ON | OFF ON: Averaging over different burst type OFF: Uniform burst type in the averaging range

  • Out_Of_Tolerance: List[int]: decimal Percentage of measured bursts with failed limit check Range: 0 % to 100 %, Unit: %

  • Average_Burst_Pow: List[float]: No parameter help available

calculate(segment_start: Optional[int] = None, segment_count: Optional[int] = None)CalculateStruct[source]
# SCPI: CALCulate:GSM:MEASurement<Instance>:MEValuation:LIST:PVTime:CURRent
value: CalculateStruct = driver.multiEval.listPy.powerVsTime.current.calculate(segment_start = 1, segment_count = 1)

Returns the power vs. time results in list mode. By default results are returned for all measured segments. Use the optional parameters to query only a subset. The values listed below in curly brackets {} are returned for each measured segment: {…}seg 1, {…}seg 2, …, {…}seg n. The position of measured segments within the range of configured segments and their number n is determined by method RsCmwGsmMeas.Configure.MultiEval.ListPy.lrange. The values described below are returned by FETCh commands. The first six values (‘Reliability’ to ‘Out of Tolerance’ result) are also returned by CALCulate commands. The remaining values returned by CALCulate commands are limit check results, one value for each result listed below.

param segment_start

integer First segment to be returned

param segment_count

integer Number of segments to be returned

return

structure: for return value, see the help for CalculateStruct structure arguments.

fetch(segment_start: Optional[int] = None, segment_count: Optional[int] = None)FetchStruct[source]
# SCPI: FETCh:GSM:MEASurement<Instance>:MEValuation:LIST:PVTime:CURRent
value: FetchStruct = driver.multiEval.listPy.powerVsTime.current.fetch(segment_start = 1, segment_count = 1)

Returns the power vs. time results in list mode. By default results are returned for all measured segments. Use the optional parameters to query only a subset. The values listed below in curly brackets {} are returned for each measured segment: {…}seg 1, {…}seg 2, …, {…}seg n. The position of measured segments within the range of configured segments and their number n is determined by method RsCmwGsmMeas.Configure.MultiEval.ListPy.lrange. The values described below are returned by FETCh commands. The first six values (‘Reliability’ to ‘Out of Tolerance’ result) are also returned by CALCulate commands. The remaining values returned by CALCulate commands are limit check results, one value for each result listed below.

param segment_start

integer First segment to be returned

param segment_count

integer Number of segments to be returned

return

structure: for return value, see the help for FetchStruct structure arguments.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.multiEval.listPy.powerVsTime.current.clone()

Subgroups