maeSetReliabilityVarValue
maeSetReliabilityVarValue(t_relxSetupName t_varName t_varValue[?varTypet_varType] [?runt_runName] [?sessiont_session] ) =>t/nil
Description
Sets the value of the specified variable used in the fresh, stress, or aged test in a reliability setup.
Arguments
|
Name of the reliability stage. |
|
|
Name of the run in a run plan. If you do not specify this argument, the value of the variable is set in the reliability setup saved in the active setup. |
|
Value Returned
Examples
The following example sets the value of the variable vdc to 1.7 in the stress stage of the reliability setup relA in the active setup of the current maestro session.
maeSetReliabilityVarValue("relA" "vdc" 1.7 ?varType "stress")
=> t
The following example sets the value of the variable vdc to 1.9 in the stress stage of the reliability setup relA saved in Run.0 in the current maestro session.
maeSetReliabilityVarValue("relA" "vdc" 1.9 ?varType "stress" ?run "Run.0")
=> t
Return to top