Correction

SCPI Commands :

[SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:CATalog
[SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:CLOSs
[SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:DELete
[SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:MODE
[SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:SELect
class CorrectionCls[source]

Correction commands group definition. 10 total commands, 3 Subgroups, 5 group commands

delete(filename: str) None[source]
# SCPI: [SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:DELete
driver.source.frequency.multiplier.external.correction.delete(filename = 'abc')

No command help available

param filename:

No help available

get_catalog() List[str][source]
# SCPI: [SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:CATalog
value: List[str] = driver.source.frequency.multiplier.external.correction.get_catalog()

No command help available

return:

catalog: No help available

get_closs() float[source]
# SCPI: [SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:CLOSs
value: float = driver.source.frequency.multiplier.external.correction.get_closs()

No command help available

return:

cable_loss: No help available

get_mode() RfFreqMultCcorMode[source]
# SCPI: [SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:MODE
value: enums.RfFreqMultCcorMode = driver.source.frequency.multiplier.external.correction.get_mode()

No command help available

return:

mode: No help available

get_select() str[source]
# SCPI: [SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:SELect
value: str = driver.source.frequency.multiplier.external.correction.get_select()

No command help available

return:

filename: No help available

set_closs(cable_loss: float) None[source]
# SCPI: [SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:CLOSs
driver.source.frequency.multiplier.external.correction.set_closs(cable_loss = 1.0)

No command help available

param cable_loss:

No help available

set_mode(mode: RfFreqMultCcorMode) None[source]
# SCPI: [SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:MODE
driver.source.frequency.multiplier.external.correction.set_mode(mode = enums.RfFreqMultCcorMode.HPRecision)

No command help available

param mode:

No help available

set_select(filename: str) None[source]
# SCPI: [SOURce<HW>]:FREQuency:MULTiplier:EXTernal:CORRection:SELect
driver.source.frequency.multiplier.external.correction.set_select(filename = 'abc')

No command help available

param filename:

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.frequency.multiplier.external.correction.clone()

Subgroups