Output

SCPI Commands :

[SOURce<HW>]:IQ:DPD:OUTPut:CFACtor
[SOURce<HW>]:IQ:DPD:OUTPut:LEVel
[SOURce<HW>]:IQ:DPD:OUTPut:PEP
Commands in total: 6
Subgroups: 2
Direct child commands: 3
get_cfactor() float[source]
# [SOURce<HW>]:IQ:DPD:OUTPut:CFACtor
value: float = driver.source.iq.dpd.output.get_cfactor()

Queries the measured values the before and after the enabled digital predistortion.

Returns:

crest_factor: float The query returns -1000 if the calculation is impossible or there are no measurements results available.

get_level() float[source]
# [SOURce<HW>]:IQ:DPD:OUTPut:LEVel
value: float = driver.source.iq.dpd.output.get_level()

Queries the measured values the before and after the enabled digital predistortion.

Returns:

level: float The query returns -1000 if the calculation is impossible or there are no measurements results available.

get_pep() float[source]
# [SOURce<HW>]:IQ:DPD:OUTPut:PEP
value: float = driver.source.iq.dpd.output.get_pep()

Queries the measured values the before and after the enabled digital predistortion.

Returns:

pep: float The query returns -1000 if the calculation is impossible or there are no measurements results available.

Cloning the Group

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

Subgroups