Zvc

SCPI Commands :

ZVC:TYPE
ZVC:RESCoupled
ZVC:BANDwidth
Commands in total: 37
Subgroups: 1
Direct child commands: 3
get_bandwidth() float[source]
# ZVC:BANDwidth
value: float = driver.zvc.get_bandwidth()

Sets the bandwidth limit of the probe. The bandwidth specifies the maximum frequency at which a purely sinusoidal signal is still transferred at 89 % (0.1 dB) of its amplitude.

Returns:

bandwidth: 5000 to 1E+6

get_res_coupled() bool[source]
# ZVC:RESCoupled
value: bool = driver.zvc.get_res_coupled()

Sets the resolution of all R&S RT-ZVC channels.

get_type_py() DecimationMode[source]
# ZVC:TYPE
value: enums.DecimationMode = driver.zvc.get_type_py()

Sets the decimation mode for the R&S RT-ZVC probe. Decimation reduces the data stream of the ADC to a stream of waveform points with lower sample rate and a less precise time resolution.

Returns:

decimation_mode: SAMPle | PDETect | HRESolution

set_bandwidth(bandwidth: float) None[source]
# ZVC:BANDwidth
driver.zvc.set_bandwidth(bandwidth = 1.0)

Sets the bandwidth limit of the probe. The bandwidth specifies the maximum frequency at which a purely sinusoidal signal is still transferred at 89 % (0.1 dB) of its amplitude.

Parameters:

bandwidth – 5000 to 1E+6

set_res_coupled(zui_res_coupled_analog_chs: bool) None[source]
# ZVC:RESCoupled
driver.zvc.set_res_coupled(zui_res_coupled_analog_chs = False)

Sets the resolution of all R&S RT-ZVC channels.

Parameters:

zui_res_coupled_analog_chs

OFF | ON

  • ON: The resolution of the analog channels is applied to R&S RT-ZVC channels. The signal is automatically interpolated or decimated to get the analog resolution.

  • OFF: The resolution of R&S RT-ZVC channels is set in a way so that the record length of the waveforms is minimum 1000 samples.

set_type_py(decimation_mode: DecimationMode) None[source]
# ZVC:TYPE
driver.zvc.set_type_py(decimation_mode = enums.DecimationMode.HRESolution)

Sets the decimation mode for the R&S RT-ZVC probe. Decimation reduces the data stream of the ADC to a stream of waveform points with lower sample rate and a less precise time resolution.

Parameters:

decimation_mode – SAMPle | PDETect | HRESolution

Cloning the Group

# Create a copy of the original group, that exists independently
zvc_copy = driver.zvc.clone()

Subgroups