Pchirp

SCPI Commands :

PULSe:MOP:PCHirp:CLEar
PULSe:MOP:PCHirp:COEFficient
PULSe:MOP:PCHirp:COUNt
PULSe:MOP:PCHirp:DELete
PULSe:MOP:PCHirp:INSert
PULSe:MOP:PCHirp:SELect
PULSe:MOP:PCHirp:TERM
class PchirpCls[source]

Pchirp commands group definition. 8 total commands, 1 Subgroups, 7 group commands

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

Deletes all items from the list or the table.

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

Deletes the particular item.

param delete:

float

get_coefficient() float[source]
# SCPI: PULSe:MOP:PCHirp:COEFficient
value: float = driver.pulse.mop.pchirp.get_coefficient()

Sets the coefficient of the chirp polynomial.

return:

coefficient: float Range: -1e+32 to 1e+32

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

Queries the number of existing items.

return:

count: integer

get_select() float[source]
# SCPI: PULSe:MOP:PCHirp:SELect
value: float = driver.pulse.mop.pchirp.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_term() float[source]
# SCPI: PULSe:MOP:PCHirp:TERM
value: float = driver.pulse.mop.pchirp.get_term()

Sets the term of the chirp polynomial.

return:

term: float Range: 0 to 32

set_coefficient(coefficient: float) None[source]
# SCPI: PULSe:MOP:PCHirp:COEFficient
driver.pulse.mop.pchirp.set_coefficient(coefficient = 1.0)

Sets the coefficient of the chirp polynomial.

param coefficient:

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

set_insert(insert: float) None[source]
# SCPI: PULSe:MOP:PCHirp:INSert
driver.pulse.mop.pchirp.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:PCHirp:SELect
driver.pulse.mop.pchirp.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_term(term: float) None[source]
# SCPI: PULSe:MOP:PCHirp:TERM
driver.pulse.mop.pchirp.set_term(term = 1.0)

Sets the term of the chirp polynomial.

param term:

float Range: 0 to 32

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.pulse.mop.pchirp.clone()

Subgroups