udfGetUsrStrs()
Return the array of user supplied strings.
Syntax
usrStrs = udfGetUsrStrs( udfHd ) ;
Type
AcuSolve User-Defined Function Basic
Parameters
- udfHd
- The opaque handle (pointer) which was passed to the user function.
Return Value
- usrStrs (string)
- The return value is an array of user strings given in the input file. This array has udfGetNumUsrStrs() entries.
Description
String* usrStrs ;
String inflowOsi ; /* inflow surface output */
String outflowOsi ; /* outflow surface output */
...
udfCheckNumUsrStrs( udfHd, 2 ) ;
usrStrs = udfGetUsrStrs( udfHd ) ;
inflowOsi = usrStrs[0] ;
outflowOsi = usrStrs[1] ;
Errors
This routine expects a valid udfHd.