Alternate<Channel>

RepCap Settings

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

SCPI Command :

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

Defines the channel bandwidth of the alternate channels. For MSR signals, this command defines the bandwidth of the lower alternate channels in asymmetrical configurations. To configure the bandwidth for the upper alternate channel, use the [SENSe:]POWer:ACHannel:BANDwidth:UALTernate<ch> command. If you set the channel bandwidth for the first alternate channel, the FSW sets the bandwidth of the other alternate channels to the same value, but not the other way round (not for MSR signals) . The command works hierarchically: to set a bandwidth of the 3rd and 4th channel, you have to set the bandwidth of the 3rd channel first. Steep-edged channel filters are available for fast ACLR measurements.

param channel

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

return

bandwidth: Range: 100 Hz to 1000 MHz, Unit: Hz

set(bandwidth: float, channel=Channel.Default) None[source]
# SCPI: [SENSe]:POWer:ACHannel:BWIDth:ALTernate<ch>
driver.sense.power.achannel.bandwidth.alternate.set(bandwidth = 1.0, channel = repcap.Channel.Default)

Defines the channel bandwidth of the alternate channels. For MSR signals, this command defines the bandwidth of the lower alternate channels in asymmetrical configurations. To configure the bandwidth for the upper alternate channel, use the [SENSe:]POWer:ACHannel:BANDwidth:UALTernate<ch> command. If you set the channel bandwidth for the first alternate channel, the FSW sets the bandwidth of the other alternate channels to the same value, but not the other way round (not for MSR signals) . The command works hierarchically: to set a bandwidth of the 3rd and 4th channel, you have to set the bandwidth of the 3rd channel first. Steep-edged channel filters are available for fast ACLR measurements.

param bandwidth

Range: 100 Hz to 1000 MHz, Unit: Hz

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