Dwell
SCPI Commands :
[SOURce<HW>]:LIST:DWELl:MODE
[SOURce<HW>]:LIST:DWELl
- class DwellCls[source]
Dwell commands group definition. 4 total commands, 1 Subgroups, 2 group commands
- get_mode() RsSmbv.enums.ParameterSetMode [source]
# SCPI: [SOURce<HW>]:LIST:DWELl:MODE value: enums.ParameterSetMode = driver.source.listPy.dwell.get_mode()
Selects the dwell time mode.
- return
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 [:SOURcehw]:LIST:DWELl.
- get_value() float [source]
# SCPI: [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’.
- return
dwell: float Range: 1E-3 to 100
- set_mode(dwell_mode: RsSmbv.enums.ParameterSetMode) None [source]
# SCPI: [SOURce<HW>]:LIST:DWELl:MODE driver.source.listPy.dwell.set_mode(dwell_mode = enums.ParameterSetMode.GLOBal)
Selects the dwell time mode.
- param 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 [:SOURcehw]:LIST:DWELl.
- set_value(dwell: float) None [source]
# SCPI: [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’.
- param dwell
float Range: 1E-3 to 100
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.listPy.dwell.clone()
Subgroups