Coupling

SCPI Command :

INPut:IQ:OSC:COUPling
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get() CouplingTypeB[source]
# INPut:IQ:OSC:COUPling
value: enums.CouplingTypeB = driver.inputPy.iq.osc.coupling.get()

Determines the coupling of the oscilloscope to the FSW.

Returns:

coupling: DC | DCLimit | AC DC DC coupling shows all parts of an input signal. DC 50 Ohm coupling is the default for 50Ohm input impedance to connect, for example, active probes. DCLimit DC coupling with 1 M Ohm input impedance to connect standard passive probes. AC AC coupling is useful if the DC component of a signal is of no interest. AC coupling blocks the DC component of the signal so that the waveform is centered on zero volts.

set(coupling: CouplingTypeB) None[source]
# INPut:IQ:OSC:COUPling
driver.inputPy.iq.osc.coupling.set(coupling = enums.CouplingTypeB.AC)

Determines the coupling of the oscilloscope to the FSW.

Parameters:

coupling – DC | DCLimit | AC DC DC coupling shows all parts of an input signal. DC 50 Ohm coupling is the default for 50Ohm input impedance to connect, for example, active probes. DCLimit DC coupling with 1 M Ohm input impedance to connect standard passive probes. AC AC coupling is useful if the DC component of a signal is of no interest. AC coupling blocks the DC component of the signal so that the waveform is centered on zero volts.