diff --git a/skfem/mapping/mapping.py b/skfem/mapping/mapping.py index f4d8ac6d..c08369aa 100644 --- a/skfem/mapping/mapping.py +++ b/skfem/mapping/mapping.py @@ -87,6 +87,18 @@ def detDG(self, """ raise NotImplementedError + def H(self, + X: ndarray, + eind: Optional[ndarray] = None) -> ndarray: + """Perform a mapping from the reference to global edge.""" + raise NotImplementedError + + def detDH(self, + X: ndarray, + eind: Optional[ndarray] = None) -> ndarray: + """The jacobian determinant of H.""" + raise NotImplementedError + def normals(self, X: ndarray, tind: ndarray,