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. 10 total commands, 1 Subgroups, 4 group commands

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

Sets the crest factor of the IQ modulation signal.

return:

crest_factor: float Range: 0 to 80

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

Sets the input signal for the I/Q modulator.

return:

source: ANALog| BASeband

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

Switches the I/Q modulation on and off.

return:

state: 1| ON| 0| OFF

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

Selects optimized settings for wideband modulation signals.

return:

state: 1| ON| 0| OFF

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

Sets the crest factor of the IQ modulation signal.

param crest_factor:

float Range: 0 to 80

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

Sets the input signal for the I/Q modulator.

param source:

ANALog| BASeband

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

Switches the I/Q modulation on and off.

param state:

1| ON| 0| OFF

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

Selects optimized settings for wideband modulation signals.

param state:

1| ON| 0| OFF

Cloning the Group

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

Subgroups