udfHasAle()
Does this problem have mesh movement?
Syntax
aleFlag = udfHasAle( udfHd ) ;
Type
AcuSolve User-Defined Function Global
Parameters
- udfHd
- The opaque handle (pointer) which was passed to the user function.
Return Value
- aleFlag (integer)
- Flag indicating whether or not this problem has mesh movement. The return value is a flag indicating whether or not this problem has mesh movement equations:
- 0
- No
- 1
- Yes
Description
This routine determines if this problem contains mesh movement. For
example,
Integer aleFlag ;
...
aleFlag = udfHasAle( udfHd ) ;
if ( aleFlag == 1 ) {
/* Logic if mesh movement exist */
...
)
Errors
This routine expects a valid udfHd.