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

maeGetSimulationMessages

maeGetSimulationMessages(
[ ?session t_session ]
[ ?msgType t_messageType ]
)
=> t_messages / nil

Description

Displays an error message of the given type during the simulation run.

Arguments

?session t_session

Name of the session.

?msgType t_messageType

Type of messages to be displayed.

The valid values are:

  • ERROR. This is the default value.
  • WARNING
  • INFO
  • ALL

Value Returned

t_messages

Returns a string of errors for the given simulation.

nil

The command was unsuccessful.

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
 ⠀
X