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

maeGetRelxSetups

maeGetRelxSetups(
[ ?run t_runName ]
[ ?session t_session ]
[ ?enabled g_enabled ]
)
=> l_relxSetups / nil

Description

Returns a list of reliability setups saved in the active setup or in the specific run of a run plan.

Arguments

?run t_runName

Name of the run in a run plan.

If you do not specify this argument, the reliability setups are returned from 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.

?enabled g_enabled

Status of the reliability setup.

Possible values:

  • t: Returns only those reliability setups which are enabled.
  • nil: Returns only those reliability setups which are disabled.

If you do not specify this argument, all the reliability setups are returned, irrespective of their statuses.

Value Returned

l_relxSetups

A list of reliability setups.

nil

The reliability setups cannot be retrieved because of an error.

Examples

The following example returns all the reliability setups saved in the active setup of the current maestro session.

maeGetRelxSetups()
=> ("relA" "relB")

The following example returns the reliability setups which are enabled in the active setup of the current maestro session.

maeGetRelxSetups(?enabled t)
=> ("relB")

The following example returns the reliability setups which are disabled in the active setup of the current maestro session.

maeGetRelxSetups(?enabled nil)
=> ("relA")

The following example returns all the reliability setups that are saved in Run.0 in the current maestro session.

maeGetRelxSetups(?run "Run.0")
=> ("Aging_10yr" "Aging_5yr")

Return to top
 ⠀
X