Channel<Channel>
RepCap Settings
# Range: Ch1 .. Ch64
rc = driver.sense.power.achannel.name.channel.repcap_channel_get()
driver.sense.power.achannel.name.channel.repcap_channel_set(repcap.Channel.Ch1)
SCPI Command :
[SENSe]:POWer:ACHannel:NAME:CHANnel<ch>
- class ChannelCls[source]
Channel commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Channel, default value after init: Channel.Ch1
- get(channel=Channel.Default) str [source]
# SCPI: [SENSe]:POWer:ACHannel:NAME:CHANnel<ch> value: str = driver.sense.power.achannel.name.channel.get(channel = repcap.Channel.Default)
Defines a name for a transmission channel.
- param channel
optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Channel’)
- return
name: String containing the name of the channel
- set(name: str, channel=Channel.Default) None [source]
# SCPI: [SENSe]:POWer:ACHannel:NAME:CHANnel<ch> driver.sense.power.achannel.name.channel.set(name = 'abc', channel = repcap.Channel.Default)
Defines a name for a transmission channel.
- param name
String containing the name of the channel
- param channel
optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Channel’)
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.sense.power.achannel.name.channel.clone()