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
class CalibrationCls[source]

Calibration commands group definition. 16 total commands, 3 Subgroups, 5 group commands

get_age() int[source]
# SCPI: 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.

return

days: integer Time since calibration in days

get_date() str[source]
# SCPI: 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.

return

date: string

get_lo_coupling() RsSmw.enums.RfPortFreqMode[source]
# SCPI: 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.

return

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]
# SCPI: SCONfiguration:RFALignment:SETup:INFO:CALibration:PARameters
value: str = driver.sconfiguration.rfAlignment.setup.info.calibration.get_parameters()

Queries information on the major calibrated parameters.

return

calibrated_param: string

get_time() str[source]
# SCPI: 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.

return

time: string

Cloning the Group

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

Subgroups