Channel

SCPI Commands :

[SOURce<HW>]:AREGenerator:CHANnel:BW
[SOURce<HW>]:AREGenerator:CHANnel:CATalog
[SOURce<HW>]:AREGenerator:CHANnel:ID
[SOURce<HW>]:AREGenerator:CHANnel:NAME
[SOURce<HW>]:AREGenerator:CHANnel:[STATe]
class ChannelCls[source]

Channel commands group definition. 13 total commands, 6 Subgroups, 5 group commands

get_bw() AregCconfigBw[source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:BW
value: enums.AregCconfigBw = driver.source.areGenerator.channel.get_bw()

Queries the channel bandwidth. The channel bandwidth depends on the installed options.

return:

areg_chan_bw: BW1G| BW2G| BW5G BW1G Bandwidth = 1 GHz BW1G2 Bandwidth = 2 GHz BW5G Bandwidth = 5 GHz

get_catalog() List[str][source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:CATalog
value: List[str] = driver.source.areGenerator.channel.get_catalog()

Queries the available channels and lists the respective channel IDs.

return:

areg_cconf_cat: No help available

get_id() str[source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:ID
value: str = driver.source.areGenerator.channel.get_id()

Displays the identification name of the radar channel. The radar channel is designated with a letter and a number, e.g. ‘A1’.

return:

areg_chan_id: string

get_name() str[source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:NAME
value: str = driver.source.areGenerator.channel.get_name()

Sets the alias of the radar channel, that is the channel name.

return:

areg_channel_name: string

get_state() bool[source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:[STATe]
value: bool = driver.source.areGenerator.channel.get_state()

Acitvates the radar channel.

return:

areg_chan_state: 1| ON| 0| OFF

set_name(areg_channel_name: str) None[source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:NAME
driver.source.areGenerator.channel.set_name(areg_channel_name = 'abc')

Sets the alias of the radar channel, that is the channel name.

param areg_channel_name:

string

set_state(areg_chan_state: bool) None[source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:[STATe]
driver.source.areGenerator.channel.set_state(areg_chan_state = False)

Acitvates the radar channel.

param areg_chan_state:

1| ON| 0| OFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.areGenerator.channel.clone()

Subgroups