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

Renaming fuse project #125

Merged
merged 5 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion finat/element_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import finat
import finat.ufl
from redefining_fe.cells import CellComplexToUFL as FuseCell
from fuse.cells import CellComplexToUFL as FuseCell
import ufl

from FIAT import ufc_cell
Expand Down
2 changes: 1 addition & 1 deletion finat/ufl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
from finat.ufl.mixedelement import MixedElement, TensorElement, VectorElement # noqa: F401
from finat.ufl.restrictedelement import RestrictedElement # noqa: F401
from finat.ufl.tensorproductelement import TensorProductElement # noqa: F401
from finat.ufl.fuseelement import FuseElement # noqa: F401
from finat.ufl.fuseelement import FuseElement # noqa: F401
3 changes: 3 additions & 0 deletions finat/ufl/fuseelement.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@

from finat.ufl.finiteelementbase import FiniteElementBase


class FuseElement(FiniteElementBase):
"""
A finite element defined using FUSE.

TODO: Need to deal with cases where value shape and reference value shape are different
"""

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dependencies = [
"symengine",
"sympy",
"fenics-ufl @ git+https://github.com/firedrakeproject/ufl.git",
"fuse-element @ git+https://github.com/indiamai/fuse.git",
]
requires-python = ">=3.10"
authors = [
Expand Down
Loading