maeGetParamConditions
maeGetParamConditions(x_designPointID?typeNamet_typeName) =>l_designParamConditions/ nil
Description
Returns the design parameter conditions for the given design point ID.
Arguments
|
ID of the design point for which the parameter conditions are to be returned. |
||
|
Specifies the type of information to be returned. |
||
Value Returned
|
The design parameter conditions are returned for the given design point ID. |
||
|
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