Dwell

SCPI Commands :

[SOURce<HW>]:LIST:DWELl:MODE
[SOURce<HW>]:LIST:DWELl
Commands in total: 4
Subgroups: 1
Direct child commands: 2
get_mode() ParameterSetMode[source]
# [SOURce<HW>]:LIST:DWELl:MODE
value: enums.ParameterSetMode = driver.source.listPy.dwell.get_mode()

Selects the dwell time mode.

Returns:

dwell_mode: LIST | GLOBal LIST Uses the dwell time, specified in the data table for each value pair individually. GLOBal Uses a constant dwell time, set with command method RsSmw.source.listPy.dwell.value() .

get_value() float[source]
# [SOURce<HW>]:LIST:DWELl
value: float = driver.source.listPy.dwell.get_value()

Sets the global dwell time. The instrument generates the signal with the frequency / power value pairs of each list entry for that particular period. See also ‘Significant parameters and functions’.

Returns:

dwell: float Range: 0.5E-3 to 100

set_mode(dwell_mode: ParameterSetMode) None[source]
# [SOURce<HW>]:LIST:DWELl:MODE
driver.source.listPy.dwell.set_mode(dwell_mode = enums.ParameterSetMode.GLOBal)

Selects the dwell time mode.

Parameters:

dwell_mode – LIST | GLOBal LIST Uses the dwell time, specified in the data table for each value pair individually. GLOBal Uses a constant dwell time, set with command method RsSmw.source.listPy.dwell.value() .

set_value(dwell: float) None[source]
# [SOURce<HW>]:LIST:DWELl
driver.source.listPy.dwell.set_value(dwell = 1.0)

Sets the global dwell time. The instrument generates the signal with the frequency / power value pairs of each list entry for that particular period. See also ‘Significant parameters and functions’.

Parameters:

dwell – float Range: 0.5E-3 to 100

Cloning the Group

# Create a copy of the original group, that exists independently
dwell_copy = driver.source.listPy.dwell.clone()

Subgroups