maeGetReliabilityOptionVal
maeGetReliabilityOptionVal(t_relxSetupName s_varName[?runt_runName] [?sessiont_session] ) =>t_varValue /nil
Description
Returns the value of the specified reliability option in a reliability setup.
Arguments
|
Name of the reliability option.
For more details about the reliability options, refer to |
|
|
Name of the run in a run plan. If you do not specify this argument, the value of the specified reliability option is retrieved from the reliability setup saved in the active setup. |
|
Value Returned
|
The value of the reliability option in the specified reliability setup. |
|
|
The value of the reliability option is not retrieved because of an error. |
Examples
The following example returns the value of the reliability option agingPointsType in the reliability setup relA from the active setup.
maeGetReliabilityOptionVal("relA" 'agingPointsType)
=> "Standard aging"
The following example returns the value of the degSortType in the reliability setup relA from the active setup.
maeGetReliabilityOptionVal("relA" 'degSortType)
=> "threshold"
The following example returns the value of the reliability option agingPointsType in the reliability setup relA from Run.0.
maeGetReliabilityOptionVal("relA" 'agingPointsType ?run "Run.0")
=> "Gradual aging"
The following example returns the value of the degSortType in the reliability setup relA from Run.0.
maeGetReliabilityOptionVal("relA" 'degSortType ?run "Run.0")
=> "number"
Return to top