Channel<Channel>

RepCap Settings

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

SCPI Command :

[SENSe]:POWer:ACHannel:SBLock<sb>:CENTer[: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(subBlock=SubBlock.Default, channel=Channel.Default) float[source]
# SCPI: [SENSe]:POWer:ACHannel:SBLock<sb>:CENTer[:CHANnel<ch>]
value: float = driver.sense.power.achannel.sblock.center.channel.get(subBlock = repcap.SubBlock.Default, channel = repcap.Channel.Default)

Defines the (absolute) center frequency of the specified MSR Tx channel. Note that the position of the first Tx channel in the first sub block and the last Tx channel in the last sub block also affect the position of the adjacent channels. Is for MSR signals only (see method RsFsw.Calculate.Marker.Function.Power.preset) . For details on MSR signals see ‘Measurement on multi-standard radio (MSR) signals’.

param subBlock

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

param channel

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

return

frequency: absolute frequency in Hz Unit: Hz

set(frequency: float, subBlock=SubBlock.Default, channel=Channel.Default) None[source]
# SCPI: [SENSe]:POWer:ACHannel:SBLock<sb>:CENTer[:CHANnel<ch>]
driver.sense.power.achannel.sblock.center.channel.set(frequency = 1.0, subBlock = repcap.SubBlock.Default, channel = repcap.Channel.Default)

Defines the (absolute) center frequency of the specified MSR Tx channel. Note that the position of the first Tx channel in the first sub block and the last Tx channel in the last sub block also affect the position of the adjacent channels. Is for MSR signals only (see method RsFsw.Calculate.Marker.Function.Power.preset) . For details on MSR signals see ‘Measurement on multi-standard radio (MSR) signals’.

param frequency

absolute frequency in Hz Unit: Hz

param subBlock

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

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.sblock.center.channel.clone()