Sswitching

SCPI Commands

CONFigure:GSM:MEASurement<Instance>:MEValuation:SSWitching:OFRequence
CONFigure:GSM:MEASurement<Instance>:MEValuation:SSWitching:TDFSelect
CONFigure:GSM:MEASurement<Instance>:MEValuation:SSWitching:PHMode
class Sswitching[source]

Sswitching commands group definition. 3 total commands, 0 Sub-groups, 3 group commands

get_ofrequence()List[float][source]
# SCPI: CONFigure:GSM:MEASurement<Instance>:MEValuation:SSWitching:OFRequence
value: List[float or bool] = driver.configure.multiEval.sswitching.get_ofrequence()

Defines the frequency offsets to be used for spectrum switching measurements. The offsets are defined relative to the analyzer frequency. Up to 20 offsets can be defined and enabled.

return

frequency_offset: No help available

get_ph_mode()RsCmwGsmMeas.enums.PeakHoldMode[source]
# SCPI: CONFigure:GSM:MEASurement<Instance>:MEValuation:SSWitching:PHMode
value: enums.PeakHoldMode = driver.configure.multiEval.sswitching.get_ph_mode()

Specifies how the peak hold mode is used for the spectrum switching results in frequency domain (bar graphs) and in time domain.

return

peak_hold_mode: PHOL | SCO PHOL: Frequency and time: peak hold SCO: Frequency: stat. count, time: current

get_tdf_select()int[source]
# SCPI: CONFigure:GSM:MEASurement<Instance>:MEValuation:SSWitching:TDFSelect
value: int or bool = driver.configure.multiEval.sswitching.get_tdf_select()

Defines the offset frequency for the spectrum modulation time diagram. The diagram shows the measured power vs. time at the selected offset frequency. The numbers 1 to 20 select the negative frequency offsets from the frequency offsets list, numbers 21 to 40 select the positive frequency offsets.

return

nr_freq_offset: integer | ON | OFF Range: 0 to 40 Additional parameters: OFF | ON (disables | enables the offset)

set_ofrequence(frequency_offset: List[float])None[source]
# SCPI: CONFigure:GSM:MEASurement<Instance>:MEValuation:SSWitching:OFRequence
driver.configure.multiEval.sswitching.set_ofrequence(frequency_offset = [1.1, True, 2.2, False, 3.3])

Defines the frequency offsets to be used for spectrum switching measurements. The offsets are defined relative to the analyzer frequency. Up to 20 offsets can be defined and enabled.

param frequency_offset

numeric | OFF | ON Set and enable frequency offset. Range: 0 Hz to 3 MHz, Unit: Hz Additional parameters: OFF | ON (disables / enables offset using the previous/default value)

set_ph_mode(peak_hold_mode: RsCmwGsmMeas.enums.PeakHoldMode)None[source]
# SCPI: CONFigure:GSM:MEASurement<Instance>:MEValuation:SSWitching:PHMode
driver.configure.multiEval.sswitching.set_ph_mode(peak_hold_mode = enums.PeakHoldMode.PHOL)

Specifies how the peak hold mode is used for the spectrum switching results in frequency domain (bar graphs) and in time domain.

param peak_hold_mode

PHOL | SCO PHOL: Frequency and time: peak hold SCO: Frequency: stat. count, time: current

set_tdf_select(nr_freq_offset: int)None[source]
# SCPI: CONFigure:GSM:MEASurement<Instance>:MEValuation:SSWitching:TDFSelect
driver.configure.multiEval.sswitching.set_tdf_select(nr_freq_offset = 1)

Defines the offset frequency for the spectrum modulation time diagram. The diagram shows the measured power vs. time at the selected offset frequency. The numbers 1 to 20 select the negative frequency offsets from the frequency offsets list, numbers 21 to 40 select the positive frequency offsets.

param nr_freq_offset

integer | ON | OFF Range: 0 to 40 Additional parameters: OFF | ON (disables | enables the offset)