Destination

SCPI Commands :

DESTination:ADD
DESTination:CLEar
DESTination:COUNt
DESTination:DELete
DESTination:NAME
DESTination:SELect
class DestinationCls[source]

Destination commands group definition. 12 total commands, 1 Subgroups, 6 group commands

clear() None[source]
# SCPI: DESTination:CLEar
driver.destination.clear()

Deletes all destinations from the current list.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: DESTination:CLEar
driver.destination.clear_with_opc()

Deletes all destinations from the current list.

Same as clear, but waits for the operation to complete before continuing further. Use the RsPulseSeq.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

delete(delete: float) None[source]
# SCPI: DESTination:DELete
driver.destination.delete(delete = 1.0)

Deletes the selected destination from the list.

param delete:

float

get_count() float[source]
# SCPI: DESTination:COUNt
value: float = driver.destination.get_count()

Queries the number of available destinations.

return:

count: integer

get_name() str[source]
# SCPI: DESTination:NAME
value: str = driver.destination.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() float[source]
# SCPI: DESTination:SELect
value: float = driver.destination.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_add(add: str) None[source]
# SCPI: DESTination:ADD
driver.destination.set_add(add = 'abc')

Adds a destination to the list.

param add:

string

set_name(name: str) None[source]
# SCPI: DESTination:NAME
driver.destination.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_select(select: float) None[source]
# SCPI: DESTination:SELect
driver.destination.set_select(select = 1.0)

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.

Cloning the Group

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

Subgroups