-
Notifications
You must be signed in to change notification settings - Fork 0
Implemented support for solving the Poisson problem in 2D #90
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
Conversation
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
… from the isoparametric simplex
This class represents the space of finite element shape functions in the physical space.
Moved the definition of type {parametric_point_t} from the manifolds api to the {OrientedSimplex} class. Now an oriented simplex knows the type of its parametric coordinates.
This information can now be shared with those who need to know, including the {IsoparametricSimplex}, the {Manifold} and the {QuadratureTable} classes.
…tes_type} from the {cell_type}
…s, instead of a mesh and a coordinate system
Corrected misalignment of nodes numbering between equation map and shape function on the elements involving nodes with attached Dirichlet boundary conditions.
…n terms of {std::map}
Methods {shape} and {gradient} now return maps from nodes to the corresponding evaluated shape functions and gradients, respectively.
Before this commit, the methods that build geometric simplices on top of a given simplex and a collection of nodes made copies of the nodes to be stored in the geometric simplex. The unwanted behaviour was causing a bug in the extraction of the boundary simplices of a mesh as it led to the duplication of all the boundary nodes in the boundary simplices. This has now been fixed. The methods that build geometric simplices on top of a given simplex and a collection of nodes do not make copies of nodes any more.
…ditions in poisson test driver This implementation now works correctly after rev. 61a2523 and the fixing of a few glitches (namely, setting -1 in the equation map for boundary nodes and declaring/defining the {N_equations} variable)
…oisson test driver
… Dirichlet constraint
… class {Manifold}
…equipped with an equation map This class should also be aware of the 'weakform bricks' that constitute the system. Each brick containing a piece of the weakform to be assembled.
…the discretized variable
Fix initialization of the number of equations in class {DiscreteSystem}.
…metricSimplex} satisfies concept {geometric_simplex_c}
…mber of elements in the manifold
Discretization is carried out via a class {Discretizer}, which admits specializations based on the finite element and the discretization type.
The specialization of {isoparametric_simplex} struct is now within each element-specific subdirectory.
Not sure if we still need to ensure that {vtk@9.1.0} is used.
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.
No description provided.