Output

SCPI Commands :

OUTPut<HW>:AMODe
OUTPut<HW>:IMPedance
class OutputCls[source]

Output commands group definition. 12 total commands, 5 Subgroups, 2 group commands

get_amode() RsSmbv.enums.PowAttMode[source]
# SCPI: OUTPut<HW>:AMODe
value: enums.PowAttMode = driver.output.get_amode()

Sets the step attenuator mode at the RF output.

return

amode: AUTO| FIXed AUTO The step attenuator adjusts the level settings automatically, within the full variation range. FIXed The step attenuator and amplifier stages are fixed at the current position, providing level settings with constant output VSWR. The resulting variation range is calculated according to the position.

get_impedance() RsSmbv.enums.InputImpRf[source]
# SCPI: OUTPut<HW>:IMPedance
value: enums.InputImpRf = driver.output.get_impedance()

Queries the impedance of the RF outputs.

return

impedance: G1K| G50| G10K

set_amode(amode: RsSmbv.enums.PowAttMode) None[source]
# SCPI: OUTPut<HW>:AMODe
driver.output.set_amode(amode = enums.PowAttMode.AUTO)

Sets the step attenuator mode at the RF output.

param amode

AUTO| FIXed AUTO The step attenuator adjusts the level settings automatically, within the full variation range. FIXed The step attenuator and amplifier stages are fixed at the current position, providing level settings with constant output VSWR. The resulting variation range is calculated according to the position.

Cloning the Group

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

Subgroups