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

maeGetParamConditions

maeGetParamConditions(
x_designPointID 
?typeName t_typeName
)
=> l_designParamConditions / nil

Description

Returns the design parameter conditions for the given design point ID.

Arguments

x_designPointID

ID of the design point for which the parameter conditions are to be returned.

?typeName x_designPointID

Specifies the type of information to be returned.

Possible values are: "parameters", "variables", "all".

Default value is "all".

Value Returned

l_designParamConditions

The design parameter conditions are returned for the given design point ID.

nil

The design parameter conditions are not returned for the given design point ID.

Examples

Returns the design parameter conditions for the best design point.

;create setup for simulation
; Run Simulation maeRunSimulation() => "Interactive.2"
; open the results
maeOpenResults(?history "LocalOpt.1")
=> t
; Find the best design point
bestPt=maeGetNBestDesignPoints(?count 2)
=> (8 10)
; view the conditions for the first best point
maeGetParamConditions(car(bestPt)) => (("vdd" "3") ("opamp090/full_diff_opamp_AC/schematic/R2/m" "2")
)
; using the default value of the ?typeName argument, the function returns both
; parameters and variables
; close the results
maeCloseResults()
=> t

Return to top
 ⠀
X