Correction
SCPI Commands :
[SOURce<HW>]:EFRontend:EXTDevice:CORRection:FILE
[SOURce<HW>]:EFRontend:EXTDevice:CORRection:STATe
- class CorrectionCls[source]
Correction commands group definition. 2 total commands, 0 Subgroups, 2 group commands
- get_file() str [source]
# SCPI: [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.
- return:
filename: string
- get_state() bool [source]
# SCPI: [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.
- return:
state: 1| ON| 0| OFF
- set_file(filename: str) None [source]
# SCPI: [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.
- param filename:
string
- set_state(state: bool) None [source]
# SCPI: [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.
- param state:
1| ON| 0| OFF