udfGetEbcName()
Return the user-given name of the boundary element set.
Syntax
name = udfGetEbcName( udfHd ) ;
Type
AcuSolve User-Defined Example Boundary Condition
Parameters
- udfHd
- The opaque handle (pointer) which was passed to the user function.
Return Value
- name (string)
- User-given name of the boundary element set.
Description
This routine returns the user-given name of the boundary element set associated with the user
function. This facilitates correlating with the
input file. For
example,
String user_name ;
...
user_name = udfGetEbcName( udfHd ) ;
udfPrintMess( "Inside boundary element set with name <%s>", user_name ) ;
Errors
- This routine expects a valid udfHd.
- This routine may only be called within an Element Boundary Condition user function.