Implement function to query if an element has derivatives of order n in direction d

Issue #32 new
Martin Sandve Alnæs created an issue

The naive implementation would be just:

def has_derivatives(self, order, direction):
    return self.degree() >= order

but a product element may have different degrees in each spatial direction.

Comments (0)

  1. Log in to comment