Understanding mass matrix lumping in terms of functions spaces

Alec Jacobson

November 14, 2016

weblog/

$$\newcommand{\u}{\mathbf{u}}$$ $$\newcommand{\f}{\mathbf{f}}$$

Mass matrix lumping is the process of using a diagonal mass matrix instead of the "full" mass matrix resulting from Galerkin Finite Element Method. Lumping is often recommended because a diagonal mass matrix easy to invert (just invert the entries along the diagonal). As the name implies, diagonalizing the mass matrix is often justified by arguing rather hand-wavily that we're just "lumping all of the mass or integration" at the vertices of the mesh rather than integrating over the elements. This sounds intuitive but it leaves me wanting a more formal justification.

Here's an attempt to justify mass lumping in terms of mixed Finite Element approach to discretizing problems of the form: minimize,

$$E(u) = \frac{1}{2} \int_\Omega (u-f)^2 + \nabla u \cdot \nabla u\ dA$$

If we discretize this irreducible form directly using, for example, piecewise-linear basis functions over a mesh (e.g., $latex u \approx \sum_i \phi_i u_i$, and we use $latex \u$ to also mean the vector of coefficients $latex u_i$), then we get:

$$E(\u) = \frac{1}{2} (\u-\f)^TM(\u-\f) + \frac{1}{2} \u^TK\u$$

where we call $latex M$ the mass matrix so that $latex M_{ij} = \int_\Omega \phi_i \phi_j\ dA$. Then when we "mass lump" we are replacing $latex M$ with a diagonal matrix $latex D$ such that $latex D_{ii} = \sum_j M_{ij}$ or $latex D_{ii} = $ the area associated with vertex $latex i$. This "associated area" might be the Voronoi area.

In physical dynamics, if $latex \u=\u^t$ are displacements of some dynamic system and $latex \f=\u^{t-\Delta t}$ are the mesh displacements of the previous time step then this gives us a physical formula for kinetic and potential energy:

$$E(\u^t) = \frac{1}{2 \Delta t^2} (\u^t-\u^{t-\Delta t})^T M (\u^t-\u^{t-\Delta t}) + \frac{1}{2} {\u^t}^TK\u^t$$

where the stiffness matrix $latex K$ now might measure, for example, linear elasticity (I'm mostly going to ignore what's going on with $latex K$).

When we write this physical energy in the continuous form we'll introduce a variable to keep track of velocities: $latex \dot{u} = \partial u / \partial t$,

$$E(u,\dot{u}) = \frac{1}{2} \int_\Omega \dot{u}^2 + (\nabla u+\nabla u^T) \cdot (\nabla u + \nabla u^T)\ dA$$

$$\dot{u} = \partial u / \partial t$$

Now we have the potential energy in terms of velocity $latex \dot{u}$ and the kinetic energy in terms of displacements $latex u$. This is a very natural mixed form. If we discretize both $latex u$ and $latex \dot{u}$ using piecewise-linear basis functions over the same mesh then we'll have done a lot of re-shuffling to get the identical discretization above. In particular, we'll just get the same non-diagonal mass matrix $latex M$.

Instead, we'll discretize only displacements $latex u$ using piecewise-linear basis functions, and for velocities $latex \dot{u}$ we'll use piecewise-constant basis functions defined on the dual mesh. A standard choice for the dual mesh is the Voronoi dual mesh, where each zero dimensional vertex becomes zero-codimensional "cell" whose area/volume is the Voronoi area/volume of that vertex as a seed amongst all other vertices as fellow seeds. One can construct this dual mesh by connected circumcenters of all of the triangles in the primary mesh. An alternative dual mesh, we'll call the barycentric dual, will connect all barycenters of the triangles in the primary mesh. All this to say that we approximate the velocities as sum over piecewise constant basis functions located at primary mesh vertices (aka dual mesh cells): $latex \dot{u}^t \approx \sum_i \psi_i \dot{u}^t_i$. The basis functions $latex \psi_i$ and $latex \phi_i$ are in correspondence so that $latex \dot{\u}^t$ collects elements $latex \dot{u}^t_i$ in the same number and order as $latex \u$.

Now we can discretize the energy as:

$$E(\dot{\u}^t,\u^t) = \frac{1}{2} \dot{\u}^T D \dot{\u} + \frac{1}{2} {\u^t}^T K \u^t,$$

