Item

SCPI Commands :

PULSe:ENVelope:DATA:ITEM:COUNt
PULSe:ENVelope:DATA:ITEM:DELete
PULSe:ENVelope:DATA:ITEM:SELect
PULSe:ENVelope:DATA:ITEM:VALue
class ItemCls[source]

Item commands group definition. 5 total commands, 1 Subgroups, 4 group commands

delete(delete: float) None[source]
# SCPI: PULSe:ENVelope:DATA:ITEM:DELete
driver.pulse.envelope.data.item.delete(delete = 1.0)

Deletes the particular item.

param delete:

float

get_count() float[source]
# SCPI: PULSe:ENVelope:DATA:ITEM:COUNt
value: float = driver.pulse.envelope.data.item.get_count()

Queries the number of existing items.

return:

count: integer

get_select() float[source]
# SCPI: PULSe:ENVelope:DATA:ITEM:SELect
value: float = driver.pulse.envelope.data.item.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:ENVelope:DATA:ITEM:VALue
value: float = driver.pulse.envelope.data.item.get_value()

Sets the value of the selected item.

return:

value: float Range: -1e+09 to 1e+09

set_select(select: float) None[source]
# SCPI: PULSe:ENVelope:DATA:ITEM:SELect
driver.pulse.envelope.data.item.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:ENVelope:DATA:ITEM:VALue
driver.pulse.envelope.data.item.set_value(value = 1.0)

Sets the value of the selected item.

param value:

float Range: -1e+09 to 1e+09

Cloning the Group

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

Subgroups