Emitter

SCPI Commands :

SCENario:EMITter:CLEar
SCENario:EMITter
class EmitterCls[source]

Emitter commands group definition. 7 total commands, 2 Subgroups, 2 group commands

clear() None[source]
# SCPI: SCENario:EMITter:CLEar
driver.scenario.emitter.clear()

Deletes all items from the list or the table.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: SCENario:EMITter:CLEar
driver.scenario.emitter.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.

get_value() str[source]
# SCPI: SCENario:EMITter
value: str = driver.scenario.emitter.get_value()

Assigns an existing emitter or an existing waveform, see method RsPulseSeq.Waveform.catalog and method RsPulseSeq.Emitter. catalog.

return:

emitter: string

set_value(emitter: str) None[source]
# SCPI: SCENario:EMITter
driver.scenario.emitter.set_value(emitter = 'abc')

Assigns an existing emitter or an existing waveform, see method RsPulseSeq.Waveform.catalog and method RsPulseSeq.Emitter. catalog.

param emitter:

string

Cloning the Group

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

Subgroups