Dwidth

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:SIN: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, narrow or user-defined bandwidth, left channel

  • Drelative_Left: enums.Relative: RELative | CONStant Proportional to reference frequency or constant, left channel

  • Dwidth_Right: enums.PwrFilterType: WIDE | NARRow | UDEF Wide, narrow or user-defined bandwidth, right channel

  • Drelative_Right: enums.Relative: RELative | CONStant Proportional to reference frequency or constant, right channel

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

Configures the bandwidth of the distortion filter in the SPDIF input path.

return:

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

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

Configures the bandwidth of the distortion filter in the SPDIF input path.

param dwidth_left:

WIDE | NARRow | UDEF Wide, narrow or user-defined bandwidth, left channel

param drelative_left:

RELative | CONStant Proportional to reference frequency or constant, left channel

param dwidth_right:

WIDE | NARRow | UDEF Wide, narrow or user-defined bandwidth, right channel

param drelative_right:

RELative | CONStant Proportional to reference frequency or constant, right channel

Cloning the Group

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

Subgroups