Cchirp

SCPI Commands :

PULSe:MOP:CCHirp:CLEar
PULSe:MOP:CCHirp:COUNt
PULSe:MOP:CCHirp:DELete
PULSe:MOP:CCHirp:FREQuency
PULSe:MOP:CCHirp:INSert
PULSe:MOP:CCHirp:SELect
class CchirpCls[source]

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

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

Deletes all items from the list or the table.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: PULSe:MOP:CCHirp:CLEar
driver.pulse.mop.cchirp.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:CCHirp:DELete
driver.pulse.mop.cchirp.delete(delete = 1.0)

Deletes the particular item.

param delete:

float

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

Queries the number of existing items.

return:

count: integer

get_frequency() float[source]
# SCPI: PULSe:MOP:CCHirp:FREQuency
value: float = driver.pulse.mop.cchirp.get_frequency()

Set the frequency of the custom chirp.

return:

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

get_select() float[source]
# SCPI: PULSe:MOP:CCHirp:SELect
value: float = driver.pulse.mop.cchirp.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_frequency(frequency: float) None[source]
# SCPI: PULSe:MOP:CCHirp:FREQuency
driver.pulse.mop.cchirp.set_frequency(frequency = 1.0)

Set the frequency of the custom chirp.

param frequency:

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

set_insert(insert: float) None[source]
# SCPI: PULSe:MOP:CCHirp:INSert
driver.pulse.mop.cchirp.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:CCHirp:SELect
driver.pulse.mop.cchirp.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.pulse.mop.cchirp.clone()

Subgroups