relxGetRelxStage
relxGetRelxStage(o_session) =>t_relxStage/ nil
Description
Returns the current stage of the reliability simulation in the given session.
Arguments
|
Session object of the current session. You can also use the |
Value Returned
|
Returns an empty string if reliability analysis is not enabled in the test setup or if there is an error. |
|
Examples
In this example, the function returns "aging", which indicates that the current stage of reliability simulation is aging.
session = asiGetCurrentSession()
relxGetRelxStage(session)
=> "aging"
Return to top