Fixed
SCPI Commands :
[SOURce<HW>]:FREQuency:[FIXed]:RCL
[SOURce<HW>]:FREQuency:[FIXed]
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_recall() InclExcl[source]
# [SOURce<HW>]:FREQuency:[FIXed]:RCL value: enums.InclExcl = driver.source.frequency.fixed.get_recall()
Set whether the RF frequency value is retained or taken from a loaded instrument configuration, when you recall instrument settings with command
*RCL. The selected mode applies to both RF paths, i.e. a specified suffix is ignored.- Returns:
rcl: INCLude | EXCLude INCLude Takes the frequency value of the loaded settings. EXCLude Retains the current frequency when an instrument configuration is loaded.
- get_value() float[source]
# [SOURce<HW>]:FREQuency:[FIXed] value: float = driver.source.frequency.fixed.get_value()
Sets the frequency of the RF output signal in the selected path. The effect depends on the selected mode:
In CW mode (FREQ:MODE CW | FIXed) , the instrument operates at a fixed frequency.
In sweep mode (FREQ:MODE SWE) , the value applies to the sweep frequency. The instrument processes the frequency settings in defined sweep steps.
In user mode (FREQ:STEP:MODE USER) , you can vary the current frequency step by step.
For more information, refer to the specifications document.
- Returns:
fixed: float The following settings influence the value range: An offset set with the method
RsSmw.source.frequency.offset()Numerical value Sets the frequency in CW and sweep mode UP | DOWN Varies the frequency step by step in user mode. The frequency is increased or decreased by the value set with the methodRsSmw.source.frequency.step.increment(). Range: (RFmin + OFFSet) to (RFmax + OFFSet)
- set_recall(rcl: InclExcl) None[source]
# [SOURce<HW>]:FREQuency:[FIXed]:RCL driver.source.frequency.fixed.set_recall(rcl = enums.InclExcl.EXCLude)
Set whether the RF frequency value is retained or taken from a loaded instrument configuration, when you recall instrument settings with command
*RCL. The selected mode applies to both RF paths, i.e. a specified suffix is ignored.- Parameters:
rcl – INCLude | EXCLude INCLude Takes the frequency value of the loaded settings. EXCLude Retains the current frequency when an instrument configuration is loaded.
- set_value(fixed: float) None[source]
# [SOURce<HW>]:FREQuency:[FIXed] driver.source.frequency.fixed.set_value(fixed = 1.0)
Sets the frequency of the RF output signal in the selected path. The effect depends on the selected mode:
In CW mode (FREQ:MODE CW | FIXed) , the instrument operates at a fixed frequency.
In sweep mode (FREQ:MODE SWE) , the value applies to the sweep frequency. The instrument processes the frequency settings in defined sweep steps.
In user mode (FREQ:STEP:MODE USER) , you can vary the current frequency step by step.
For more information, refer to the specifications document.
- Parameters:
fixed – float The following settings influence the value range: An offset set with the method
RsSmw.source.frequency.offset()Numerical value Sets the frequency in CW and sweep mode UP | DOWN Varies the frequency step by step in user mode. The frequency is increased or decreased by the value set with the methodRsSmw.source.frequency.step.increment(). Range: (RFmin + OFFSet) to (RFmax + OFFSet)