Power

SCPI Commands :

[SOURce<HW>]:BB:NR5G:OUTPut:POWer:MODE
[SOURce<HW>]:BB:NR5G:OUTPut:POWer:RSBW
class PowerCls[source]

Power commands group definition. 10 total commands, 8 Subgroups, 2 group commands

get_mode() RsSmbv.enums.PowerModeAll[source]
# SCPI: [SOURce<HW>]:BB:NR5G:OUTPut:POWer:MODE
value: enums.PowerModeAll = driver.source.bb.nr5G.output.power.get_mode()

Sets how the first output is leveled.

return

power_mode: AAS Average power in the active signal AVG Average RMS power ACTvsf Average power in the active subframes PSDConst The absolute power of a particular allocation is set by multiplying the configured power spectral density (PSD) with the bandwidth of the particular allocation. Burst The ‘Burst’ mode is a special case of the ‘Constant PSD’ mode in the sense that it computes automatically a reference bandwidth based on the chosen allocation.

get_rsbw() float[source]
# SCPI: [SOURce<HW>]:BB:NR5G:OUTPut:POWer:RSBW
value: float = driver.source.bb.nr5G.output.power.get_rsbw()

Sets the reference bandwidth used by the leveling of the output signal at the first output.

return

ref_system_bw: float Range: 15E3 to 400E6

set_mode(power_mode: RsSmbv.enums.PowerModeAll) None[source]
# SCPI: [SOURce<HW>]:BB:NR5G:OUTPut:POWer:MODE
driver.source.bb.nr5G.output.power.set_mode(power_mode = enums.PowerModeAll.AAS)

Sets how the first output is leveled.

param power_mode

AAS Average power in the active signal AVG Average RMS power ACTvsf Average power in the active subframes PSDConst The absolute power of a particular allocation is set by multiplying the configured power spectral density (PSD) with the bandwidth of the particular allocation. Burst The ‘Burst’ mode is a special case of the ‘Constant PSD’ mode in the sense that it computes automatically a reference bandwidth based on the chosen allocation.

set_rsbw(ref_system_bw: float) None[source]
# SCPI: [SOURce<HW>]:BB:NR5G:OUTPut:POWer:RSBW
driver.source.bb.nr5G.output.power.set_rsbw(ref_system_bw = 1.0)

Sets the reference bandwidth used by the leveling of the output signal at the first output.

param ref_system_bw

float Range: 15E3 to 400E6

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.nr5G.output.power.clone()

Subgroups