Generator

SCPI Commands :

ASSignment:GENerator:CAPabilities
ASSignment:GENerator:LIST
ASSignment:GENerator:SELect
class GeneratorCls[source]

Generator commands group definition. 15 total commands, 1 Subgroups, 3 group commands

get_capabilities() str[source]
# SCPI: ASSignment:GENerator:CAPabilities
value: str = driver.assignment.generator.get_capabilities()

Queries the capabilities of the selected generator.

return:

capabilities: RFA, BWA, MEMA, SWA, [RFB, BWB, MEMB, SWB] String that lists the maximum RF and BW, available memory size, and installed options per path.

get_list_py() str[source]
# SCPI: ASSignment:GENerator:LIST
value: str = driver.assignment.generator.get_list_py()

Queries a list of the available generators.

return:

list_py: ‘GenName#1’,’GenName2’,…

get_select() str[source]
# SCPI: ASSignment:GENerator:SELect
value: str = driver.assignment.generator.get_select()

Selects the element to which the subsequent commands apply.

return:

select: string Available element as queried with the corresponding …:LIST command. For example, method RsPulseSeq.Assignment.Generator.Path.Antenna.listPy

set_select(select: str) None[source]
# SCPI: ASSignment:GENerator:SELect
driver.assignment.generator.set_select(select = 'abc')

Selects the element to which the subsequent commands apply.

param select:

string Available element as queried with the corresponding …:LIST command. For example, method RsPulseSeq.Assignment.Generator.Path.Antenna.listPy

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.assignment.generator.clone()

Subgroups