rdbReloadResults
rdbReloadResults(t_sessionName t_resultsDir) =>t/nil
Description
Reloads the simulation results located at results directory into the Results Browser associated with the specified session.
It is recommended to reload results during the successive simulation runs.
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 reload simulation results of the specified results directory into the Results Browser associated with the session fnxSession0.
rdbReloadResults(axlSession "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf")
=> t
rdbReloadResults("fnxSession0" "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf")
=> t
The following example reloads simulation results of the specified results directory into the Results Browser when Virtuoso Visualization and Analysis XL is open in standalone mode.
rdbReloadResults("unbound" "/home/user/LoopFinder/simulation/lib/cell/maestro/results/maestro/ExplorerRun.0/1/test/psf")
=> t
Return to top