Frequency

SCPI Command:

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

Frequency commands group definition. 7 total commands, 2 Subgroups, 3 group commands

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

Specifies the center frequency of the measurement. You can also configure this setting via method RsCma.Configure. GprfMeasurement.RfSettings.frequency.

return:

center_frequency: Range: 100 kHz to 3 GHz, Unit: Hz

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

Specifies the start frequency of the measured span for the frequency sweep mode.

return:

start_frequency: Range: 99500 Hz to 2.9999995 GHz, Unit: Hz

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

Specifies the stop frequency of the measured span for the frequency sweep mode.

return:

stop_frequency: Range: 100500 Hz to 3.0000005 GHz, Unit: Hz

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

Specifies the center frequency of the measurement. You can also configure this setting via method RsCma.Configure. GprfMeasurement.RfSettings.frequency.

param center_frequency:

Range: 100 kHz to 3 GHz, Unit: Hz

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

Specifies the start frequency of the measured span for the frequency sweep mode.

param start_frequency:

Range: 99500 Hz to 2.9999995 GHz, Unit: Hz

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

Specifies the stop frequency of the measured span for the frequency sweep mode.

param stop_frequency:

Range: 100500 Hz to 3.0000005 GHz, Unit: Hz

Cloning the Group

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

Subgroups