Base

SCPI Command:

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

Base commands group definition. 4 total commands, 1 Subgroups, 2 group commands

class AcFileStruct[source]

Structure for reading output parameters. Fields:

  • Type_Py: str: Name of the correction file as string

  • Date: str: Creation date as string

class AllStruct[source]

Structure for reading output parameters. Fields:

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

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

  • Type_Py: List[enums.CalibType]: FSCorrection | CALibration | OGCal Type of the calibration FSCorrection Correction performed in factory or service 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.base.get_ac_file()

Query name and creation date of the currently active RF path correction file. Possible result: ‘Factory Default’, ‘2016-09-28’

return:

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

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

Queries 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.base.clone()

Subgroups