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()

Sets the amplifier bias Vbias of the I component or Q component. To keep the I/Q analog output power levels below the maximum input power level at your DUT, see ‘Maximum overall output voltage’. For more information, refer to the specifications document.

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()

Sets the amplifier bias Vbias of the I component or Q component. To keep the I/Q analog output power levels below the maximum input power level at your DUT, see ‘Maximum overall output voltage’. For more information, refer to the specifications document.

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)

Sets the amplifier bias Vbias of the I component or Q component. To keep the I/Q analog output power levels below the maximum input power level at your DUT, see ‘Maximum overall output voltage’. For more information, refer to the specifications document.

param ipart:

float Range: (-4+Vp/2+Voffset/2) ,V to (4-Vp/2-Voffset/2) ,V (R&S SMW-B10) / -0.2V to 2.5V (R&S SMW-B9) , 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)

Sets the amplifier bias Vbias of the I component or Q component. To keep the I/Q analog output power levels below the maximum input power level at your DUT, see ‘Maximum overall output voltage’. For more information, refer to the specifications document.

param qpart:

float Range: (-4+Vp/2+Voffset/2) ,V to (4-Vp/2-Voffset/2) ,V (R&S SMW-B10) / -0.2V to 2.5V (R&S SMW-B9) , Unit: V

Cloning the Group

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

Subgroups