h-refinement#2
Merged
Merged
Conversation
+ Refacor + CI tests (ethierRefine ciMode 24-27)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
On-the-fly oct-tree mesh refinement.
Controlled in par file. To split all elements into 8, simply put number of the segment into the par key like this:
Support multiple refinements: The below will do two rounds of refinement with
1-> 8 -> 8*27Supports restart from original (or other coarse) mesh controlled by the restart option
refine=a;b;c.startFrom = "r1.fld+refine=2"refines the fields from the checkpoint file.startFrom = "r1.fld+refine=2;3"does twice refinement with refein=2 follows by refine=3. (order will affect element numbering matters).It works with other options as well such as
startFrom = "r1.fld+U+refine=2"Refinement + restart doesn't support Adios for now.
Refinement is local inside MPI rank so load imbalance (i.e.,
max(nel) - max(nel) > 1) can happen.See ethier example
ciMode=24,25,26,27.Add
[MESH] maxElementspar key to set lelg in nek5000/SIZE, which gives more flexibility in CI test.