Output
SCPI Commands :
OUTPut<HW>:AMODe
OUTPut<HW>:IMPedance
- Commands in total: 12Subgroups: 5Direct child commands: 2
- get_amode() PowAttMode[source]
# OUTPut<HW>:AMODe value: enums.PowAttMode = driver.output.get_amode()
Sets the step attenuator mode at the RF output.
- Returns:
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() InputImpRf[source]
# OUTPut<HW>:IMPedance value: enums.InputImpRf = driver.output.get_impedance()
Queries the impedance of the RF outputs.
- Returns:
impedance: G1K | G50 | G10K
- set_amode(amode: PowAttMode) None[source]
# OUTPut<HW>:AMODe driver.output.set_amode(amode = enums.PowAttMode.AUTO)
Sets the step attenuator mode at the RF output.
- Parameters:
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 copy of the original group, that exists independently
output_copy = driver.output.clone()
Subgroups