Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

maeGetReliabilityOptionVal

maeGetReliabilityOptionVal(
t_relxSetupName
s_varName
[ ?run t_runName ]
[ ?session t_session ]
)
=> t_varValue / nil

Description

Returns the value of the specified reliability option in a reliability setup.

Arguments

t_relxSetupName

Name of the reliability setup.

s_varName

Name of the reliability option.

For more details about the reliability options, refer to spectre.relxOpts environment variables.

?run t_runName

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.

This argument is useful only when the setup has a run plan.

?session t_session

Name of the ADE Explorer or ADE Assembler session.

Default: The current session.

Value Returned

t_varValue

The value of the reliability option in the specified reliability setup.

nil

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
 ⠀
X