rdbLoadResults
rdbLoadResults(t_sessionName t_resultsDir) =>t/nil
Description
Loads the simulation results located at results directory into the Results Browser associated with the specified session.
Arguments
Value Returned
Examples
The following example returns the name of the ADE session associated with the current window.
axlSession=axlGetWindowSession()
=> "fnxSession0"
The following examples load simulation results of the specified results directory into the Results Browser associated with the session fnxSession0.
rdbLoadResults(axlSession "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf")
=> t
rdbLoadResults("fnxSession0" "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf")
=> t
The following example loads simulation results of the specified results directory into the Results Browser when Virtuoso Visualization and Analysis XL is running in standalone mode.
rdbLoadResults("unbound" "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf")
=> t
Return to top