Source

SCPI Commands :

SEQuence:ITEM:IPM:SOURce:TYPE
SEQuence:ITEM:IPM:SOURce:VARiable
SEQuence:ITEM:IPM:SOURce
class SourceCls[source]

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

get_type_py() SourceType[source]
# SCPI: SEQuence:ITEM:IPM:SOURce:TYPE
value: enums.SourceType = driver.sequence.item.ipm.source.get_type_py()

Sets whether the variation is defined as a profile or as a variable.

return:

type_py: PROFile| VARiable

get_value() str[source]
# SCPI: SEQuence:ITEM:IPM:SOURce
value: str = driver.sequence.item.ipm.source.get_value()

Selects the profile source. Use the command method RsPulseSeq.Ipm.catalog to querry the existing profiles.

return:

source: string

get_variable() str[source]
# SCPI: SEQuence:ITEM:IPM:SOURce:VARiable
value: str = driver.sequence.item.ipm.source.get_variable()

Sets the variable that defines the variation.

return:

variable: string

set_type_py(type_py: SourceType) None[source]
# SCPI: SEQuence:ITEM:IPM:SOURce:TYPE
driver.sequence.item.ipm.source.set_type_py(type_py = enums.SourceType.PROFile)

Sets whether the variation is defined as a profile or as a variable.

param type_py:

PROFile| VARiable

set_value(source: str) None[source]
# SCPI: SEQuence:ITEM:IPM:SOURce
driver.sequence.item.ipm.source.set_value(source = 'abc')

Selects the profile source. Use the command method RsPulseSeq.Ipm.catalog to querry the existing profiles.

param source:

string

set_variable(variable: str) None[source]
# SCPI: SEQuence:ITEM:IPM:SOURce:VARiable
driver.sequence.item.ipm.source.set_variable(variable = 'abc')

Sets the variable that defines the variation.

param variable:

string