Nrt

SCPI Command:

INITiate:GPRF:MEASurement<Instance>:NRT
STOP:GPRF:MEASurement<Instance>:NRT
ABORt:GPRF:MEASurement<Instance>:NRT
FETCh:GPRF:MEASurement<Instance>:NRT:IDN
class NrtCls[source]

Nrt commands group definition. 30 total commands, 3 Subgroups, 4 group commands

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

Stops the NRT-Z measurement.

param opc_timeout_ms:

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

get_idn() str[source]
# SCPI: FETCh:GPRF:MEASurement<Instance>:NRT:IDN
value: str = driver.gprfMeasurement.nrt.get_idn()

Queries the identification string of the connected external power sensor.

return:

idn: String parameter

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

Starts or continues the NRT-Z 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>:NRT
driver.gprfMeasurement.nrt.stop()

Pauses the NRT-Z 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.nrt.clone()

Subgroups