Alc

SCPI Commands :

[SOURce<HW>]:POWer:ALC:DSENsitivity
[SOURce<HW>]:POWer:ALC:[STATe]
class AlcCls[source]

Alc commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_dsensitivity() CalPowDetAtt[source]
# SCPI: [SOURce<HW>]:POWer:ALC:DSENsitivity
value: enums.CalPowDetAtt = driver.source.power.alc.get_dsensitivity()

Sets the power detector sensitivity. Used for compatibility reasons only.

return:

sensitivity: OFF| LOW| MED| HIGH

get_state() PowAlcState[source]
# SCPI: [SOURce<HW>]:POWer:ALC:[STATe]
value: enums.PowAlcState = driver.source.power.alc.get_state()

Activates/deactivates automatic level control.

return:

state: 1| OFFTable| OFF| ONTable| AUTO| ON

set_dsensitivity(sensitivity: CalPowDetAtt) None[source]
# SCPI: [SOURce<HW>]:POWer:ALC:DSENsitivity
driver.source.power.alc.set_dsensitivity(sensitivity = enums.CalPowDetAtt.HIGH)

Sets the power detector sensitivity. Used for compatibility reasons only.

param sensitivity:

OFF| LOW| MED| HIGH

set_state(state: PowAlcState) None[source]
# SCPI: [SOURce<HW>]:POWer:ALC:[STATe]
driver.source.power.alc.set_state(state = enums.PowAlcState._1)

Activates/deactivates automatic level control.

param state:

1| OFFTable| OFF| ONTable| AUTO| ON

Cloning the Group

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

Subgroups