Does domain decomposition work with structured grids/meshs? #944
Closed
DeniseWorthen
started this conversation in
General
Replies: 3 comments 4 replies
-
Domain decomposition cannot be used with structured grids. |
Beta Was this translation helpful? Give feedback.
1 reply
-
We never checked the meshcap with wetting and drying. This is a place we need to investigate after all urgent developments for the sake of GFSv17 are over. |
Beta Was this translation helpful? Give feedback.
2 replies
-
@DeniseWorthen PDLIB is self-contained, if it is selected, it is for domain decomposition. No extra check needed. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There are several locations where the conditional is used:
IF (.NOT. LPDLIB .or. (GTYPE.ne.UNGTYPE))
This evaluates as true for the following cases:
Is the second case possible? If domain decomposition can only run with unstructured domains, then a simple
if (.not. lpdlib)
would be sufficient and the double-negative construction could be simplified.Beta Was this translation helpful? Give feedback.
All reactions