Alternate<Channel>

RepCap Settings

# Range: Ch1 .. Ch64
rc = driver.sense.power.achannel.filterPy.state.alternate.repcap_channel_get()
driver.sense.power.achannel.filterPy.state.alternate.repcap_channel_set(repcap.Channel.Ch1)

SCPI Command :

[SENSe]:POWer:ACHannel:FILTer[:STATe]:ALTernate<ch>
class AlternateCls[source]

Alternate commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Channel, default value after init: Channel.Ch1

get(channel=Channel.Default) bool[source]
# SCPI: [SENSe]:POWer:ACHannel:FILTer[:STATe]:ALTernate<ch>
value: bool = driver.sense.power.achannel.filterPy.state.alternate.get(channel = repcap.Channel.Default)

Turns the weighting filter for an alternate channel on and off. For asymmetrical MSR signals, this command turns the weighting filter for the lower alternate channels on and off. To configure the filter state for the upper alternate channels, use the [SENSe:]POWer:ACHannel:FILTer[:STATe]:UALTernate<ch> command.

param channel

optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Alternate’)

return

state: ON | OFF | 1 | 0

set(state: bool, channel=Channel.Default) None[source]
# SCPI: [SENSe]:POWer:ACHannel:FILTer[:STATe]:ALTernate<ch>
driver.sense.power.achannel.filterPy.state.alternate.set(state = False, channel = repcap.Channel.Default)

Turns the weighting filter for an alternate channel on and off. For asymmetrical MSR signals, this command turns the weighting filter for the lower alternate channels on and off. To configure the filter state for the upper alternate channels, use the [SENSe:]POWer:ACHannel:FILTer[:STATe]:UALTernate<ch> command.

param state

ON | OFF | 1 | 0

param channel

optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Alternate’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sense.power.achannel.filterPy.state.alternate.clone()