Calibration

SCPI Commands :

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

Returns the date of the last selfalignment.

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

Returns the result of the last selfalignment 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 selfalignment.

Cloning the Group

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

Subgroups