Mode

SCPI Commands :

EMITter:MODE:ID
EMITter:MODE:CLEar
EMITter:MODE:COUNt
EMITter:MODE:DELete
EMITter:MODE:NAME
EMITter:MODE:SELect
class ModeCls[source]

Mode commands group definition. 22 total commands, 4 Subgroups, 6 group commands

clear() None[source]
# SCPI: EMITter:MODE:CLEar
driver.emitter.mode.clear()

Deletes all items from the list or the table.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: EMITter:MODE:CLEar
driver.emitter.mode.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: EMITter:MODE:DELete
driver.emitter.mode.delete(delete = 1.0)

Deletes the particular item.

param delete:

float

get_count() float[source]
# SCPI: EMITter:MODE:COUNt
value: float = driver.emitter.mode.get_count()

Queries the number of existing items.

return:

count: integer

get_id() float[source]
# SCPI: EMITter:MODE:ID
value: float = driver.emitter.mode.get_id()

No command help available

return:

idn: float Range: 1 to 65536

get_name() str[source]
# SCPI: EMITter:MODE:NAME
value: str = driver.emitter.mode.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: EMITter:MODE:SELect
value: float = driver.emitter.mode.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

set_id(idn: float) None[source]
# SCPI: EMITter:MODE:ID
driver.emitter.mode.set_id(idn = 1.0)

No command help available

param idn:

float Range: 1 to 65536

set_name(name: str) None[source]
# SCPI: EMITter:MODE:NAME
driver.emitter.mode.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: EMITter:MODE:SELect
driver.emitter.mode.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

Cloning the Group

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

Subgroups