Sequence

SCPI Commands :

SEQuence:CATalog
SEQuence:COMMent
SEQuence:CREate
SEQuence:NAME
SEQuence:REMove
SEQuence:SELect
SEQuence:TYPE
class SequenceCls[source]

Sequence commands group definition. 65 total commands, 3 Subgroups, 7 group commands

get_catalog() str[source]
# SCPI: SEQuence:CATalog
value: str = driver.sequence.get_catalog()

Queries the available repository elements in the database.

return:

catalog: string

get_comment() str[source]
# SCPI: SEQuence:COMMent
value: str = driver.sequence.get_comment()

Adds a description to the selected repository element.

return:

comment: string

get_name() str[source]
# SCPI: SEQuence:NAME
value: str = driver.sequence.get_name()

Renames the selected repository element.

return:

name: string Must be unique for the particular type of repository elements. May contain empty spaces.

get_select() str[source]
# SCPI: SEQuence:SELect
value: str = driver.sequence.get_select()

Selects the repository element to which the subsequent commands apply.

return:

select: string Element name, as defined with the …:CREate or …:NAME command. To query the existing elements, use the …:CATalog? command. For example, method RsPulseSeq.Repository.catalog.

get_type_py() SequenceType[source]
# SCPI: SEQuence:TYPE
value: enums.SequenceType = driver.sequence.get_type_py()

Sets the sequence type.

return:

type_py: PULSe | | WAVeform

set_comment(comment: str) None[source]
# SCPI: SEQuence:COMMent
driver.sequence.set_comment(comment = 'abc')

Adds a description to the selected repository element.

param comment:

string

set_create(create: str) None[source]
# SCPI: SEQuence:CREate
driver.sequence.set_create(create = 'abc')

Creates a repository element with the selected name.

param create:

string Must be unique for the particular type of repository elements. May contain empty spaces.

set_name(name: str) None[source]
# SCPI: SEQuence:NAME
driver.sequence.set_name(name = 'abc')

Renames the selected repository element.

param name:

string Must be unique for the particular type of repository elements. May contain empty spaces.

set_remove(remove: str) None[source]
# SCPI: SEQuence:REMove
driver.sequence.set_remove(remove = 'abc')

Removes the selected element from the workspace. The element must not reference any child elements. Remove the referenced elements first.

param remove:

No help available

set_select(select: str) None[source]
# SCPI: SEQuence:SELect
driver.sequence.set_select(select = 'abc')

Selects the repository element to which the subsequent commands apply.

param select:

string Element name, as defined with the …:CREate or …:NAME command. To query the existing elements, use the …:CATalog? command. For example, method RsPulseSeq.Repository.catalog.

set_type_py(type_py: SequenceType) None[source]
# SCPI: SEQuence:TYPE
driver.sequence.set_type_py(type_py = enums.SequenceType.PULSe)

Sets the sequence type.

param type_py:

PULSe | | WAVeform

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sequence.clone()

Subgroups