calcValForRel
calcValForRel(t_outputName[?relxNamet_relxName] [?ageValuet_ageValue] [?ageUnitt_ageUnit] [?sheg_she] [?cornerNamet_cornerName] [?historyNamet_historyName] [?runt_runName] ) =>g_output/nil
Description
Retrieves the value of an output expression used in a reliability setup. You can use the value returned by this function in another output expression. When using the function calcValForRel in an output expression, you must specify different tests for stress and aged tests to avoid cyclic dependencies. You can create this expression in the Outputs Setup tab by using the Expression Builder too.
calcValForRel function at Using the calcValForRel Function in Reliability Analysis. You can also read the related blog at Virtuoso Video Diary: Enhancements in Reliability Analysis.Value Returned
|
Returns the value of the specified output used in the given reliability setup. |
|
Examples
Retrieves the value of output yMax from "Stress" stage of the reliability setup "rel_0":
calcValForRel("yMax" ?relxName "rel_0" ?ageValue "stress")
Retrieves the value of output yMax from C2 corner for the age point 10 year in the reliability setup "rel_0":
calcValForRel("yMax" ?relxName "rel_0" ?ageValue "10" ?cornerName "C2")
Retrieves the value of output yMax from the reliability setup "rel_0" with the self-heating effect enabled.
calcValForRel("yMax" ?relxName "rel_0" ?she t)
Retrieves the value of output yMax from the history "Interactive.3". The history contains the simulation results of fresh stage in the reliability setup "rel_0":
calcValForRel("yMax" ?relxName "rel_0" ?ageValue "fresh" ?historyName "Interactive.3")
Retrieves the value of output yMax for the age point 20 days of gradual aging (10, 20, 30) in the reliability setup "rel_0":
calcValForRel("yMax" ?relxName "rel_0" ?ageValue "20" ?ageUnit "day")
Retrieves the value of output yMax from the reliability setup "rel_0" used in the run "Run.0":
calcValForRel("yMax" ?relxName "rel_0" ?run "Run.0")
Return to top