Dimpedance

SCPI Command:

CONFigure:BASE:AOUT<nr>:DIMPedance
class DimpedanceCls[source]

Dimpedance commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class DimpedanceStruct[source]

Response structure. Fields:

  • Enable: bool: OFF | ON ON: Use the configured Impedance. OFF: Ignore the configured Impedance.

  • Impedance: float: Range: 1 Ohm to 100E+6 Ohm, Unit: Ohm

get(audioOutput=AudioOutput.Default) DimpedanceStruct[source]
# SCPI: CONFigure:BASE:AOUT<nr>:DIMPedance
value: DimpedanceStruct = driver.configure.base.audioOutput.dimpedance.get(audioOutput = repcap.AudioOutput.Default)

Configures the impedance ‘Rin DUT’ for passive circuitry.

param audioOutput:

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

return:

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

set(enable: bool, impedance: float, audioOutput=AudioOutput.Default) None[source]
# SCPI: CONFigure:BASE:AOUT<nr>:DIMPedance
driver.configure.base.audioOutput.dimpedance.set(enable = False, impedance = 1.0, audioOutput = repcap.AudioOutput.Default)

Configures the impedance ‘Rin DUT’ for passive circuitry.

param enable:

OFF | ON ON: Use the configured Impedance. OFF: Ignore the configured Impedance.

param impedance:

Range: 1 Ohm to 100E+6 Ohm, Unit: Ohm

param audioOutput:

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