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

asiInitDataAccessFunction

asiInitDataAccessFunction( 
o_tool 
) 
=> t / nil

Description

Initializes the data access function for the tool. This function can be used by a third-party integrator to define their own data access functions.

Arguments

o_tool

Simulation tool object.

Value Returned

t

The data access function is initialized.

nil

The function was not run successfully.

Examples

Initializes the data access function for the specified simulation tool object.

(defmethod asiInitDataAccessFunction ( ( tool <yourSimulator> ) )
    asiDefineDataAccessFunction( tool 'VT '<yourSimulator>VT))
procedure( '<yourSimulator>VT(specifier dataDir simData)
    asiGetDrlData('tran specifier dataDir))
=> t


Return to top
 ⠀
X