Path

SCPI Commands :

PROGram:PATH:CALCulated
PROGram:PATH:INSTall
PROGram:PATH:REPort
PROGram:PATH:VOLatile
class PathCls[source]

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

get_calculated() str[source]
# SCPI: PROGram:PATH:CALCulated
value: str = driver.program.path.get_calculated()

Sets the directory that holds the calculated waveforms.

return:

calculated: string

get_install() str[source]
# SCPI: PROGram:PATH:INSTall
value: str = driver.program.path.get_install()

Queries the storage location for repository files.

return:

install: string

get_report() str[source]
# SCPI: PROGram:PATH:REPort
value: str = driver.program.path.get_report()

Sets the directory that holds generated reports.

return:

report: string

get_volatile() str[source]
# SCPI: PROGram:PATH:VOLatile
value: str = driver.program.path.get_volatile()

Sets the directory that holds volatile data.

return:

volatile: string

set_calculated(calculated: str) None[source]
# SCPI: PROGram:PATH:CALCulated
driver.program.path.set_calculated(calculated = 'abc')

Sets the directory that holds the calculated waveforms.

param calculated:

string

set_report(report: str) None[source]
# SCPI: PROGram:PATH:REPort
driver.program.path.set_report(report = 'abc')

Sets the directory that holds generated reports.

param report:

string

set_volatile(volatile: str) None[source]
# SCPI: PROGram:PATH:VOLatile
driver.program.path.set_volatile(volatile = 'abc')

Sets the directory that holds volatile data.

param volatile:

string