Dpd

SCPI Commands :

[SOURce<HW>]:IQ:DPD:AMFirst
[SOURce<HW>]:IQ:DPD:LREFerence
[SOURce<HW>]:IQ:DPD:PRESet
[SOURce<HW>]:IQ:DPD:STATe
class DpdCls[source]

Dpd commands group definition. 47 total commands, 9 Subgroups, 4 group commands

get_am_first() bool[source]
# SCPI: [SOURce<HW>]:IQ:DPD:AMFirst
value: bool = driver.source.iq.dpd.get_am_first()

No command help available

return:

am_am_first_state: No help available

get_lreference() DpdPowRef[source]
# SCPI: [SOURce<HW>]:IQ:DPD:LREFerence
value: enums.DpdPowRef = driver.source.iq.dpd.get_lreference()

No command help available

return:

level_reference: No help available

get_state() bool[source]
# SCPI: [SOURce<HW>]:IQ:DPD:STATe
value: bool = driver.source.iq.dpd.get_state()

No command help available

return:

state: No help available

preset() None[source]
# SCPI: [SOURce<HW>]:IQ:DPD:PRESet
driver.source.iq.dpd.preset()

No command help available

preset_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: [SOURce<HW>]:IQ:DPD:PRESet
driver.source.iq.dpd.preset_with_opc()

No command help available

Same as preset, but waits for the operation to complete before continuing further. Use the RsSmcv.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

set_am_first(am_am_first_state: bool) None[source]
# SCPI: [SOURce<HW>]:IQ:DPD:AMFirst
driver.source.iq.dpd.set_am_first(am_am_first_state = False)

No command help available

param am_am_first_state:

No help available

set_lreference(level_reference: DpdPowRef) None[source]
# SCPI: [SOURce<HW>]:IQ:DPD:LREFerence
driver.source.iq.dpd.set_lreference(level_reference = enums.DpdPowRef.ADPD)

No command help available

param level_reference:

No help available

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:IQ:DPD:STATe
driver.source.iq.dpd.set_state(state = False)

No command help available

param state:

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.iq.dpd.clone()

Subgroups