Bias

SCPI Commands :

[SOURce<HW>]:IQ:OUTPut:[ANALog]:BIAS:I
[SOURce<HW>]:IQ:OUTPut:[ANALog]:BIAS:Q
class BiasCls[source]

Bias commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_icomponent() float[source]
# SCPI: [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’.

return

ipart: No help available

get_qcomponent() float[source]
# SCPI: [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’.

return

qpart: No help available

set_icomponent(ipart: float) None[source]
# SCPI: [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’.

param ipart

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

set_qcomponent(qpart: float) None[source]
# SCPI: [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’.

param qpart

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

Cloning the Group

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

Subgroups