Current
SCPI Commands :
READ:LTE:MEASurement<Instance>:MEValuation:ESFLatness:CURRent
FETCh:LTE:MEASurement<Instance>:MEValuation:ESFLatness:CURRent
CALCulate:LTE:MEASurement<Instance>:MEValuation:ESFLatness:CURRent
- class CurrentCls[source]
Current commands group definition. 4 total commands, 1 Subgroups, 3 group commands
- class CalculateStruct[source]
Response structure. Fields:
1 Reliability: int: ‘Reliability indicator’
2 Out_Of_Tolerance: int: Out of tolerance result, i.e. the percentage of measurement intervals of the statistic count for modulation measurements exceeding the specified modulation limits.
3 Ripple_1: float or bool: Limit check result for max (range 1) - min (range 1) .
4 Ripple_2: float or bool: Limit check result for max (range 2) - min (range 2) .
5 Max_R_1_Min_R_2: float or bool: Limit check result for max (range 1) - min (range 2) .
6 Max_R_2_Min_R_1: float or bool: Limit check result for max (range 2) - min (range 1) .
- class ResultData[source]
Response structure. Fields:
1 Reliability: int: ‘Reliability indicator’
2 Out_Of_Tolerance: int: Out of tolerance result, i.e. the percentage of measurement intervals of the statistic count for modulation measurements exceeding the specified modulation limits.
3 Ripple_1: float: Max (range 1) - min (range 1)
4 Ripple_2: float: Max (range 2) - min (range 2)
5 Max_R_1_Min_R_2: float: Max (range 1) - min (range 2)
6 Max_R_2_Min_R_1: float: Max (range 2) - min (range 1)
7 Min_R_1: float: Min (range 1)
8 Max_R_1: float: Max (range 1)
9 Min_R_2: float: Min (range 2)
10 Max_R_2: float: Max (range 2)
- calculate() CalculateStruct[source]
CALCulate:LTE:MEASurement<Instance>:MEValuation:ESFLatness:CURRent
Snippet: value: CalculateStruct = driver.lteMeas.multiEval.esFlatness.current.calculate()
Return current, average and extreme single-value results of the equalizer spectrum flatness measurement. See also ‘Equalizer spectrum flatness limits’.
- return:
structure: for return value, see the help for CalculateStruct structure arguments.
- fetch() ResultData[source]
FETCh:LTE:MEASurement<Instance>:MEValuation:ESFLatness:CURRent
Snippet: value: ResultData = driver.lteMeas.multiEval.esFlatness.current.fetch()
Return current, average, extreme and standard deviation single-value results of the equalizer spectrum flatness measurement. See also ‘Equalizer spectrum flatness limits’.
- return:
structure: for return value, see the help for ResultData structure arguments.
- read() ResultData[source]
READ:LTE:MEASurement<Instance>:MEValuation:ESFLatness:CURRent
Snippet: value: ResultData = driver.lteMeas.multiEval.esFlatness.current.read()
Return current, average, extreme and standard deviation single-value results of the equalizer spectrum flatness measurement. See also ‘Equalizer spectrum flatness limits’.
- return:
structure: for return value, see the help for ResultData structure arguments.
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.lteMeas.multiEval.esFlatness.current.clone()
Subgroups