Dwidth

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:DEModulation:FILTer:DWIDth
class DwidthCls[source]

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

class DwidthStruct[source]

Response structure. Fields:

  • Dwidth_Left: enums.PwrFilterType: WIDE | NARRow | UDEF Wide or narrow bandwidth

  • Relative_Left: enums.Relative: RELative | CONStant Bandwidth proportional to reference frequency or constant

  • Dwidth_Right: enums.PwrFilterType: WIDE | NARRow | UDEF

  • Relative_Right: enums.Relative: RELative | CONStant

get() DwidthStruct[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:DEModulation:FILTer:DWIDth
value: DwidthStruct = driver.configure.afRf.measurement.demodulation.filterPy.dwidth.get()

Configures the bandwidth of the distortion filter in the RF input path. For FM stereo, the settings configure the left and the right audio channel. For other modulation types, only the <…Left> settings are relevant. The <… Right> settings have no effect.

return:

structure: for return value, see the help for DwidthStruct structure arguments.

set(dwidth_left: PwrFilterType, relative_left: Relative, dwidth_right: PwrFilterType, relative_right: Relative) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:DEModulation:FILTer:DWIDth
driver.configure.afRf.measurement.demodulation.filterPy.dwidth.set(dwidth_left = enums.PwrFilterType.NARRow, relative_left = enums.Relative.CONStant, dwidth_right = enums.PwrFilterType.NARRow, relative_right = enums.Relative.CONStant)

Configures the bandwidth of the distortion filter in the RF input path. For FM stereo, the settings configure the left and the right audio channel. For other modulation types, only the <…Left> settings are relevant. The <… Right> settings have no effect.

param dwidth_left:

WIDE | NARRow | UDEF Wide or narrow bandwidth

param relative_left:

RELative | CONStant Bandwidth proportional to reference frequency or constant

param dwidth_right:

WIDE | NARRow | UDEF

param relative_right:

RELative | CONStant

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.afRf.measurement.demodulation.filterPy.dwidth.clone()

Subgroups