Rbw

SCPI Commands :

CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:RBW:TYPE
CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:RBW:BANDpass
CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:RBW:GAUSs
class RbwCls[source]

Rbw commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_bandpass() float[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:RBW:BANDpass
value: float = driver.configure.spectrum.zeroSpan.rbw.get_bandpass()

Configures the bandwidth of the bandpass resolution filter. In the current software version, the value is fixed.

return:

rbw_bandpass: numeric Range: 40 MHz to 40 MHz, Unit: Hz

get_gauss() float[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:RBW:GAUSs
value: float = driver.configure.spectrum.zeroSpan.rbw.get_gauss()

Configures the bandwidth of the Gaussian resolution filter.

return:

rbw: numeric Only certain values can be configured, see Table ‘Supported values’. Other values are rounded to the next allowed value. Range: 100 Hz to 10 MHz, Unit: Hz

get_type_py() RbwFilterType[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:RBW:TYPE
value: enums.RbwFilterType = driver.configure.spectrum.zeroSpan.rbw.get_type_py()

Configures the type of the resolution filter to be used in zero span mode.

return:

rbw_type: GAUSs | BANDpass

set_bandpass(rbw_bandpass: float) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:RBW:BANDpass
driver.configure.spectrum.zeroSpan.rbw.set_bandpass(rbw_bandpass = 1.0)

Configures the bandwidth of the bandpass resolution filter. In the current software version, the value is fixed.

param rbw_bandpass:

numeric Range: 40 MHz to 40 MHz, Unit: Hz

set_gauss(rbw: float) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:RBW:GAUSs
driver.configure.spectrum.zeroSpan.rbw.set_gauss(rbw = 1.0)

Configures the bandwidth of the Gaussian resolution filter.

param rbw:

numeric Only certain values can be configured, see Table ‘Supported values’. Other values are rounded to the next allowed value. Range: 100 Hz to 10 MHz, Unit: Hz

set_type_py(rbw_type: RbwFilterType) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:RBW:TYPE
driver.configure.spectrum.zeroSpan.rbw.set_type_py(rbw_type = enums.RbwFilterType.BANDpass)

Configures the type of the resolution filter to be used in zero span mode.

param rbw_type:

GAUSs | BANDpass