Calibration

SCPI Commands :

CALibration:BASE:ALL
CALibration:BASE:ACFile
class CalibrationCls[source]

Calibration commands group definition. 10 total commands, 3 Subgroups, 2 group commands

class AcFileStruct[source]

Structure for reading output parameters. Fields:

  • Type_Py: str: No parameter help available

  • Date: str: No parameter help available

class AllStruct[source]

Structure for reading output parameters. Fields:

  • Date: List[str]: string Date of the calibration

  • Time: List[str]: string Time of the calibration

  • Type_Py: List[enums.Type]: FSCorrection | UCORrection | CALibration | OGCal Type of the calibration FSCorrection: Correction performed in factory or service UCORrection: Correction performed by a customer CALibration: Verification in the factory OGCal: Verification by the service (outgoing calibration)

get_ac_file() AcFileStruct[source]
# SCPI: CALibration:BASE:ACFile
value: AcFileStruct = driver.calibration.get_ac_file()

Query name and creation date of the currently active RF path correction file.

return:

structure: for return value, see the help for AcFileStruct structure arguments.

get_all() AllStruct[source]
# SCPI: CALibration:BASE:ALL
value: AllStruct = driver.calibration.get_all()

Query the stored calibration information. A comma-separated list is returned, containing three parameters per calibration, as described below.

return:

structure: for return value, see the help for AllStruct structure arguments.

Cloning the Group

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

Subgroups