Calibration
SCPI Commands :
SCONfiguration:RFALignment:SETup:INFO:CALibration:AGE
SCONfiguration:RFALignment:SETup:INFO:CALibration:DATE
SCONfiguration:RFALignment:SETup:INFO:CALibration:LOCoupling
SCONfiguration:RFALignment:SETup:INFO:CALibration:PARameters
SCONfiguration:RFALignment:SETup:INFO:CALibration:TIME
- Commands in total: 16Subgroups: 3Direct child commands: 5
- get_age() int[source]
# SCONfiguration:RFALignment:SETup:INFO:CALibration:AGE value: int = driver.sconfiguration.rfAlignment.setup.info.calibration.get_age()
Queries how many days are passed since the moment the calibration described in the loaded setup file is performed.
- Returns:
days: integer Time since calibration in days
- get_date() str[source]
# SCONfiguration:RFALignment:SETup:INFO:CALibration:DATE value: str = driver.sconfiguration.rfAlignment.setup.info.calibration.get_date()
Queries the time the calibration described in the loaded setup file is performed.
- Returns:
date: string
- get_lo_coupling() RfPortFreqMode[source]
# SCONfiguration:RFALignment:SETup:INFO:CALibration:LOCoupling value: enums.RfPortFreqMode = driver.sconfiguration.rfAlignment.setup.info.calibration.get_lo_coupling()
Queries whether the instruments use a common local oscillator (LO) signal or not.
- Returns:
state: ACTive | NACTive ACTive All instruments are connected to the same LO reference frequency. NACTive Each instrument uses its own local oscillator.
- get_parameters() str[source]
# SCONfiguration:RFALignment:SETup:INFO:CALibration:PARameters value: str = driver.sconfiguration.rfAlignment.setup.info.calibration.get_parameters()
Queries information on the major calibrated parameters.
- Returns:
calibrated_param: string
- get_time() str[source]
# SCONfiguration:RFALignment:SETup:INFO:CALibration:TIME value: str = driver.sconfiguration.rfAlignment.setup.info.calibration.get_time()
The date and time the calibration described in the loaded setup file is performed.
- Returns:
time: string
Cloning the Group
# Create a copy of the original group, that exists independently
calibration_copy = driver.sconfiguration.rfAlignment.setup.info.calibration.clone()
Subgroups