Iq

SCPI Commands :

[SOURce<HW>]:IQ:CREStfactor
[SOURce<HW>]:IQ:SOURce
[SOURce<HW>]:IQ:STATe
[SOURce<HW>]:IQ:WBSTate
class IqCls[source]

Iq commands group definition. 140 total commands, 4 Subgroups, 4 group commands

get_crest_factor() float[source]
# SCPI: [SOURce<HW>]:IQ:CREStfactor
value: float = driver.source.iq.get_crest_factor()

No command help available

return:

crest_factor: No help available

get_source() IqMode[source]
# SCPI: [SOURce<HW>]:IQ:SOURce
value: enums.IqMode = driver.source.iq.get_source()

No command help available

return:

source: No help available

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

Enables/disables the I/Q modulation.

return:

state: 1| ON| 0| OFF

get_wb_state() bool[source]
# SCPI: [SOURce<HW>]:IQ:WBSTate
value: bool = driver.source.iq.get_wb_state()

No command help available

return:

wb_state: No help available

set_crest_factor(crest_factor: float) None[source]
# SCPI: [SOURce<HW>]:IQ:CREStfactor
driver.source.iq.set_crest_factor(crest_factor = 1.0)

No command help available

param crest_factor:

No help available

set_source(source: IqMode) None[source]
# SCPI: [SOURce<HW>]:IQ:SOURce
driver.source.iq.set_source(source = enums.IqMode.ANALog)

No command help available

param source:

No help available

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

Enables/disables the I/Q modulation.

param state:

1| ON| 0| OFF

set_wb_state(wb_state: bool) None[source]
# SCPI: [SOURce<HW>]:IQ:WBSTate
driver.source.iq.set_wb_state(wb_state = False)

No command help available

param wb_state:

No help available

Cloning the Group

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

Subgroups