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
Value Returned
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