Output

SCPI Commands :

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

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

get_amode() PowAttModeOut[source]
# SCPI: OUTPut<HW>:AMODe
value: enums.PowAttModeOut = 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() InpImpRf[source]
# SCPI: OUTPut<HW>:IMPedance
value: enums.InpImpRf = driver.output.get_impedance()

Queries the impedance of the RF outputs.

return:

impedance: G1K| G50| G10K

set_amode(amode: PowAttModeOut) None[source]
# SCPI: OUTPut<HW>:AMODe
driver.output.set_amode(amode = enums.PowAttModeOut.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