maeGetOutputValue
maeGetOutputValue(t_outputName t_testName[?cornerNamet_cornerName] [?pointIdx_pointId] [ ?evalTypet_evalType] ) =>x_value/ nil
Description
Returns value of the given output.
Arguments
|
If not specified, output value is returned for the nominal corner. |
||
|
Point ID for which you need to get the output value. If not specified, output value is shown for the point with ID = 1. |
||
Value Returned
Examples
Returns the value for the output outputA in the test solutions:amptest:1.
; Load the results for that history
maeOpenResults(?history "Interactive.1")
=> t
>
; Get the ouput value
maeGetOutputValue("outputA" "solutions:amptest:1")
=> 2.2
Return to top