‘-clface’ seems to be abnormal in some cases #333
Answered
by
rquey
smallrain1996
asked this question in
Q&A
-
Hello, I use -clface to control the mesh size of the specified surface, but it seems that in some cases the mesh size of some areas has not been adjusted (y==0 everything is normal, but there are some problems with y==10).
|
Beta Was this translation helpful? Give feedback.
Answered by
rquey
Nov 22, 2021
Replies: 1 comment 1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rquey
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are dealing with real numbers, so, use a tolerance:
-clface "(y>9.99)?0.3:1"
instead of-clface "(y==10)?0.3:1"
.I would also recommend to use
-reg 1
in -T (or at least / instead-pl 100
in -M) to avoid the local mesh refinements around small edges.