Interval

SCPI Commands

DIMeasure:INTerval:TYPE
DIMeasure:INTerval:STEPsize
DIMeasure:INTerval:POINts
class IntervalCls[source]

Interval commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_points() float[source]
# SCPI: DIMeasure:INTerval:POINts
value: float = driver.diMeasure.interval.get_points()

Sets the number of measurement points within the measurement range for interval type method RsLcx.DiMeasure.Interval. typePy.

return:

interval_points: No help available

get_stepsize() float[source]
# SCPI: DIMeasure:INTerval:STEPsize
value: float = driver.diMeasure.interval.get_stepsize()

Sets the step size within the measurement range for interval type method RsLcx.DiMeasure.Interval.typePy.

return:

interval_stepsize: No help available

get_type_py() IntervalParameter[source]
# SCPI: DIMeasure:INTerval:TYPE
value: enums.IntervalParameter = driver.diMeasure.interval.get_type_py()

Selects the mode to determine the measurement steps within the sweep range (method RsLcx.DiMeasure.Sweep. minimum to method RsLcx.DiMeasure.Sweep.maximum) .

return:

interval_parameter: - STEPsize: Measures in defined step sizes within the sweep range, set with DIMeasure:INTerval:STEPsize. - POINts: Measures in increments calculated by the number of sweep points (DIMeasure:INTerval:POINts) within the sweep range.

set_points(interval_points: float) None[source]
# SCPI: DIMeasure:INTerval:POINts
driver.diMeasure.interval.set_points(interval_points = 1.0)

Sets the number of measurement points within the measurement range for interval type method RsLcx.DiMeasure.Interval. typePy.

param interval_points:

No help available

set_stepsize(interval_stepsize: float) None[source]
# SCPI: DIMeasure:INTerval:STEPsize
driver.diMeasure.interval.set_stepsize(interval_stepsize = 1.0)

Sets the step size within the measurement range for interval type method RsLcx.DiMeasure.Interval.typePy.

param interval_stepsize:

No help available

set_type_py(interval_parameter: IntervalParameter) None[source]
# SCPI: DIMeasure:INTerval:TYPE
driver.diMeasure.interval.set_type_py(interval_parameter = enums.IntervalParameter.POINts)

Selects the mode to determine the measurement steps within the sweep range (method RsLcx.DiMeasure.Sweep. minimum to method RsLcx.DiMeasure.Sweep.maximum) .

param interval_parameter:
  • STEPsize: Measures in defined step sizes within the sweep range, set with DIMeasure:INTerval:STEPsize.

  • POINts: Measures in increments calculated by the number of sweep points (DIMeasure:INTerval:POINts) within the sweep range.