Dpd

SCPI Commands :

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

Dpd commands group definition. 49 total commands, 9 Subgroups, 5 group commands

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

Sets that the AM/AM predistortion is applied before the AM/PM.

return

am_am_first_state: 1| ON| 0| OFF

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

Sets whether a dynamic (BDPD|ADPD) or a static (SDPS) adaptation of the range the selected DPD is applied on.

return

level_reference: BDPD| ADPD| SDPD

get_scale() RsSmbv.enums.IqOutEnvScale[source]
# SCPI: [SOURce<HW>]:IQ:DPD:SCALe
value: enums.IqOutEnvScale = driver.source.iq.dpd.get_scale()

Determines the units used on the x and y-axis.

return

scale: POWer| VOLTage

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

Enabels/disables the generation of digitally pre-distorted signals.

return

state: 1| ON| 0| OFF

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

Sets the default DPD settings (*RST values specified for the commands) . Not affected is the state set with the command [:SOURce<hw>]:IQ:DPD:STATe.

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

Sets the default DPD settings (*RST values specified for the commands) . Not affected is the state set with the command [:SOURce<hw>]:IQ:DPD:STATe.

Same as preset, but waits for the operation to complete before continuing further. Use the RsSmbv.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)

Sets that the AM/AM predistortion is applied before the AM/PM.

param am_am_first_state

1| ON| 0| OFF

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

Sets whether a dynamic (BDPD|ADPD) or a static (SDPS) adaptation of the range the selected DPD is applied on.

param level_reference

BDPD| ADPD| SDPD

set_scale(scale: RsSmbv.enums.IqOutEnvScale) None[source]
# SCPI: [SOURce<HW>]:IQ:DPD:SCALe
driver.source.iq.dpd.set_scale(scale = enums.IqOutEnvScale.POWer)

Determines the units used on the x and y-axis.

param scale

POWer| VOLTage

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

Enabels/disables the generation of digitally pre-distorted signals.

param state

1| ON| 0| OFF

Cloning the Group

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

Subgroups