Output

SCPI Commands :

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

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

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

Sets the step attenuator mode at the RF output. Note: The setting [:SOURce<hw>]:POWer:ATTenuation:RFOFf:MODE FATTenuation has higher priority than the attenuator modes FIXed and MANual.

return

amode: FIXed| MANual| AUTO 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. To use this mode, activate the ALC (see [:SOURcehw]:POWer:ALC[:STATe]) . MANual You can set the level manually, in 10 dB steps.

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

Sets the step attenuator mode at the RF output. Note: The setting [:SOURce<hw>]:POWer:ATTenuation:RFOFf:MODE FATTenuation has higher priority than the attenuator modes FIXed and MANual.

param amode

FIXed| MANual| AUTO 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. To use this mode, activate the ALC (see [:SOURcehw]:POWer:ALC[:STATe]) . MANual You can set the level manually, in 10 dB steps.

Cloning the Group

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

Subgroups