Doherty

SCPI Commands :

[SOURce<HW>]:IQ:DOHerty:SCALe
[SOURce]:IQ:DOHerty:STATe
class DohertyCls[source]

Doherty commands group definition. 47 total commands, 11 Subgroups, 2 group commands

get_scale() RsSmw.enums.IqOutEnvScale[source]
# SCPI: [SOURce<HW>]:IQ:DOHerty:SCALe
value: enums.IqOutEnvScale = driver.source.iq.doherty.get_scale()

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

return

scale: POWer| VOLTage

get_state() bool[source]
# SCPI: [SOURce]:IQ:DOHerty:STATe
value: bool = driver.source.iq.doherty.get_state()

Enabels/disables the generation of digitally Doherty signals.

return

state: 1| ON| 0| OFF

set_scale(scale: RsSmw.enums.IqOutEnvScale) None[source]
# SCPI: [SOURce<HW>]:IQ:DOHerty:SCALe
driver.source.iq.doherty.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]:IQ:DOHerty:STATe
driver.source.iq.doherty.set_state(state = False)

Enabels/disables the generation of digitally Doherty signals.

param state

1| ON| 0| OFF

Cloning the Group

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

Subgroups