Plist

SCPI Commands :

PULSe:MOP:PLISt:CLEar
PULSe:MOP:PLISt:COUNt
PULSe:MOP:PLISt:DELete
PULSe:MOP:PLISt:INSert
PULSe:MOP:PLISt:SELect
PULSe:MOP:PLISt:VALue
class PlistCls[source]

Plist commands group definition. 7 total commands, 1 Subgroups, 6 group commands

clear() None[source]
# SCPI: PULSe:MOP:PLISt:CLEar
driver.pulse.mop.plist.clear()

Deletes all items from the list or the table.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: PULSe:MOP:PLISt:CLEar
driver.pulse.mop.plist.clear_with_opc()

Deletes all items from the list or the table.

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: PULSe:MOP:PLISt:DELete
driver.pulse.mop.plist.delete(delete = 1.0)

Deletes the particular item.

param delete:

float

get_count() float[source]
# SCPI: PULSe:MOP:PLISt:COUNt
value: float = driver.pulse.mop.plist.get_count()

Queries the number of existing items.

return:

count: integer

get_select() float[source]
# SCPI: PULSe:MOP:PLISt:SELect
value: float = driver.pulse.mop.plist.get_select()

Selects the item to which the subsequent commands apply.

return:

select: float Item number within the range 1 to …:COUNt. For example, method RsPulseSeq.Sequence.Item.count. Range: 1 to 4096

get_value() float[source]
# SCPI: PULSe:MOP:PLISt:VALue
value: float = driver.pulse.mop.plist.get_value()

Sets the phase.

return:

value: float Range: -180 to 180, Unit: degree

set_insert(insert: float) None[source]
# SCPI: PULSe:MOP:PLISt:INSert
driver.pulse.mop.plist.set_insert(insert = 1.0)

Inserts a new item before the selected one.

param insert:

float

set_select(select: float) None[source]
# SCPI: PULSe:MOP:PLISt:SELect
driver.pulse.mop.plist.set_select(select = 1.0)

Selects the item to which the subsequent commands apply.

param select:

float Item number within the range 1 to …:COUNt. For example, method RsPulseSeq.Sequence.Item.count. Range: 1 to 4096

set_value(value: float) None[source]
# SCPI: PULSe:MOP:PLISt:VALue
driver.pulse.mop.plist.set_value(value = 1.0)

Sets the phase.

param value:

float Range: -180 to 180, Unit: degree

Cloning the Group

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

Subgroups