Bias

SCPI Commands :

[SOURce<HW>]:IQ:OUTPut:[ANALog]:BIAS:I
[SOURce<HW>]:IQ:OUTPut:[ANALog]:BIAS:Q
Commands in total: 3
Subgroups: 1
Direct child commands: 2
get_icomponent() float[source]
# [SOURce<HW>]:IQ:OUTPut:[ANALog]:BIAS:I
value: float = driver.source.iq.output.analog.bias.get_icomponent()

Specifies the amplifier bias Vbias of the respective I or Q component. The value range is adjusted so that the maximum overall output voltage does not exceed 4V, see ‘Maximum overall output voltage’.

get_qcomponent() float[source]
# [SOURce<HW>]:IQ:OUTPut:[ANALog]:BIAS:Q
value: float = driver.source.iq.output.analog.bias.get_qcomponent()

Specifies the amplifier bias Vbias of the respective I or Q component. The value range is adjusted so that the maximum overall output voltage does not exceed 4V, see ‘Maximum overall output voltage’.

set_icomponent(ipart: float) None[source]
# [SOURce<HW>]:IQ:OUTPut:[ANALog]:BIAS:I
driver.source.iq.output.analog.bias.set_icomponent(ipart = 1.0)

Specifies the amplifier bias Vbias of the respective I or Q component. The value range is adjusted so that the maximum overall output voltage does not exceed 4V, see ‘Maximum overall output voltage’.

Parameters:

ipart – float Range: -3.6V to 3.6V , Unit: V

set_qcomponent(qpart: float) None[source]
# [SOURce<HW>]:IQ:OUTPut:[ANALog]:BIAS:Q
driver.source.iq.output.analog.bias.set_qcomponent(qpart = 1.0)

Specifies the amplifier bias Vbias of the respective I or Q component. The value range is adjusted so that the maximum overall output voltage does not exceed 4V, see ‘Maximum overall output voltage’.

Parameters:

qpart – float Range: -3.6V to 3.6V , Unit: V

Cloning the Group

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

Subgroups