GeFEM GlobalFunction object
Global function object is represented by three functions:
- The function val.
- The function gradient grad.
- The function Hessian hess.
this type of function is used as local and global enrichment function. The global function Hessian is an optional parameter (only for fourth order derivative problems).
General constructor for GlobalFunction objects
Output a (unique) string representation of the GlobalFunction.
This can be used to perform comparisons between two different GlobalFunction objects. This function is to be completed.
displays a short summary for a GlobalFunction object.
Return grad function evaluation in PTs (column points).
On return, each column of GRADs is of the form [Gx,Gy].
Return hess function evaluation in PTs (column points).
On return, each column of HESSs is of the form [Hxx,Hxy,Hyx,Hyy].
Return val function evaluation in PTs (column points).