-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.4 #64
Merged
Merged
v0.4 #64
Conversation
This file contains 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
Native refinement for CartesianDiscreteModels
NLsolve.jl wrappers
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.
GridapSolvers v0.4
1 - Nonlinear problems:
2 - Patch-Based: PatchTriangulation rework.
When first designing this, I assumed there would not be a need for face triangulations that a) contain repeated background faces (i.e with overlapping) and b) require those repeated faces to be tied to different cells in the background mesh. I was wrong...
We require such overlapping triangulations in the case where we want to access in each patch the path-boundary faces. Those faces are interior (i.e have multiple neighboring cells), but neighboring cells are not in the same patch. This means that for each patch we want to access the neighboring cell that belongs to such patch.
All in all, I've had to rework this part of the code to accomodate this. I believe it's now much cleaner and more extensible, although I did have to work around Gridap's restrictions.
3 - ModelHierarchies: Native drivers
[BREAKING] Added native refinement for cartesian meshes. This now supports anisotropic uniform refinement, with periodicity.
The old p4est constructors have been kept under the name
P4estCartesianModelHierarchy
#654 - LocalProjectionMap rework
[BREAKING] Geometric maps are now incorporated into the projection maps, which is important for stretched meshes.
5 - Misc: