Replies: 1 comment 2 replies
-
Here's some discussion that may be relevant https://github.com/firedrakeproject/tsfc/issues/224 My approach is complicated, @medinaeder's is probably more straightforward: you just replace Your suggestion of using the flat mesh is doable too, it needs some thought about how to implement things in the form compiler/UFL. Effectively you would say something like:
Historical accident I think, a patch to replace |
Beta Was this translation helpful? Give feedback.
-
I'm thinking about how to generalize
CellSize
to higher order meshes. I suspect that, given that the polynomial boundary approximation theory relies on the assumption that the true boundary is h^(p+1) away from the flat cell edge (for p-FEM approximations), we could just use theCellSize
of the underlying simplicial mesh (although I'm clueless about how to do that). Any advice?Bonus question: Why does
CellSize
callufl.Circumradius
instead ofufl.CellDiameter
? For shape-regular meshes these are probrably equivalent, but most of the FEM-theory I read in the past always employed the equivalent ofufl.CellDiameter
.Beta Was this translation helpful? Give feedback.
All reactions