maeWriteDatasheet
maeWriteDatasheet(
[ ?directory t_directory ]
[ ?resultsSummary g_resultsSummary ]
[ ?testsSummary g_testsSummary ]
[ ?detailedResults g_detailedResults ]
[ ?plots g_points ]
[ ?designVarsSummary g_designVarsSummary ]
[ ?paramsSummary g_paramsSummary ]
[ ?cornersSummary g_cornersSummary ]
[ ?setupSummary g_setupSummary ]
[ ?launchBrowser g_launchBrowser ]
[ ?name t_name ]
[ ?session t_sessionName ]
[ ?historyName t_historyName ]
)
=> t / nil
Description
Writes the results for the given history in a datasheet.
Arguments
|
?directory t_directory
|
|
|
|
Name and path to the target directory where the datasheet is to be saved.
|
|
?resultsSummary g_resultsSummary
|
|
|
Boolean to specify whether or not to print a results summary sheet containing specification sheet pass/fail table.
The default value is t.
|
|
?testsSummary g_testsSummary
|
|
|
Boolean to specify whether or not to print a tests summary sheet containing details about the tests, sweeps, and corners.
The default value is t.
|
|
?detailedResults g_detailedResults
|
|
|
Name of the history to generate results for all the points.
The default value is t.
|
|
?plots g_plots
|
Boolean to specify whether or not to print the plots in the generated datasheet.
The default value is t.
|
|
?designVarsSummary g_designVarsSummary
|
|
|
Boolean to specify whether or not to save the design variable summary in the generated datasheet.
The default value is t.
|
|
?paramsSummary g_paramsSummary
|
|
|
|
Boolean to specify whether or not to save the parameters summary in the generated datasheet.
The default value is t.
|
|
?cornersSummary g_cornersSummary
|
|
|
Boolean to specify whether or not to save the corners summary in the generated datasheet.
The default value is t.
|
|
?setupSummary g_setupSummary
|
|
|
|
Boolean to specify whether or not to save the setup summary in the generated datasheet.
The default value is t.
|
|
?launchBrowser g_launchBrowser
|
|
|
|
Boolean to specify whether or not to launch a browser window to view the generated datasheet.
The default value is t.
|
|
?name t_name
|
Specifies the name of the top level file and directory created for the datasheet. For example, if ?name is set to myDatasheet, the top level file and directory are named as myDatasheet.html and myDatasheet/.
|
|
?session t_sessionName
|
|
|
|
Name of the ADE Assembler session.
If not specified, the current session is used.
|
|
?historyName t_historyName
|
|
|
|
Name of the history for which results are to be printed in a datasheet.
Certain run modes create a group history that contains multiple child histories. For such run modes, provide the name of the group history to create a consolidated datasheet for the group run, and provide the name of that child history to create a datasheet for a specific child history.
|
Value Returned
|
t
|
The results for the given history are written in a datasheet.
|
|
nil
|
The results for the given history are not written in a datasheet.
|
Examples
Runs a simulation for a maestro cellview and writes the results in a datasheet.
maeOpenSetup("solutions" "ampTest" "maestro")
=> "session0"
maeRunSimulation()
=> "Interactive.2"
maeWriteDatasheet(?historyName "Interactive.2")
=> t
Creates a datasheet for run Run.1 which is a part of the run plan history Plan.1.
maeWriteDatasheet(?historyName "Plan.1.Run.1")
=> t
For the same example, you can create a datasheet for the complete group history that contains all child histories by using the following code:
maeWriteDatasheet(?historyName "Plan.1")
=> t
Return to top