From 210f96090865b53762e400eda20e386de5b45393 Mon Sep 17 00:00:00 2001 From: benSepanski <ben_sepanski@alumni.baylor.edu> Date: Tue, 7 Jul 2020 10:51:05 -0500 Subject: [PATCH] Some doc updates --- meshmode/interop/firedrake/mesh.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meshmode/interop/firedrake/mesh.py b/meshmode/interop/firedrake/mesh.py index 25304e8f..6e425ba6 100644 --- a/meshmode/interop/firedrake/mesh.py +++ b/meshmode/interop/firedrake/mesh.py @@ -652,7 +652,6 @@ def import_firedrake_mesh(fdrake_mesh, cells_to_use=None, # {{{ Mesh exporting to firedrake -# TODO : Keep boundary tagging def export_mesh_to_firedrake(mesh, group_nr=None, comm=None): """ Create a firedrake mesh corresponding to one :class:`Mesh`'s @@ -689,7 +688,9 @@ def export_mesh_to_firedrake(mesh, group_nr=None, comm=None): of the *c*th meshmode element. .. warning:: - Currently, no boundary tags are exported along with the mesh. + Currently, no custom boundary tags are exported along with the mesh. + :mod:`firedrake` seems to only allow one marker on each facet, whereas + :mod:`meshmode` allows many. """ if not isinstance(mesh, Mesh): raise TypeError(":arg:`mesh` must of type :class:`meshmode.mesh.Mesh`," -- GitLab