-
Notifications
You must be signed in to change notification settings - Fork 25
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
Fix interpolation for Arguments of zany spaces #286
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,8 @@ | |
from gem.unconcatenate import unconcatenate | ||
from gem.utils import cached_property | ||
|
||
import finat | ||
from finat.finiteelementbase import FiniteElementBase | ||
from finat.physically_mapped import PhysicalGeometry, NeedsCoordinateMappingElement | ||
from finat.point_set import PointSet, PointSingleton | ||
from finat.quadrature import make_quadrature | ||
|
@@ -246,12 +248,64 @@ def physical_vertices(self): | |
return self.physical_points(vs) | ||
|
||
|
||
@singledispatch | ||
def needs_coordinate_mapping(element): | ||
raise AssertionError(f"Don't know how to handle {type(element)}") | ||
|
||
|
||
@needs_coordinate_mapping.register(ufl.FiniteElementBase) | ||
def _needs_coordinate_mapping_ufl(element): | ||
"""Does this UFL element require a CoordinateMapping for translation?""" | ||
if element.family() == 'Real': | ||
return False | ||
else: | ||
return isinstance(create_element(element), NeedsCoordinateMappingElement) | ||
return needs_coordinate_mapping(create_element(element)) | ||
|
||
|
||
@needs_coordinate_mapping.register(NeedsCoordinateMappingElement) | ||
def _needs_coordinate_mapping_finat_needs_coordinate_mapping(element): | ||
return True | ||
|
||
|
||
@needs_coordinate_mapping.register(FiniteElementBase) | ||
def _needs_coordinate_mapping_finat_base(element): | ||
return False | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.DiscontinuousElement) | ||
def _needs_coordinate_mapping_finat_discontinuous(element): | ||
return needs_coordinate_mapping(element.element) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.FlattenedDimensions) | ||
def _needs_coordinate_mapping_finat_cube(element): | ||
return needs_coordinate_mapping(element.product) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.TensorProductElement) | ||
def _needs_coordinate_mapping_finat_tpe(element): | ||
return any(map(needs_coordinate_mapping, element.factors)) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.TensorFiniteElement) | ||
def _needs_coordinate_mapping_finat_tfe(element): | ||
return needs_coordinate_mapping(element.base_element) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.EnrichedElement) | ||
def _needs_coordinate_mapping_finat_enriched(element): | ||
return any(map(needs_coordinate_mapping, element.elements)) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.mixed.MixedSubElement) | ||
def _needs_coordinate_mapping_finat_mixed(element): | ||
return needs_coordinate_mapping(element.element) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.HDivElement) | ||
@needs_coordinate_mapping.register(finat.HCurlElement) | ||
def _needs_coordinate_mapping_finat_hdivcurl(element): | ||
return needs_coordinate_mapping(element.wrappee) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I put this here because it meant I didn't need a PR in finat as well, but probably finat should offer a e.g. ideally you would just write (if you don't care about ordering) def traverse(element):
yield element
yield from map(traverse, element.children) |
||
|
||
|
||
class PointSetContext(ContextBase): | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not checking for correctness, just that a kernel actually comes out the other end.