Setup

SCPI Commands :

SCONfiguration:RFALignment:SETup:CATalog
SCONfiguration:RFALignment:SETup:STATus
Commands in total: 25
Subgroups: 3
Direct child commands: 2
get_catalog() List[str][source]
# SCONfiguration:RFALignment:SETup:CATalog
value: List[str] = driver.sconfiguration.rfAlignment.setup.get_catalog()

Queries the names of the existing setup files in the default directory. Per default, the instrument saves user-defined files in the /var/user/ directory. Use the command method RsSmw.massMemory.current_directory() to change the default directory to the currently used one. Only files with extension rfsa are listed.

get_status() RfPortStatus[source]
# SCONfiguration:RFALignment:SETup:STATus
value: enums.RfPortStatus = driver.sconfiguration.rfAlignment.setup.get_status()

Queries information on the internal compensation status and the connected secondary instruments.

Returns:

setup_status: NALign | ALIGned | ERRor | WARNing | INACtive | NOSetup | INValid NOSetup = Setup is not loaded INValid = Loaded setup does not match the current setup INACtive = Setup loaded but RF port alignment not enabled NALign = Setup is loaded but aligned not triggered ALIGned | ERRor | WARNing = Setup is aligned, error, warning

Cloning the Group

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

Subgroups