Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

maeSetAnalysis

maeSetAnalysis(
t_testName
t_analysis
[ ?enable g_enabled ]
[ ?options l_options ]
[ ?session t_sessionName ]
)
=> t / nil

Description

Adds or removes an analysis for the given test. The function can also be used to set the value of different options for the analysis.

Arguments

t_testName

Name of the test to which you need to add an analysis.

t_analysis

Name of the analysis.

?enable g_enabled

Status to be set.

  • t: Enables the specified analysis for the given test. This is the default.
  • nil: Disables the specified analysis for the given test.

?options l_options

List of analyses options and the values to be set.

You can use maeGetAnalysis to get the list of analysis options, as shown below.

maeGetAnalysis(t_testName t_analysisName ?includeEmpty t)

?session t_sessionName

Name of the session.

If not specified, the current session is used.

Value Returned

t

The specified analysis is added or removed for the given test.

nil

The analyses setup for the given test is not updated.

Examples

Adds a new analysis tran and sets its options, stop time 500 and step 10.:

maeSetAnalysis( "solutions:ampTest:2" "tran" ?enable t ?options '(("stop" "500") ("step" "10")))
=> t
maeSaveSetup()

Related Topics

maeGetAnalysis


Return to top
 ⠀
X