diff --git a/meshmode/mesh/__init__.py b/meshmode/mesh/__init__.py index d400f9ef24c39c0ffb92f081441112c0a4327ab4..cc32e962cd785693c9e0d064276d4b550577fedd 100644 --- a/meshmode/mesh/__init__.py +++ b/meshmode/mesh/__init__.py @@ -636,6 +636,7 @@ class Mesh(Record): .. automethod:: __eq__ .. automethod:: __ne__ + .. automethod:: find_igrp """ face_id_dtype = np.int8 @@ -864,7 +865,7 @@ class Mesh(Record): def find_igrp(self, elem): """ - :arg elem: An element of the mesh. + :arg elem: A mesh-wise element. Think of it as ``elem + element_nr_base``. :returns: The index of the group that `elem` belongs to. """ for igrp, grp in enumerate(self.groups):