Impedance

SCPI Commands

FUNCtion:IMPedance:TYPE
FUNCtion:IMPedance:SOURce
class ImpedanceCls[source]

Impedance commands group definition. 5 total commands, 1 Subgroups, 2 group commands

get_source() Impedance[source]
# SCPI: FUNCtion:IMPedance:SOURce
value: enums.Impedance = driver.function.impedance.get_source()

Selects the output impedance for the measurement.

return:

impedance: - LOW | R10: Sets 10 Ω output impedance. - HIGH | R100: Sets 100 Ω output impedance.

get_type_py() ImpedanceType[source]
# SCPI: FUNCtion:IMPedance[:TYPE]
value: enums.ImpedanceType = driver.function.impedance.get_type_py()

Selects the impedance parameter for the measurement corresponding to the measurement type, see method RsLcx.Function. Measurement.typePy.

return:

impedance_type: - CPD | CPQ | CPG | CPRP | CSD | CSQ | CSRS: Capacitive measurement type: Cp (parallel capacitance) , Cs (serial capacitance) , D (dissipation factor) , Q (quality factor) , G (conductance) , Rp (parallel resistance) , Rs (serial resistance) - LPD | LPQ | LPG | LPRP | LPRDc | LSD | LSQ | LSRS | LSRDc: Inductive measurement type: Lp (parallel inductance) , Ls (serial inductance) , D (dissipation factor) , Q (quality factor) , G (conductance) , Rp (parallel resistance) , Rs (serial resistance) , RDc (direct current resistance) - RX | RPB | RDC | MTD | NTD | ZTD | ZTR | GB | YTD | YTR: Resistance measurement type: R (resistance) , X impedance, Rp (parallel resistance) , RDC (direct current resistance) , B (susceptance) , M (mutual inductance) , N (transformer ratio) , Z (impedance) , G (conductance) , Y (admittance) , TD (phase angle degree) , TR (phase angle rad)

set_source(impedance: Impedance) None[source]
# SCPI: FUNCtion:IMPedance:SOURce
driver.function.impedance.set_source(impedance = enums.Impedance.HIGH)

Selects the output impedance for the measurement.

param impedance:
  • LOW | R10: Sets 10 Ω output impedance.

  • HIGH | R100: Sets 100 Ω output impedance.

set_type_py(impedance_type: ImpedanceType) None[source]
# SCPI: FUNCtion:IMPedance[:TYPE]
driver.function.impedance.set_type_py(impedance_type = enums.ImpedanceType.CPD)

Selects the impedance parameter for the measurement corresponding to the measurement type, see method RsLcx.Function. Measurement.typePy.

param impedance_type:
  • CPD | CPQ | CPG | CPRP | CSD | CSQ | CSRS: Capacitive measurement type: Cp (parallel capacitance) , Cs (serial capacitance) , D (dissipation factor) , Q (quality factor) , G (conductance) , Rp (parallel resistance) , Rs (serial resistance)

  • LPD | LPQ | LPG | LPRP | LPRDc | LSD | LSQ | LSRS | LSRDc: Inductive measurement type: Lp (parallel inductance) , Ls (serial inductance) , D (dissipation factor) , Q (quality factor) , G (conductance) , Rp (parallel resistance) , Rs (serial resistance) , RDc (direct current resistance)

  • RX | RPB | RDC | MTD | NTD | ZTD | ZTR | GB | YTD | YTR: Resistance measurement type: R (resistance) , X impedance, Rp (parallel resistance) , RDC (direct current resistance) , B (susceptance) , M (mutual inductance) , N (transformer ratio) , Z (impedance) , G (conductance) , Y (admittance) , TD (phase angle degree) , TR (phase angle rad)

Subgroups