Pulse

SCPI Commands :

PULSe:CATalog
PULSe:COMMent
PULSe:CREate
PULSe:CUSTom
PULSe:NAME
PULSe:REMove
PULSe:SELect
PULSe:SETTings
class PulseCls[source]

Pulse commands group definition. 150 total commands, 9 Subgroups, 8 group commands

get_catalog() str[source]
# SCPI: PULSe:CATalog
value: str = driver.pulse.get_catalog()

Queries the available repository elements in the database.

return:

catalog: string

get_comment() str[source]
# SCPI: PULSe:COMMent
value: str = driver.pulse.get_comment()

Adds a description to the selected repository element.

return:

comment: string

get_custom() bool[source]
# SCPI: PULSe:CUSTom
value: bool = driver.pulse.get_custom()

Enables the use of a custom envelope function

return:

custom: ON| OFF| 1| 0

get_name() str[source]
# SCPI: PULSe:NAME
value: str = driver.pulse.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: PULSe:SELect
value: str = driver.pulse.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.

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

Adds a description to the selected repository element.

param comment:

string

set_create(create: str) None[source]
# SCPI: PULSe:CREate
driver.pulse.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_custom(custom: bool) None[source]
# SCPI: PULSe:CUSTom
driver.pulse.set_custom(custom = False)

Enables the use of a custom envelope function

param custom:

ON| OFF| 1| 0

set_name(name: str) None[source]
# SCPI: PULSe:NAME
driver.pulse.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: PULSe:REMove
driver.pulse.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: PULSe:SELect
driver.pulse.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_settings(settings: PulseSetting) None[source]
# SCPI: PULSe:SETTings
driver.pulse.set_settings(settings = enums.PulseSetting.GENeral)

Switches between the displayed settings.

param settings:

TIMing| MOP| MKR| GENeral | | LEVel

Cloning the Group

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

Subgroups