Skip to content
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

Integral on SimpleMesh not yet implemented #27

Open
mikeingold opened this issue Mar 3, 2024 · 0 comments
Open

Integral on SimpleMesh not yet implemented #27

mikeingold opened this issue Mar 3, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@mikeingold
Copy link
Collaborator

mikeingold commented Mar 3, 2024

Ideas sought. A simple version of this might be possible by simply decomposing the mesh into a set of Triangles and then returning the sum of their integrals, i.e.:

function _integral_2d(f, mesh::SimpleMesh, rule::IntegrationRule)
    triangle = _some_function_mesh_to_triangles(mesh)
    integrand(triangle) = _integral(f, triangle, rule)
    return sum(integrand, triangles)
end
@mikeingold mikeingold added enhancement New feature or request help wanted Extra attention is needed labels Mar 3, 2024
@mikeingold mikeingold pinned this issue Apr 7, 2024
@mikeingold mikeingold changed the title TODO Implement integral of SimpleMesh Some Meshes types aren't yet implemented/verified Apr 13, 2024
@mikeingold mikeingold changed the title Some Meshes types aren't yet implemented/verified Integral on Meshes.SimpleMesh not yet implemented Apr 14, 2024
@mikeingold mikeingold changed the title Integral on Meshes.SimpleMesh not yet implemented Integral on SimpleMesh not yet implemented Apr 14, 2024
@mikeingold mikeingold unpinned this issue Sep 1, 2024
@mikeingold mikeingold removed the help wanted Extra attention is needed label Sep 21, 2024
@mikeingold mikeingold pinned this issue Dec 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant