Bb

SCPI Commands :

[SOURce<HW>]:BB:CFACtor
[SOURce<HW>]:BB:FOFFset
[SOURce<HW>]:BB:IQGain
[SOURce<HW>]:BB:PGAin
[SOURce<HW>]:BB:POFFset
[SOURce<HW>]:BB:ROUTe
Commands in total: 8352
Subgroups: 31
Direct child commands: 6
get_cfactor() float[source]
# [SOURce<HW>]:BB:CFACtor
value: float = driver.source.bb.get_cfactor()

Queries the crest factor of the baseband signal.

Returns:

cfactor: float Range: 0 to 100, Unit: dB

get_foffset() float[source]
# [SOURce<HW>]:BB:FOFFset
value: float = driver.source.bb.get_foffset()

Sets a frequency offset for the internal/external baseband signal. The offset affects the generated baseband signal.

Returns:

foffset: float Range: depends on the installed options , Unit: Hz E.g. -60 MHz to +60 MHz (base unit)

get_iq_gain() IqGain[source]
# [SOURce<HW>]:BB:IQGain
value: enums.IqGain = driver.source.bb.get_iq_gain()

Optimizes the modulation of the I/Q modulator for a subset of measurement requirement.

get_pgain() float[source]
# [SOURce<HW>]:BB:PGAin
value: float = driver.source.bb.get_pgain()

No help available

get_poffset() float[source]
# [SOURce<HW>]:BB:POFFset
value: float = driver.source.bb.get_poffset()

Sets the relative phase offset for the selected baseband signal.

Returns:

poffset: float Range: 0 to 359.9, Unit: DEG

get_route() PathUniCodBbin[source]
# [SOURce<HW>]:BB:ROUTe
value: enums.PathUniCodBbin = driver.source.bb.get_route()

Selects the signal route for the internal/external baseband signal.

Returns:

route: A

set_foffset(foffset: float) None[source]
# [SOURce<HW>]:BB:FOFFset
driver.source.bb.set_foffset(foffset = 1.0)

Sets a frequency offset for the internal/external baseband signal. The offset affects the generated baseband signal.

Parameters:

foffset – float Range: depends on the installed options , Unit: Hz E.g. -60 MHz to +60 MHz (base unit)

set_iq_gain(ipartq_gain: IqGain) None[source]
# [SOURce<HW>]:BB:IQGain
driver.source.bb.set_iq_gain(ipartq_gain = enums.IqGain.DB0)

Optimizes the modulation of the I/Q modulator for a subset of measurement requirement.

Parameters:

ipartq_gain – DBM4 | DBM2 | DB0 | DB2 | DB4 | DB8 | DB6 Dynamic range of 16 dB divided into 2 dB steps. DB0 | DB2 | DB4 | DB6 | DB8 Activates the specified gain of 0 dB, +2 dB, +4 dB, +6 dB, +8 dB DBM2 | DBM4 Activates the specified gain of -2 dB, -4 dB

set_pgain(pgain: float) None[source]
# [SOURce<HW>]:BB:PGAin
driver.source.bb.set_pgain(pgain = 1.0)

No help available

set_poffset(poffset: float) None[source]
# [SOURce<HW>]:BB:POFFset
driver.source.bb.set_poffset(poffset = 1.0)

Sets the relative phase offset for the selected baseband signal.

Parameters:

poffset – float Range: 0 to 359.9, Unit: DEG

set_route(route: PathUniCodBbin) None[source]
# [SOURce<HW>]:BB:ROUTe
driver.source.bb.set_route(route = enums.PathUniCodBbin.A)

Selects the signal route for the internal/external baseband signal.

Parameters:

route – A

Cloning the Group

# Create a copy of the original group, that exists independently
bb_copy = driver.source.bb.clone()

Subgroups