Mode

SCPI Command :

DISPlay[:WINDow<n>][:SUBWindow<w>]:TRACe<t>:MODE
class ModeCls[source]

Mode commands group definition. 2 total commands, 1 Subgroups, 1 group commands

get(window=Window.Default, subWindow=SubWindow.Default, trace=Trace.Default) RsFsw.enums.TraceModeF[source]
# SCPI: DISPlay[:WINDow<n>][:SUBWindow<w>]:TRACe<t>:MODE
value: enums.TraceModeF = driver.display.window.subwindow.trace.mode.get(window = repcap.Window.Default, subWindow = repcap.SubWindow.Default, trace = repcap.Trace.Default)

Selects the trace mode. If necessary, the selected trace is also activated. For max hold, min hold or average trace mode, you can set the number of single measurements with [SENSe:]SWEep:COUNt. Note that synchronization to the end of the measurement is possible only in single sweep mode. In the R&S FSW AM/FM/PM Modulation Analysis application, when you configure the traces for a window with a specific evaluation (e.g. AM time domain) , the traces in all windows with the same evaluation are configured identically. For more information, see ‘Analyzing Several Traces - Trace Mode’.

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Window’)

param subWindow

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Subwindow’)

param trace

optional repeated capability selector. Default value: Tr1 (settable in the interface ‘Trace’)

return

trace_mode: WRITe (default:) Overwrite mode: the trace is overwritten by each sweep. AVERage The average is formed over several sweeps. The ‘Sweep/Average Count’ determines the number of averaging procedures. MAXHold The maximum value is determined over several sweeps and displayed. The FSW saves the sweep result in the trace memory only if the new value is greater than the previous one. MINHold The minimum value is determined from several measurements and displayed. The FSW saves the sweep result in the trace memory only if the new value is lower than the previous one. VIEW The current contents of the trace memory are frozen and displayed. BLANk Hides the selected trace.

set(trace_mode: RsFsw.enums.TraceModeF, window=Window.Default, subWindow=SubWindow.Default, trace=Trace.Default) None[source]
# SCPI: DISPlay[:WINDow<n>][:SUBWindow<w>]:TRACe<t>:MODE
driver.display.window.subwindow.trace.mode.set(trace_mode = enums.TraceModeF.AVERage, window = repcap.Window.Default, subWindow = repcap.SubWindow.Default, trace = repcap.Trace.Default)

Selects the trace mode. If necessary, the selected trace is also activated. For max hold, min hold or average trace mode, you can set the number of single measurements with [SENSe:]SWEep:COUNt. Note that synchronization to the end of the measurement is possible only in single sweep mode. In the R&S FSW AM/FM/PM Modulation Analysis application, when you configure the traces for a window with a specific evaluation (e.g. AM time domain) , the traces in all windows with the same evaluation are configured identically. For more information, see ‘Analyzing Several Traces - Trace Mode’.

param trace_mode

WRITe (default:) Overwrite mode: the trace is overwritten by each sweep. AVERage The average is formed over several sweeps. The ‘Sweep/Average Count’ determines the number of averaging procedures. MAXHold The maximum value is determined over several sweeps and displayed. The FSW saves the sweep result in the trace memory only if the new value is greater than the previous one. MINHold The minimum value is determined from several measurements and displayed. The FSW saves the sweep result in the trace memory only if the new value is lower than the previous one. VIEW The current contents of the trace memory are frozen and displayed. BLANk Hides the selected trace.

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Window’)

param subWindow

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Subwindow’)

param trace

optional repeated capability selector. Default value: Tr1 (settable in the interface ‘Trace’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.display.window.subwindow.trace.mode.clone()

Subgroups