Cw
SCPI Commands :
[SOURce<HW>]:FREQuency:[CW]:RCL
[SOURce<HW>]:FREQuency:[CW]
- class CwCls[source]
Cw commands group definition. 2 total commands, 0 Subgroups, 2 group commands
- get_recall() RsSmbv.enums.InclExcl [source]
# SCPI: [SOURce<HW>]:FREQuency:[CW]:RCL value: enums.InclExcl = driver.source.frequency.cw.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.
- return
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]
# SCPI: [SOURce<HW>]:FREQuency:[CW] value: float = driver.source.frequency.cw.get_value()
- Sets the frequency of the RF output signal in the selected path.
INTRO_CMD_HELP: 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.
- return
fixed: float The following settings influence the value range: An offset set with the command [:SOURcehw]: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 command [:SOURcehw]:FREQuency:STEP[:INCRement]. Range: (RFmin + OFFSet) to (RFmax + OFFSet)
- set_recall(rcl: RsSmbv.enums.InclExcl) None [source]
# SCPI: [SOURce<HW>]:FREQuency:[CW]:RCL driver.source.frequency.cw.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.
- param 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]
# SCPI: [SOURce<HW>]:FREQuency:[CW] driver.source.frequency.cw.set_value(fixed = 1.0)
- Sets the frequency of the RF output signal in the selected path.
INTRO_CMD_HELP: 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.
- param fixed
float The following settings influence the value range: An offset set with the command [:SOURcehw]: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 command [:SOURcehw]:FREQuency:STEP[:INCRement]. Range: (RFmin + OFFSet) to (RFmax + OFFSet)