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

asiFormatModelLibSelectionList

asiFormatModelLibSelectionList(
o_session 
p_fp
) 
=> t / nil

Description

Formats the statement which specifies the model library information.

Arguments

o_session

The simulation session object.

p_fp

The pointer to the control statement file.

Value Returned

t

All model library selections are formatted successfully.

nil

All model library selections are not formatted.

Examples

The generic method for asiAnalog class does nothing. The simulator interface has to define its own method, as shown in the following example:

defmethod(asiFormatAnalysisList ((session xyz_session) fp)
foreach( obj asiGetModelLibSelectionList( session )
 artFprintf( fp “include %L” asiGetModelLibFile(obj))
 unless( artBlankString(section)
  artFprintf( fp “ section=%s” asiGetModelLibSection(obj))
  )
  artFprintf( fp “\n”)
 ) ; foreach
t )

Return to top
 ⠀
X