I would like to know how one can compute the (covariant) surface Hessian of a given GridFunction (defined on a Lagrange space that is defined on a surface).
I know there is this:
u.Operator(“hesseboundary”)
where u is a Trial (or Test) function.
But if try to use this on a grid function, as in:
gfu.Operator(“hesseboundary”)
I get this error:
Operator "hesseboundary" does not support vb = VOL!
I tried doing gfu.Trace().Operator(“hesseboundary”), but that doesn’t work either.
Is this not implemented? I suppose I could set up an L^2 projection to do this, but I shouldn’t have to do that.
-Shawn