Channel<Channel>

RepCap Settings

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

SCPI Command :

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

Defines the channel bandwidth of the transmission channels. Steep-edged channel filters are available for fast ACLR measurements.

param channel

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

return

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

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

Defines the channel bandwidth of the transmission channels. 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 ‘Channel’)

Cloning the Group

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