Mchg

SCPI Commands :

SCENario:LOCalized:MCHG:CLEar
SCENario:LOCalized:MCHG:COUNt
SCENario:LOCalized:MCHG:DELete
SCENario:LOCalized:MCHG:SELect
SCENario:LOCalized:MCHG:STARt
SCENario:LOCalized:MCHG:STATe
SCENario:LOCalized:MCHG:STOP
class MchgCls[source]

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

clear() None[source]
# SCPI: SCENario:LOCalized:MCHG:CLEar
driver.scenario.localized.mchg.clear()

Removes all defined modes.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: SCENario:LOCalized:MCHG:CLEar
driver.scenario.localized.mchg.clear_with_opc()

Removes all defined modes.

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: SCENario:LOCalized:MCHG:DELete
driver.scenario.localized.mchg.delete(delete = 1.0)

Deletes the particular item.

param delete:

float

get_count() float[source]
# SCPI: SCENario:LOCalized:MCHG:COUNt
value: float = driver.scenario.localized.mchg.get_count()

Queries the number of existing items.

return:

count: integer

get_select() float[source]
# SCPI: SCENario:LOCalized:MCHG:SELect
value: float = driver.scenario.localized.mchg.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_start() float[source]
# SCPI: SCENario:LOCalized:MCHG:STARt
value: float = driver.scenario.localized.mchg.get_start()

Sets the start and end time per mode entry.

return:

start: No help available

get_state() bool[source]
# SCPI: SCENario:LOCalized:MCHG:STATe
value: bool = driver.scenario.localized.mchg.get_state()

Enables mode changes.

return:

state: ON| OFF| 1| 0

get_stop() float[source]
# SCPI: SCENario:LOCalized:MCHG:STOP
value: float = driver.scenario.localized.mchg.get_stop()

Sets the start and end time per mode entry.

return:

stop: float

set_select(select: float) None[source]
# SCPI: SCENario:LOCalized:MCHG:SELect
driver.scenario.localized.mchg.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_start(start: float) None[source]
# SCPI: SCENario:LOCalized:MCHG:STARt
driver.scenario.localized.mchg.set_start(start = 1.0)

Sets the start and end time per mode entry.

param start:

float

set_state(state: bool) None[source]
# SCPI: SCENario:LOCalized:MCHG:STATe
driver.scenario.localized.mchg.set_state(state = False)

Enables mode changes.

param state:

ON| OFF| 1| 0

set_stop(stop: float) None[source]
# SCPI: SCENario:LOCalized:MCHG:STOP
driver.scenario.localized.mchg.set_stop(stop = 1.0)

Sets the start and end time per mode entry.

param stop:

float

Cloning the Group

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

Subgroups