Volatile

SCPI Commands :

SCENario:CACHe:VOLatile:CLEar
SCENario:CACHe:VOLatile:VALid
class VolatileCls[source]

Volatile commands group definition. 4 total commands, 2 Subgroups, 2 group commands

clear() None[source]
# SCPI: SCENario:CACHe:VOLatile:CLEar
driver.scenario.cache.volatile.clear()

Deletes the files from the volatile/repository memory.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: SCENario:CACHe:VOLatile:CLEar
driver.scenario.cache.volatile.clear_with_opc()

Deletes the files from the volatile/repository memory.

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_valid() bool[source]
# SCPI: SCENario:CACHe:VOLatile:VALid
value: bool = driver.scenario.cache.volatile.get_valid()

Queries whether the volatile/repository memory contains a valid signal file.

return:

valid: ON| OFF| 1| 0

Cloning the Group

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

Subgroups