Interleaving

SCPI Commands :

SCENario:CEMit:INTerleaving:MODE
SCENario:CEMit:INTerleaving:FREQagility
SCENario:CEMit:INTerleaving
class InterleavingCls[source]

Interleaving commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_freq_agility() bool[source]
# SCPI: SCENario:CEMit:INTerleaving:FREQagility
value: bool = driver.scenario.cemit.interleaving.get_freq_agility()

Enables frequency agility in interleaving. Requires R&S SMW with firmware version 5.xx.xxx and higher. To query the installed firmware version of the selected instrument, use the command method RsPulseSeq.Instrument.firmware.

return:

freq_agility: ON| OFF| 1| 0

get_mode() InterleaveMode[source]
# SCPI: SCENario:CEMit:INTerleaving:MODE
value: enums.InterleaveMode = driver.scenario.cemit.interleaving.get_mode()

Select the mode for interleaving.

return:

mode: DROP| MERGe DROP Interleaving uses a priority-based dropping algorithm. MERGE Emitters or PDW lists are merged into multiple output files using groups.

get_value() bool[source]
# SCPI: SCENario:CEMit:INTerleaving
value: bool = driver.scenario.cemit.interleaving.get_value()

If enabled, multiple PDW lists are interleaved into a single output file using a priority-based dropping algorithm. Set the priority with the command method RsPulseSeq.Scenario.Cpdw.priority.

return:

interleaving: ON| OFF| 1| 0

set_freq_agility(freq_agility: bool) None[source]
# SCPI: SCENario:CEMit:INTerleaving:FREQagility
driver.scenario.cemit.interleaving.set_freq_agility(freq_agility = False)

Enables frequency agility in interleaving. Requires R&S SMW with firmware version 5.xx.xxx and higher. To query the installed firmware version of the selected instrument, use the command method RsPulseSeq.Instrument.firmware.

param freq_agility:

ON| OFF| 1| 0

set_mode(mode: InterleaveMode) None[source]
# SCPI: SCENario:CEMit:INTerleaving:MODE
driver.scenario.cemit.interleaving.set_mode(mode = enums.InterleaveMode.DROP)

Select the mode for interleaving.

param mode:

DROP| MERGe DROP Interleaving uses a priority-based dropping algorithm. MERGE Emitters or PDW lists are merged into multiple output files using groups.

set_value(interleaving: bool) None[source]
# SCPI: SCENario:CEMit:INTerleaving
driver.scenario.cemit.interleaving.set_value(interleaving = False)

If enabled, multiple PDW lists are interleaved into a single output file using a priority-based dropping algorithm. Set the priority with the command method RsPulseSeq.Scenario.Cpdw.priority.

param interleaving:

ON| OFF| 1| 0