Closed zhaog6 closed 5 years ago
Hello, No, just h-adaptation.
Le 2 mars 2019 à 10:57, zhaog6 notifications@github.com a écrit :
Hello,
I'd like to ask if FreeFemm++ support h- and p-adaptation respectively, and "trunc" in 3d ? Thanks.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/FreeFem/FreeFem-sources/issues/75, or mute the thread https://github.com/notifications/unsubscribe-auth/AFb2jP3RX46QjuTXDKlYbuGVWr8Ihhb1ks5vSksfgaJpZM4baS_b.
Thank you, Does the "trunc" function support nested refinement of 3D mesh?
Yes, through the optional parameter split
.
Thanks,
I would like to ask another question. For h-adaptation, I find the mesh has moved when I use adaptmesh(...)
to refine mesh according to "examples++-tutorial/AdaptResidualErrorIndicator.edp" (by given metric to refine). But I intend to refine mesh locally under fixed mesh to implement h-adaptation, which doesn't seem to have been mentioned in tutorial. So I would like to know which function to use.
Hello,
I'd like to ask if FreeFem++ support h- and p-adaptation respectively, and "trunc" in 3D(when I test Poission equations' convergence rate on norm H1 by using
Th = trunc(Th, 1, split=2);
to nestedly refine mesh in 3D, I find the convergence rate may be wrong) ? Thanks.The code to test "trunc" in 3D is as following
H1Error is 1.8384, but when changing code in line 11 into
int nblayers = 2
, H1Error is 1.12211. The convergence order would be bad (even though I refine grid again).