Power

SCPI Command:

INITiate:GPRF:MEASurement<Instance>:POWer
STOP:GPRF:MEASurement<Instance>:POWer
ABORt:GPRF:MEASurement<Instance>:POWer
class PowerCls[source]

Power commands group definition. 27 total commands, 8 Subgroups, 3 group commands

abort(opc_timeout_ms: int = -1) None[source]
# SCPI: ABORt:GPRF:MEASurement<Instance>:POWer
driver.gprfMeasurement.power.abort()

Stops the power measurement.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

initiate(opc_timeout_ms: int = -1) None[source]
# SCPI: INITiate:GPRF:MEASurement<Instance>:POWer
driver.gprfMeasurement.power.initiate()

Starts or continues the power measurement.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

stop(opc_timeout_ms: int = -1) None[source]
# SCPI: STOP:GPRF:MEASurement<Instance>:POWer
driver.gprfMeasurement.power.stop()

Pauses the power measurement.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.gprfMeasurement.power.clone()

Subgroups