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
- Commands in total: 53Subgroups: 10Direct child commands: 5
- get_am_first() bool[source]
# [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.
- Returns:
am_am_first_state: 1 | ON | 0| OFF
- get_lreference() DpdPowRef[source]
# [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.
- Returns:
level_reference: BDPD | ADPD | SDPD
- get_scale() IqOutEnvScale[source]
# [SOURce<HW>]:IQ:DPD:SCALe value: enums.IqOutEnvScale = driver.source.iq.dpd.get_scale()
Determines the units used on the x and y-axis.
- Returns:
scale: POWer | VOLTage
- get_state() bool[source]
# [SOURce<HW>]:IQ:DPD:STATe value: bool = driver.source.iq.dpd.get_state()
Enabels/disables the generation of digitally pre-distorted signals.
- Returns:
state: 1 | ON | 0| OFF
- preset() None[source]
# [SOURce<HW>]:IQ:DPD:PRESet driver.source.iq.dpd.preset()
Sets the default DPD settings (
*RSTvalues specified for the commands) . Not affected is the state set with the methodRsSmw.source.iq.dpd.state().
- preset_with_opc(opc_timeout_ms: int = -1) None[source]
# [SOURce<HW>]:IQ:DPD:PRESet driver.source.iq.dpd.preset_with_opc()
Sets the default DPD settings (
*RSTvalues specified for the commands) . Not affected is the state set with the methodRsSmw.source.iq.dpd.state().Same as preset, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value.
- Parameters:
opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.
- set_am_first(am_am_first_state: bool) None[source]
# [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.
- Parameters:
am_am_first_state – 1 | ON | 0| OFF
- set_lreference(level_reference: DpdPowRef) None[source]
# [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.
- Parameters:
level_reference – BDPD | ADPD | SDPD
- set_scale(scale: IqOutEnvScale) None[source]
# [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.
- Parameters:
scale – POWer | VOLTage
- set_state(state: bool) None[source]
# [SOURce<HW>]:IQ:DPD:STATe driver.source.iq.dpd.set_state(state = False)
Enabels/disables the generation of digitally pre-distorted signals.
- Parameters:
state – 1 | ON | 0| OFF
Cloning the Group
# Create a copy of the original group, that exists independently
dpd_copy = driver.source.iq.dpd.clone()
Subgroups