I am not sure how to get the second-order derivative information for the edge elements.
For H1 space, we can do v.Operator(“hesse”), but it seems that this operator is not implemented for vector finite elements yet… Do you have any suggestions?
Hi Guosheng,
Do you need it for postprocessing? You could project the function on a VectorH1 of higher order and then take the gradient. If you need it in the form, I think you would need to implement and export it.
I actually need it for the form. It’s a forth-order vector PDE.
I am a bit scared to dig into the c++ code myself. But maybe it worth a try.
As a first step, I just want to work on square/box elements, which might also makes the coding less intensive. Can you suggest where to start with?
have you tried a mixed formulation to reduce the fourth-order problem to two second-order problems like the Hellan-Herrmann-Johnson method in this tutorial?
I am following the demo: The Hellan-Herrmann-Johnson Mixed Method. I would like to know the explicit basis functions for the bending moments, could you point out some accessible references on this for an engineering background user. Many thanks!!
Hi Bin,
have a look into the PhD thesis by Astrid Pechstein (aka Astrid Sinwel). Chapter 4.4, in particular page 79.
TDNNS and HHJ use the same finite element spaces for the stress (or moments).
available from here: http://www.numa.uni-linz.ac.at/Teaching/PhD/Finished/sinwel-diss.pdf
best, Joachim