Frequency
SCPI Commands :
FRANalysis:FREQuency:DATA
FRANalysis:FREQuency:STARt
FRANalysis:FREQuency:STOP
FRANalysis:FREQuency:MODE
- Commands in total: 4Subgroups: 0Direct child commands: 4
- get_data() List[float][source]
# FRANalysis:FREQuency:DATA value: List[float] = driver.franalysis.frequency.get_data()
Returns the data of the frequency points for which gain and phase have been calculated as a list of comma-separated values in Hz.
- Returns:
data: Comma-separated list of values
- get_mode() FrAnalysisMode[source]
# FRANalysis:FREQuency:MODE value: enums.FrAnalysisMode = driver.franalysis.frequency.get_mode()
Selects between single frequency and sweep analysis.
- Returns:
frequency_mode: SWEep | SINGle
- get_start() float[source]
# FRANalysis:FREQuency:STARt value: float = driver.franalysis.frequency.get_start()
Sets the start frequency of the sweep.
- Returns:
start_frequency: 0.01 to 100E+6
- get_stop() float[source]
# FRANalysis:FREQuency:STOP value: float = driver.franalysis.frequency.get_stop()
Sets the stop frequency of the sweep.
- Returns:
stop_frequency: 0.01 to 100E+6
- set_mode(frequency_mode: FrAnalysisMode) None[source]
# FRANalysis:FREQuency:MODE driver.franalysis.frequency.set_mode(frequency_mode = enums.FrAnalysisMode.SINGle)
Selects between single frequency and sweep analysis.
- Parameters:
frequency_mode – SWEep | SINGle
- set_start(start_frequency: float) None[source]
# FRANalysis:FREQuency:STARt driver.franalysis.frequency.set_start(start_frequency = 1.0)
Sets the start frequency of the sweep.
- Parameters:
start_frequency – 0.01 to 100E+6
- set_stop(stop_frequency: float) None[source]
# FRANalysis:FREQuency:STOP driver.franalysis.frequency.set_stop(stop_frequency = 1.0)
Sets the stop frequency of the sweep.
- Parameters:
stop_frequency – 0.01 to 100E+6