maeExportOutputView
maeExportOutputView( [ ?sessiont_sessionName] [ ?fileNamet_fileName] [ ?viewt_viewType] [ ?historyNamet_historyName] [ ?testNamet_testName] [ ?filterNamet_filterName] [ ?clearAllFiltersg_clearAllFilters] ) => t / nil
Description
Exports the output or results view to the specified .csv or .html file.
Arguments
Value Returned
Examples
Exports the yield view of a Monte Carlo run to a file named abc.csv.
maeOpenSetup("solutions" "amptest" "maestro")
;; the above function loads the given cellview and returns the session object
=> "fnxSession0"
maeSetVar("rload" 10k)
;; sets value for the rload variable
=> t
maeRunSimulation(?runMode "Monte Carlo Sampling")
;; the above function runs the simulation for the given setup and returns the name of the history
=> "MonteCarlo.2"
maeWaitUntilDone('All)
=> (0)
maeExportOutputView(?session "fnxSession0" ?fileName "./abc.csv" ?view "Yield")
=> "/servers/scratch02/testcases/adexl_workshop/design/abc.csv"
Saves the results of the Checks/Asserts result view for the current history of test demo_top:1 to a file named deviceChecks.csv. While doing that, it clears the filter named Device Checks.
maeExportOutputView( ?session "fnxSession0" ?fileName "./deviceChecks.csv" ?view "Checks/Asserts" ?testName "demo_top:1" ?filterName "Device Checks" ?clearAllFilters t)
For the Checks/Asserts view, the optional arguments can be used to specify a named filter.
Return to top