Correction

SCPI Commands :

[SOURce<HW>]:EFRontend:EXTDevice:CORRection:FILE
[SOURce<HW>]:EFRontend:EXTDevice:CORRection:STATe
Commands in total: 2
Subgroups: 0
Direct child commands: 2
get_file() str[source]
# [SOURce<HW>]:EFRontend:EXTDevice:CORRection:FILE
value: str = driver.source.efrontend.extDevice.correction.get_file()

Selects an existing correction file, e.g. to compensate for cable losses. Selectable files have file extension s2p or uco.

Returns:

filename: string

get_state() bool[source]
# [SOURce<HW>]:EFRontend:EXTDevice:CORRection:STATe
value: bool = driver.source.efrontend.extDevice.correction.get_state()

Activates correction of the RF signal for different RF signal frequencies. Activation requires loading of a valid correction file.

Returns:

state: 1 | ON | 0| OFF

set_file(filename: str) None[source]
# [SOURce<HW>]:EFRontend:EXTDevice:CORRection:FILE
driver.source.efrontend.extDevice.correction.set_file(filename = 'abc')

Selects an existing correction file, e.g. to compensate for cable losses. Selectable files have file extension s2p or uco.

Parameters:

filename – string

set_state(state: bool) None[source]
# [SOURce<HW>]:EFRontend:EXTDevice:CORRection:STATe
driver.source.efrontend.extDevice.correction.set_state(state = False)

Activates correction of the RF signal for different RF signal frequencies. Activation requires loading of a valid correction file.

Parameters:

state – 1 | ON | 0| OFF