Sweep

SCPI Commands

DIMeasure:SWEep:PARameter
DIMeasure:SWEep:MINimum
DIMeasure:SWEep:MAXimum
class SweepCls[source]

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

get_maximum() float[source]
# SCPI: DIMeasure:SWEep:MAXimum
value: float = driver.diMeasure.sweep.get_maximum()

Sets the stop value for the selected sweep parameter. The value must be at least method RsLcx.DiMeasure.Sweep.minimum. The maximum value depends on the instrument model and installed options.

return:

sweep_stop_value: No help available

get_minimum() float[source]
# SCPI: DIMeasure:SWEep:MINimum
value: float = driver.diMeasure.sweep.get_minimum()

Sets the start value for the selected sweep parameter. The value depends on the instrument model and installed options. The maximum value must be at least method RsLcx.DiMeasure.Sweep.maximum.

return:

sweep_start_value: No help available

get_parameter() SweepParameter[source]
# SCPI: DIMeasure:SWEep:PARameter
value: enums.SweepParameter = driver.diMeasure.sweep.get_parameter()

Selects the measurement parameter that varies in defined steps within the sweep range (method RsLcx.DiMeasure.Sweep. minimum.

return:

sweep_parameter: - VOLTage: Sweeps the test signal voltage. - FREQuency: Sweeps the test signal frequency. - VBIas: Sweeps the voltage bias. - IBIas: Sweeps the current bias.

set_maximum(sweep_stop_value: float) None[source]
# SCPI: DIMeasure:SWEep:MAXimum
driver.diMeasure.sweep.set_maximum(sweep_stop_value = 1.0)

Sets the stop value for the selected sweep parameter. The value must be at least method RsLcx.DiMeasure.Sweep.minimum. The maximum value depends on the instrument model and installed options.

param sweep_stop_value:

No help available

set_minimum(sweep_start_value: float) None[source]
# SCPI: DIMeasure:SWEep:MINimum
driver.diMeasure.sweep.set_minimum(sweep_start_value = 1.0)

Sets the start value for the selected sweep parameter. The value depends on the instrument model and installed options. The maximum value must be at least method RsLcx.DiMeasure.Sweep.maximum.

param sweep_start_value:

No help available

set_parameter(sweep_parameter: SweepParameter) None[source]
# SCPI: DIMeasure:SWEep:PARameter
driver.diMeasure.sweep.set_parameter(sweep_parameter = enums.SweepParameter.FREQuency)

Selects the measurement parameter that varies in defined steps within the sweep range (method RsLcx.DiMeasure.Sweep. minimum.

param sweep_parameter:
  • VOLTage: Sweeps the test signal voltage.

  • FREQuency: Sweeps the test signal frequency.

  • VBIas: Sweeps the voltage bias.

  • IBIas: Sweeps the current bias.