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

maeGetAnalysis

maeGetAnalysis(
t_testName
t_analysis
[ ?includeEmpty g_includeEmpty ]
[ ?option t_option ]
[ ?session t_sessionName ]
)
=> l_options / nil

Description

Returns a list containing name-value pairs of the options set for the given analysis. By default, the function returns only those options for which the value is not empty. If the g_includeEmpty argument is set to t, it returns all the options. You can also specify the name of a specific option for which you want to know the value.

Arguments

t_testName

Name of the test.

t_analysis

Name of the analysis for which you want to return the settings.

?includeEmpty g_includeEmpty

Includes or excludes the options for which no value is set.

?option t_option

Name of the specific option for which you want to return the value.

?session t_sessionName

Name of the session.

Value Returned

l_options

List of options set for the given analysis.

nil

The list of options is not returned.

Examples

Returns the list containing name-value pairs of the options set for AC analysis for the given maestro session.

sess= maeOpenSetup("solutions" "ampTest" "maestro")
=> "session0"
maeGetAnalysis( "solutions:ampTest:2" "ac" )
=> (("anaName" "ac") ("sweep" "Frequency") ("rangeType" "Start-Stop") ("start" "1") ("stop" "10G" ("incrType" "Logarithmic") ("stepTypeLin" "Step Size") ("stepTypeLog" "Points Per Decade") ("dec" "20") ("outType" "Voltage") ("srcType" "isource") ("perturbation" "linear") ("special" "None") ("save" "selected") ("oppoint" "no") ("annotate" "no") )

Return to top
 ⠀
X