DOLFIN
DOLFIN C++ interface
|
Discrete gradient operators providing derivatives of functions. More...
#include <DiscreteOperators.h>
Static Public Member Functions | |
static std::shared_ptr< GenericMatrix > | build_gradient (const FunctionSpace &V0, const FunctionSpace &V1) |
Discrete gradient operators providing derivatives of functions.
This class computes discrete gradient operators (matrices) that map derivatives of finite element functions into other finite element spaces. An example of where discrete gradient operators are required is the creation of algebraic multigrid solvers for H(curl) and H(div) problems. NOTE: This class is highly experimental and likely to change. It will eventually be expanded to provide the discrete curl and divergence.
|
static |
Build the discrete gradient operator A that takes a (P1, nodal Lagrange) to
(lowest order Nedelec), i.e. v = Aw. V0 is the H(curl) space, and V1 is the P1 Lagrange space.
[in] | V0 | (FunctionSpace&) H(curl) space |
[in] | V1 | (FunctionSpace&) P1 Lagrange space |