Product Documentation
Virtuoso Visualization and Analysis XL SKILL Reference
Product Version IC23.1, November 2023

rdbSetCurrentDirectory

rdbSetCurrentDirectory(
t_sessionName
t_pathToDirectory
)
=> t / nil

Description

Navigates to the specified directory in the Results Browser associated with the specified session.

Arguments

t_sessionName

Name of the session.

Specify "unbound" if Virtuoso Visualization and Analysis XL is running in standalone mode and the Results Browser window is open.

t_pathToDirectory

Path to the directory inside the simulation results.

Value Returned

t

Specified directory is set as the current directory.

nil

Specified directory cannot be set as the current directory because of an error.

Examples

The following example returns the name of the ADE session associated with the current window.

axlSession=axlGetWindowSession()
=> "fnxSession0"

The following examples navigate to the lf directory inside the simulation results of the results directory in the Results Browser associated with the specified session.

rdbSetCurrentDirectory(axlSession "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf/lf")
=> t
rdbSetCurrentDirectory("fnxSession0" "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf/lf")
=> t

The following example navigates to the lf directory inside the simulation results stored in the specified directory when Virtuoso Visualization and Analysis XL is open in standalone mode.

rdbSetCurrentDirectory("unbound" "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf/lf")
=> t

Return to top
 ⠀
X