Frequency

SCPI Commands :

CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:CENTer
CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:STARt
CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:STOP
CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:LASPan
class FrequencyCls[source]

Frequency commands group definition. 6 total commands, 1 Subgroups, 4 group commands

get_center() float[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:CENTer
value: float = driver.configure.spectrum.frequency.get_center()

Configures the center frequency of the spectrum measurement. This command is only relevant for the standalone scenario. For the combined signal path scenario, use the corresponding …:SIGN<i>:.. command. For the supported frequency range, see ‘Frequency ranges’.

return:

center_frequency: numeric Unit: Hz

get_laspan() float[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:LASPan
value: float = driver.configure.spectrum.frequency.get_laspan()

No command help available

return:

last_span: No help available

get_start() float[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:STARt
value: float = driver.configure.spectrum.frequency.get_start()

Configures the start frequency of the frequency sweep. For the supported frequency range, see ‘Frequency ranges’.

return:

start_frequency: numeric Unit: Hz

get_stop() float[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:STOP
value: float = driver.configure.spectrum.frequency.get_stop()

Configures the stop frequency of the frequency sweep. For the supported frequency range, see ‘Frequency ranges’.

return:

stop_frequency: numeric Unit: Hz

set_center(center_frequency: float) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:CENTer
driver.configure.spectrum.frequency.set_center(center_frequency = 1.0)

Configures the center frequency of the spectrum measurement. This command is only relevant for the standalone scenario. For the combined signal path scenario, use the corresponding …:SIGN<i>:.. command. For the supported frequency range, see ‘Frequency ranges’.

param center_frequency:

numeric Unit: Hz

set_laspan(last_span: float) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:LASPan
driver.configure.spectrum.frequency.set_laspan(last_span = 1.0)

No command help available

param last_span:

No help available

set_start(start_frequency: float) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:STARt
driver.configure.spectrum.frequency.set_start(start_frequency = 1.0)

Configures the start frequency of the frequency sweep. For the supported frequency range, see ‘Frequency ranges’.

param start_frequency:

numeric Unit: Hz

set_stop(stop_frequency: float) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:STOP
driver.configure.spectrum.frequency.set_stop(stop_frequency = 1.0)

Configures the stop frequency of the frequency sweep. For the supported frequency range, see ‘Frequency ranges’.

param stop_frequency:

numeric Unit: Hz

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.spectrum.frequency.clone()

Subgroups