Power

SCPI Commands :

[SOURce<HW>]:IQ:OUTPut:DIGital:POWer:LEVel
[SOURce<HW>]:IQ:OUTPut:DIGital:POWer:PEP
[SOURce]:IQ:OUTPut:DIGital:POWer:STATe
[SOURce]:IQ:OUTPut:DIGital:POWer:VIA
class PowerCls[source]

Power commands group definition. 6 total commands, 1 Subgroups, 4 group commands

get_level() float[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:POWer:LEVel
value: float = driver.source.iq.output.digital.power.get_level()

Sets the RMS level of digital I/Q output signal or of the channel of the HS digital I/Q output signal. The level is relative to full scale of 0.5 V (in terms of dB full scale) .

return

level: No help available

get_pep() float[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:POWer:PEP
value: float = driver.source.iq.output.digital.power.get_pep()

Sets the peak level of digital I/Q output signal or of the channel of the HS digital I/Q output signal. The level is relative to full scale of 0.5 V (in terms of dB full scale) .

return

pep: No help available

get_state() bool[source]
# SCPI: [SOURce]:IQ:OUTPut:DIGital:POWer:STATe
value: bool = driver.source.iq.output.digital.power.get_state()

No command help available

return

state: No help available

get_via() RsSmbv.enums.IqOutDispViaType[source]
# SCPI: [SOURce]:IQ:OUTPut:DIGital:POWer:VIA
value: enums.IqOutDispViaType = driver.source.iq.output.digital.power.get_via()

Selects the respective level entry field for the I/Q output.

return

via: PEP| LEVel

set_level(level: float) None[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:POWer:LEVel
driver.source.iq.output.digital.power.set_level(level = 1.0)

Sets the RMS level of digital I/Q output signal or of the channel of the HS digital I/Q output signal. The level is relative to full scale of 0.5 V (in terms of dB full scale) .

param level

float Range: -60 to 0

set_pep(pep: float) None[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:POWer:PEP
driver.source.iq.output.digital.power.set_pep(pep = 1.0)

Sets the peak level of digital I/Q output signal or of the channel of the HS digital I/Q output signal. The level is relative to full scale of 0.5 V (in terms of dB full scale) .

param pep

float Range: -60 to 0

set_state(state: bool) None[source]
# SCPI: [SOURce]:IQ:OUTPut:DIGital:POWer:STATe
driver.source.iq.output.digital.power.set_state(state = False)

No command help available

param state

No help available

set_via(via: RsSmbv.enums.IqOutDispViaType) None[source]
# SCPI: [SOURce]:IQ:OUTPut:DIGital:POWer:VIA
driver.source.iq.output.digital.power.set_via(via = enums.IqOutDispViaType.LEVel)

Selects the respective level entry field for the I/Q output.

param via

PEP| LEVel

Cloning the Group

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

Subgroups