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

Add support for mixed-dimensional kernels (codimension 1) #675

Merged
merged 31 commits into from
Jun 6, 2024

Conversation

jpdean
Copy link
Member

@jpdean jpdean commented Mar 28, 2024

This PR adds support for mixed-dimensional kernels of codimension 1. It requires this PR to work.

It would be nice to avoid passing cell to analyse_modified_terminal. Please let me know if anyone has any thoughts on this.

jpdean added 16 commits March 27, 2024 14:40

Verified

This commit was signed with the committer’s verified signature.
MichaelDeBoey Michaël De Boey

Verified

This commit was signed with the committer’s verified signature.
MichaelDeBoey Michaël De Boey

Verified

This commit was signed with the committer’s verified signature.
MichaelDeBoey Michaël De Boey

Verified

This commit was signed with the committer’s verified signature.
MichaelDeBoey Michaël De Boey
Copy link
Member

@jorgensd jorgensd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this PR looks good in general! I added a few remarks scattered across the code.
Another question is, could we ensure that this also works for co-dim 1 expressions? That shouldn't be alot of work, as the code-paths of integrands and expressions are the same.

for domain in integrand.ufl_domains():
if domain.topological_dimension() != cell.topological_dimension():
is_mixed_dim = True

Copy link

@cdaversin cdaversin Apr 4, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason to use a boolean (is_mixed_dim) instead of computing codim = cell.topological_dimension() - domain.topological_dimension() ? Safer to check if codim > 0 rather than is_mixed_dim (which would be True even if codim < 0)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is_mixed_dim indicates if an integral contains any mixed-dimensional terms. In build_optimized_tables, we need to differentiate between the codim 0 element and the codim 1 element in a mixed-dimensional integral so that only the quadrature rule for the codim 0 element is permuted (see here). I've added a check that codim > 0 when the codimension of the modified terminal is computed here. An alternative approach might be to replace is_mixed_dim with something like integral_codim and rename codim to element_codim. Let me know which you prefer

@michalhabera
Copy link
Contributor

michalhabera commented Apr 4, 2024

I think you've correctly noted that passing cell into analyse_modified_terminal is weird. It feels odd to store codim (which is the property of the element) to modified terminal, which has the purpose of defining the context in which the element/terminal is tabulated. In many places you already have the cell and the element, from which you can deduce the codimension, no?

For the analysis, I'd try to deduce the codim from cell and element and for the access you might need to store the codim as property of tabledata. Does that make sense or I am missing something?

@jpdean
Copy link
Member Author

jpdean commented May 17, 2024

Thanks for the feedback everyone! This PR means that permutations are now only needed for the codim 0 cell, which simplifies this PR quite a lot. I think this will address most of the comments here, but I'll work on fixing the others soon.

jpdean added 2 commits May 19, 2024 16:30
jpdean added 5 commits May 24, 2024 16:13
@jpdean jpdean requested a review from jorgensd May 24, 2024 17:17
@jpdean
Copy link
Member Author

jpdean commented Jun 3, 2024

Are there any further issues anyone would like me to address?

Copy link
Member

@jorgensd jorgensd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! Only a small note on the test comment FIXME

@jpdean jpdean added this pull request to the merge queue Jun 6, 2024
Merged via the queue into main with commit 2a0f480 Jun 6, 2024
13 checks passed
@jpdean jpdean deleted the jpdean/mixed_dim_forms branch June 6, 2024 13:37
schnellerhase pushed a commit to schnellerhase/fenics-ffcx that referenced this pull request Mar 17, 2025
* Get working without perms

* Tidy

* Add TODOs

* Add TODOs

* Check if mixed dim

* Permute tables

* Ruff

* Coeffs

* Try with mt

* Handle coeffs

* Tidy

* Ruff

* Change to codim

* Ruff

* Add is_mixed_dim

* Tidy

* Don't permute facet element

* Simplify

* Tidy

* Use domain

* Add comment

* Compute reference

* Split data

* Fix test

* Docs

* Docs

* Remove TODO

---------

Co-authored-by: Jørgen Schartum Dokken <dokken@simula.no>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants