Alternate<Channel>

RepCap Settings

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

SCPI Command :

[SENSe]:POWer:ACHannel:NAME: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) str[source]
# SCPI: [SENSe]:POWer:ACHannel:NAME:ALTernate<ch>
value: str = driver.sense.power.achannel.name.alternate.get(channel = repcap.Channel.Default)

Defines a name for an alternate channel. For MSR ACLR measurements, this command defines the name for the lower alternate channel in asymmetric channel definitions. To define the name for the upper alternate channels use the [SENSe:]POWer:ACHannel:NAME:UALTernate<ch> command. For details on MSR signals see ‘Measurement on multi-standard radio (MSR) signals’.

param channel

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

return

name: String containing the name of the channel

set(name: str, channel=Channel.Default) None[source]
# SCPI: [SENSe]:POWer:ACHannel:NAME:ALTernate<ch>
driver.sense.power.achannel.name.alternate.set(name = 'abc', channel = repcap.Channel.Default)

Defines a name for an alternate channel. For MSR ACLR measurements, this command defines the name for the lower alternate channel in asymmetric channel definitions. To define the name for the upper alternate channels use the [SENSe:]POWer:ACHannel:NAME:UALTernate<ch> command. For details on MSR signals see ‘Measurement on multi-standard radio (MSR) signals’.

param name

String containing the name of the channel

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.name.alternate.clone()