and voilĂ  the diagonal mass matrix $D$ appears, where

$$D_{ij} = \int_\Omega \psi_i \psi_j\ dA = \begin{cases} \text{area}_i & i=j \ 0 & i\neq j \end{cases}$$

As a side note, if we use the barycentric dual mesh then areai $latex = \sum_jM_{ij}$ , if we use the Voronoi dual mesh then $latex \text{area}_i$ is the Voronoi area which may become negative for non-Delaunay meshes (and we might want to use the "fix" described in "Discrete Differential-Geometry Operators for Triangulated 2-Manifolds" [Mark Meyer et al. 2002]).

Our work is not quite done since we haven't coupled our discretization of velocity and displacements together. We haven't discretized the constraint: $latex \dot{u} = \partial u / \partial t$. We could just quietly say that they "need to agree" at mesh vertices so that $latex \dot{u}^t_i = (u^t_i - u_i^{t - \Delta t})/\Delta t$. If we do then we can immediately substitute-out all of the velocity variables and arrive at an "flattened" form of the energy only in terms of displacements $\u$:

$$E(\u^t) = \frac{1}{2 \Delta t^2} (\u^t-\u^{t-\Delta t})^T D (\u^t-\u^{t-\Delta t}) + \frac{1}{2} {\u^t}^T K \u^t.$$

Deeper down the rabbit hole: This is a bit unsettling because it seems like we just pushed the "lumping magic" deeper into the constraints between velocities and displacements. Indeed, if we try to enforce this constraint by the Lagrange multiplier method:

$$L(u,\dot{u},\lambda) = E(u,\dot{u}) + \frac{1}{2} \int_\Omega \lambda \left(\dot{u} - \frac{\partial u}{\partial t}\right) \ dA$$

(which admittedly reads a bit like nonsense because before the only difference between $latex \dot{u}$ and $latex \partial u / \partial t$ was notation, but think of $latex \dot{u}$ as a first-class variable function).

then we have to pick a discretization for the Lagrange multiplier function $latex \lambda$. Surprisingly, if we use either piecewise-linear on the primary mesh or piecewise-constant basis functions on the dual mesh then we'll get a non-diagonal matrix coupling $latex \dot{u}$ and $latex \u$ which means that we can't simply substitute-out $\dot{\u}$.

To tie things up, I found one (potentially dubious) discretization of $latex \lambda$ that makes things work: Dirac basis functions

$$\delta_i(x) = \int_\Omega \delta(x-x_i) \ dA$$

Where $latex \delta(x)$ is Dirac's delta function so that $latex \delta(x) = \begin{cases} \infty & x=0 \ 1 & x\neq 0 \end{cases}$ and $latex \int \delta(x) \ dA = 1$.

Assuming I have permission for the Discretization God's, then I let $latex \lambda \approx \sum_i \delta_i \lambda_i$ where (by abuse of notation/LaTeX's inability to typeset bold Greek letters) $latex \lambda$ is a vector of coefficients $latex \lambda_i$ in corresponding number and order with $latex \u$ and $latex \dot{\u}$.

Since (crossing fingers) $latex \int_\Omega \delta_i \psi_j \ dA = \begin{cases} 1 & i=j \ 0 & i\neq j\end{cases}$ and $latex \int_\Omega \delta_i \phi_j \ dA = \begin{cases} 1 & i=j \ 0 & i\neq j\end{cases}$. Our discretized Lagrangian is:

$$L(\u^t,\dot{\u}^t,\lambda) = \frac{1}{2} \dot{\u}^T D \dot{\u} + \frac{1}{2} {\u^t}^T K \u^t + \frac{1}{2} \lambda I \left(\u^t - \frac{\u^t - \u^{t-\Delta t}}{\Delta t} \right),$$

where $latex I$ truly madly deeply is the identity matrix. This implies that a direct substitution of $latex \dot{\u}^t$ with $latex (\u^t - \u^{t-\Delta t})/\Delta t$ is valid.

Update: Some papers making similar claims:

"A note on mass lumping and related processes" [Hinton et al. 1976] ("Analysis Of Structural Vibration And Response" [Clough 1971] (cited in [Hinton et al. 1976] but I haven't found a copy yet)