Dwidth

SCPI Command:

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

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

class DwidthStruct[source]

Response structure. Fields:

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

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

get(audioInput=AudioInput.Default) DwidthStruct[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:AIN<nr>:FILTer:DWIDth
value: DwidthStruct = driver.configure.afRf.measurement.audioInput.filterPy.dwidth.get(audioInput = repcap.AudioInput.Default)

Configures the bandwidth of the distortion filter in an AF input path.

param audioInput:

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

return:

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

set(dwidth: PwrFilterType, relative: Relative, audioInput=AudioInput.Default) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:AIN<nr>:FILTer:DWIDth
driver.configure.afRf.measurement.audioInput.filterPy.dwidth.set(dwidth = enums.PwrFilterType.NARRow, relative = enums.Relative.CONStant, audioInput = repcap.AudioInput.Default)

Configures the bandwidth of the distortion filter in an AF input path.

param dwidth:

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

param relative:

RELative | CONStant Bandwidth proportional to reference frequency or constant

param audioInput:

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

Cloning the Group

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

Subgroups