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

asiInitSimOption

asiInitSimOption( 
o_tool 
) 
=> t / nil

Description

Initializes the simulation options for the tools that are derived from the asiAnalog class. This is not applicable for tools derived from the asiSocket class. This function can be used by third-party integrators to define their own simulation options.

Arguments

o_tool

Simulation tool object.

Value Returned

t

The tool-specific simulation options are initialized.

nil

The function does not run successfully.

Examples

The following example initializes simulation options as per the specified settings:

(defmethod asiInitSimOption ( ( tool <yourSimulator> ) )
    asiAddSimOption( tool
     ?name 'mySimOption
?prompt "My Simulation Option"
)
)
=> t


Return to top
 ⠀
X