File

SCPI Command:

SOURce:AFRF:GENerator<Instance>:ARB:FILE:DATE
SOURce:AFRF:GENerator<Instance>:ARB:FILE:OPTion
SOURce:AFRF:GENerator<Instance>:ARB:FILE:VERSion
SOURce:AFRF:GENerator<Instance>:ARB:FILE
class FileCls[source]

File commands group definition. 4 total commands, 0 Subgroups, 4 group commands

get_date() str[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:ARB:FILE:DATE
value: str = driver.source.afRf.generator.arb.file.get_date()

Queries the date and time of the loaded ARB file.

return:

date: String with date and time

get_option() str[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:ARB:FILE:OPTion
value: str = driver.source.afRf.generator.arb.file.get_option()

Queries the options that are required to process the loaded ARB file.

return:

options: String with comma-separated list of options

get_value() str[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:ARB:FILE
value: str = driver.source.afRf.generator.arb.file.get_value()

Selects the ARB file to be processed. Specify the path and the filename. If the file is stored in the folder corresponding to the @waveform alias, it is sufficient to specify only the filename.

INTRO_CMD_HELP: Example, the following strings are equivalent:

return:

arb_file: String specifying the ARB file

get_version() str[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:ARB:FILE:VERSion
value: str = driver.source.afRf.generator.arb.file.get_version()

Queries the version of the loaded ARB file.

return:

version: String containing the version Empty string, if no file version is defined

set_value(arb_file: str) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:ARB:FILE
driver.source.afRf.generator.arb.file.set_value(arb_file = '1')

Selects the ARB file to be processed. Specify the path and the filename. If the file is stored in the folder corresponding to the @waveform alias, it is sufficient to specify only the filename.

INTRO_CMD_HELP: Example, the following strings are equivalent:

param arb_file:

String specifying the ARB file