maeGetSimulationMessages
maeGetSimulationMessages([ ?sessiont_session] [ ?msgTypet_messageType]) =>t_messages/nil
Description
Displays an error message of the given type during the simulation run.
Arguments
Value Returned
Examples
The following example shows how you can print all warning messages from a simulation run:
mySession=maeOpenSetup("solutions" "amptest" "maestro")
=> t
>
maeRunSimulation()
=> "Interactive.1"
>
maeWaitUntilDone('all)
>
maeGetSimulationMessages(?session mySession ?msgType "ERROR")
=>"ERROR (ADEXL-1611): Sweep and Corners are using the same variables:vddEither disable variables in sweeps, or disable corners that use these variables.\nERROR (ADEXL-1742): Cannot run 'Monte Carlo Sampling' with swept variable/parameters.You are trying to run Monte Carlo with sweeps enabled. This is currently not supported. Disable all sweeps or enable 'Use Reference Point' in the Monte Carlo options to continue.\n"
>
Return to top