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

asiCheckSimulationSuccess

asiCheckSimulationSuccess( 
o_session 
) 
=> t / nil

Description

Determines if a simulation was successful.

Note for Integrators: This function is defined as a method for the Analog Class. You can overload this method for your simulator class, as shown in the example for integrators.

Argument

o_session

Simulation session object.

Value Returned

t

Successful operation.

nil

Indicates an error.

Examples

success = asiCheckSimulationSuccess( session )

Sets success to t if the simulation is successful. Sets success to nil otherwise.

defmethod( asiCheckSimulationSuccess (( session     
     <yourSimulator>_session))
    let( ( success )
    ;; This checks for the existence of the PSF file.
    success = callNextMethod()
    <insert code to perform simulator-specific checking>
    success
    )
)

Return to top
 ⠀
X