Source

SCPI Command :

[SENSe]:ROSCillator:SOURce
class SourceCls[source]

Source commands group definition. 2 total commands, 1 Subgroups, 1 group commands

get() RsFsw.enums.ReferenceSourceA[source]
# SCPI: [SENSe]:ROSCillator:SOURce
value: enums.ReferenceSourceA = driver.sense.roscillator.source.get()

This command selects the reference oscillator. If you want to select the external reference, it must be connected to the FSW.

return

source: INTernal The internal reference is used (10 MHz) . EXTernal | EXTernal1 | EXT1 The external reference from the ‘REF INPUT 10 MHZ’ connector is used; if none is available, an error flag is displayed in the status bar. E10 The external reference from ‘REF INPUT 1..50 MHZ’ connector is used with a fixed 10 MHZ frequency; if none is available, an error flag is displayed in the status bar. E100 The external reference from the ‘REF INPUT 100 MHZ / 1 GHz’ connector is used with a fixed 100 MHZ frequency; if none is available, an error flag is displayed in the status bar. E1000 The external reference from ‘REF INPUT 100 MHZ / 1 GHz’ connector is used with a fixed 1 GHZ frequency; if none is available, an error flag is displayed in the status bar. EAUTo The external reference is used as long as it is available, then the instrument switches to the internal reference. SYNC The external reference is used; if none is available, an error flag is displayed in the status bar.

set(source: RsFsw.enums.ReferenceSourceA) None[source]
# SCPI: [SENSe]:ROSCillator:SOURce
driver.sense.roscillator.source.set(source = enums.ReferenceSourceA.E10)

This command selects the reference oscillator. If you want to select the external reference, it must be connected to the FSW.

param source

INTernal The internal reference is used (10 MHz) . EXTernal | EXTernal1 | EXT1 The external reference from the ‘REF INPUT 10 MHZ’ connector is used; if none is available, an error flag is displayed in the status bar. E10 The external reference from ‘REF INPUT 1..50 MHZ’ connector is used with a fixed 10 MHZ frequency; if none is available, an error flag is displayed in the status bar. E100 The external reference from the ‘REF INPUT 100 MHZ / 1 GHz’ connector is used with a fixed 100 MHZ frequency; if none is available, an error flag is displayed in the status bar. E1000 The external reference from ‘REF INPUT 100 MHZ / 1 GHz’ connector is used with a fixed 1 GHZ frequency; if none is available, an error flag is displayed in the status bar. EAUTo The external reference is used as long as it is available, then the instrument switches to the internal reference. SYNC The external reference is used; if none is available, an error flag is displayed in the status bar.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sense.roscillator.source.clone()

Subgroups