Span

SCPI Commands :

CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:SPAN:MODE
CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:SPAN
class SpanCls[source]

Span commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_mode() SpanMode[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:SPAN:MODE
value: enums.SpanMode = driver.configure.spectrum.frequency.span.get_mode()

Configures the operating mode of the spectrum analyzer. FSWeep is not supported for combined signal path measurements.

return:

span_mode: FSWeep | ZSPan FSWeep: frequency sweep mode ZSPan: zero span (time sweep) mode

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

Configures the frequency span for frequency sweep mode. The supported frequency range depends on the instrument model and the available options. The supported range can be smaller than stated here. Refer to the preface of your model-specific base unit manual.

return:

frequency_span: numeric Range: 1.0 kHz to 5.93 GHz, Unit: Hz

set_mode(span_mode: SpanMode) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:SPAN:MODE
driver.configure.spectrum.frequency.span.set_mode(span_mode = enums.SpanMode.FSWeep)

Configures the operating mode of the spectrum analyzer. FSWeep is not supported for combined signal path measurements.

param span_mode:

FSWeep | ZSPan FSWeep: frequency sweep mode ZSPan: zero span (time sweep) mode

set_value(frequency_span: float) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:FREQuency:SPAN
driver.configure.spectrum.frequency.span.set_value(frequency_span = 1.0)

Configures the frequency span for frequency sweep mode. The supported frequency range depends on the instrument model and the available options. The supported range can be smaller than stated here. Refer to the preface of your model-specific base unit manual.

param frequency_span:

numeric Range: 1.0 kHz to 5.93 GHz, Unit: Hz