Calibration

SCPI Commands :

CALibration:RESult
CALibration:DATE
CALibration:TIME
Commands in total: 4
Subgroups: 1
Direct child commands: 3
get_date() str[source]
# CALibration:DATE
value: str = driver.calibration.get_date()

Returns the date of the last self-alignment.

get_result() ResultState[source]
# CALibration:RESult
value: enums.ResultState = driver.calibration.get_result()

Returns the result of the last self-alignment and the current alignment status. In remote mode, *CAL? provides more detailed information.

Returns:

result_state: PASSed | FAILed | NOALigndata

get_time() str[source]
# CALibration:TIME
value: str = driver.calibration.get_time()

Returns the time of the last self-alignment.

Cloning the Group

# Create a copy of the original group, that exists independently
calibration_copy = driver.calibration.clone()

Subgroups