Alternate<Channel>

RepCap Settings

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

SCPI Command :

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

Defines the distance from transmission channel to alternate channels. For MSR signals, this command defines the distance from the CF of the first Tx channel in the first sub block to the lower alternate channel. To configure the spacing for the upper alternate channel in asymmetrical configurations, use the [SENSe:]POWer:ACHannel:SPACing:UALTernate<ch> command. If you set the channel spacing for the first alternate channel, the FSW adjusts the spacing of alternate channels of a lower order, but not the other way round (not for MSR signals) . The command works hierarchically: to set a distance from the transmission channel to the 2nd and 3rd alternate channel, you have to define a spacing for the 2nd alternate channel first.

param channel

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

return

spacing: Range: 100 Hz to 2000 MHz, Unit: Hz

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

Defines the distance from transmission channel to alternate channels. For MSR signals, this command defines the distance from the CF of the first Tx channel in the first sub block to the lower alternate channel. To configure the spacing for the upper alternate channel in asymmetrical configurations, use the [SENSe:]POWer:ACHannel:SPACing:UALTernate<ch> command. If you set the channel spacing for the first alternate channel, the FSW adjusts the spacing of alternate channels of a lower order, but not the other way round (not for MSR signals) . The command works hierarchically: to set a distance from the transmission channel to the 2nd and 3rd alternate channel, you have to define a spacing for the 2nd alternate channel first.

param spacing

Range: 100 Hz to 2000 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.spacing.alternate.clone()