udfGetNumSdDataNames()
Return the number of data names in the subdomain.
Syntax
nNames = udfGetNumSdDataNames( udfHd ) ;
Type
AcuSolve User-Defined Subdomain Routine
Parameters
- udfHd
- The opaque handle (pointer) which was passed to the user function.
Return Value
- nNames (integer)
- Number of data names in the subdomain.
Description
This routine returns the number of data names in the current subdomain. For
example,
Integer nNames ;
...
nNames = udfGetNumSdDataNames( udfHd ) ;
Errors
- This routine expects a valid udfHd.
- This routine may only be called within an external code.