*errormessage()
Displays an error message on the menu bar.
Syntax
*errormessage (string)
Type
HyperMesh Template Command
Inputs
- string
- String to be displayed.
Example
The example below displays an error for each quad4 that has a jacobian less than .7:
*elements(104,0,"","")
*format()
*if([jacobian < .7])
*errormessage("jacobian less than .7")
*endif()
*output()
Each time *errormessage() is called, it overwrites the last error message. If the right mouse button is pressed while printing an error message, HyperMesh stops processing the template.