ASCA_ERR

ASCA_ERR can be called from any user subroutine to submit a note, warning, or error message.

The interface is shown below.

SUBROUTINE ASCA_ERR(ERRMSG, ERRTYPE)
    CHARACTER(LEN=*), INTENT(IN) :: ERRMSG
    INTEGER, INTENT(IN) :: ERRTYPE
ENDSUBROUTINE

Variables Passed In

ERRMSG
The message to be displayed. For Abaqus this will be written to the .msg file. For ANSYS it will be written to the .out file.
ERRTYPE
The type of message (note, warning, or error). Value of -1 indicates a note, -2 is a warning, and -3 is an error. Notes and warnings will write the message and continue the analysis. An error will write the message and terminate the analysis at the first convenient time.

Variables Updated

None