Hello,
I am currently trying to solve a biharmonic-like equation in Fenics.
I am following the provided tutorial (https://fenicsproject.org/docs/dolfin/2019.1.0/python/demos/biharmonic/demo_biharmonic.py.html) where it presents the variational formulation. It uses a C0 interior penalty method, and after some research another question in the forum (https://fenicsproject.org/qa/6281/weak-formulation-of-biharmonic-equation/) pointed me to the article by Brenner and Sung “C0 Interior Penalty Methods for Fourth Order Elliptic Boundary Value Problems on Polygonal Domains”.
However, in that article the penalty terms are included with a positive sign:
whereas in the tutorial the second and third penalty terms are negative (they are equivalent to the term b_h in the mentioned article).
I would like to know if this is a mistake, or if the sign changes due to some internal behaviour of Fenics (maybe the way it provides the interior boundary values or some other sign convention).
Thank you very much.