Source
SCPI Command :
[SENSe]:ROSCillator:SOURce
- Commands in total: 2Subgroups: 1Direct child commands: 1
- get() ReferenceSourceA[source]
# [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.
- Returns:
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: ReferenceSourceA) None[source]
# [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.
- Parameters:
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 copy of the original group, that exists independently
source_copy = driver.sense.roscillator.source.clone()
Subgroups