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

relxGetSpecifiedReliabilityStateFileName

relxGetSpecifiedReliabilityStateFileName(
t_sessionName
)
=> t_filename/ nil

Description

Returns the name of the state file used the Reliability form. By default, the name of the state file is relxOptions. However, you can rewrite this function to define another name for the state file for your simulator.

Arguments

t_sessionName

Name of the Spectre session. You can also use the asiGetCurrentSession function to specify the current session.

Value Returned

t_filename

If the session is created using Spectre, returns the name of the state file.

nil

For any other sessions, returns nil.Also, There is an error.

Examples

Consider the below example in which you define the name of the state file for your simulator. The asiGetSpecifiedReliabilityStateFileName function returns the specified name of the state file.

(defmethod asiGetSpecifiedReliabilityStateFileName((session asiAnalogAdapter_session))
    "LynxOptions"
)
session = asiGetCurrentSession()
asiGetSpecifiedReliabilityStateFileName(session)
=> LynxOptions

Return to top
 ⠀
X