Adaptive Rigidification of Elastic Solids

Abstract: We present a method for reducing the computational cost of elastic solid simulation by treating connected sets of non-deforming elements as rigid bodies. Non-deforming elements are identified as those where the strain rate squared Frobenius norm falls below a threshold for several frames. Rigidification uses a breadth first search to identify connected components while avoiding connections that would form hinges between rigid components. Rigid elements become elastic again when their approximate strain velocity rises above a threshold, which is fast to compute using a single iteration of conjugate gradient with a fixed Laplacian-based incomplete Cholesky preconditioner. With rigidification, the system size to solve at each time step can be greatly reduced, and if all elastic element become rigid, it reduces to solving the rigid body system. We demonstrate our results on a variety of 2D and 3D examples, and show that our method is likewise especially beneficial in contact rich examples.

Installation

Full Presentation

Supplemental Video

Authors

Alexandre Mercier-Aubin, Alexander Winter, David I.W. Levin, and Paul G. Kry

Embedded paper

Summarized Version

Here is a summarized version of this paper. The pre-print can be downloaded using the link above.

Mixing Rigids and Elastics

When a portion of the elastic mesh is made rigid, we store the positions of vertices making up the rigid body in the rigid body frame. Letting $r_i$ for $i \in \mathcal{R}$ be the rigid vertex positions in coordinates of the rigid body frame, we can compute the positions and velocities of these vertices in the world frame as $x_i = R \, r_i + p$ and $\dot{x}_i = - (R r_i) \times \omega + v$. This second expression can be written instead as a matrix product, $$ \begin{align} \dot{x}_i = \underbrace{ \begin{bmatrix} I & - (R \, r_i)^\times \end{bmatrix} }_{\Gamma_i} \begin{bmatrix} v \\ \omega \end{bmatrix}, %\phi \end{align} $$ where $(\cdot)^\times$ denotes construction of the 3-by-3 cross product operator. Furthermore, we can now write the velocity of all vertices in the finite element model as a product of a matrix $G$ with velocities of our active (elastic and rigid) degrees of freedom, $\dot{x}_\mathsf{A}$, $$ \begin{equation} \dot{x} = \underbrace{ \begin{bmatrix} I & 0 \\ 0 & \Gamma \end{bmatrix}}_{G} \underbrace{ \begin{bmatrix} \dot{x}_\mathcal{A} \\ \phi \end{bmatrix}}_{\dot{x}_\mathsf{A}}. \end{equation} $$

Rigidification

If the rotationally invariant Green strain tensor $E=\frac{1}{2}(F^TF-I)$ remains constant for a period of time, then we allow the element to become rigid.
For time step $k$, we compute the strain rate using finite difference

$$ \begin{align} \dot{E}_k= \frac{E_k - E_{k-1}}{h}, \end{align} $$ ignoring rotation by comparing strain in material space. Selecting a threshold for rigidification is not difficult, and is largely a question choosing a trade-off between error and speed. However, a large threshold will lead to large errors; a good choice is crucial so as not to generate visual artifacts.

We use an adjacency graph for tetrahedral elements with shared faces (or with shared edges for triangle elements in 2D simulations). Each connected component forms a rigid body in our simulation.

There are two possibilities to handle the case where rigid bodies share a vertex. One can add hinge constraints; this will slow down the time integration. We instead choose to make our BFS greedy, the first rigid element to touch a vertex (edge in 3D) claims it. Note that when this case happens, the neighboring elements often rigidify on the next frame.

Orange regions show rigid bodies. If the red triangle is a rigid candidate, it must not become part of body B as the red adjacent vertex already belongs to body A.

Elastification

Consider an oracle that determines which elements should elastify. We propose a single preconditioned conjugate gradient iteration to approximate the strain rate, which we compare to an elastification threshold. The propagation of the information is critical to generate good elastification behavior. Preconditioning is essential, otherwise each iteration only propagates information between neighbours following the sparsity structure of the system.

Incomplete Cholesky factorization is a good choice because the forward and backward substitution provides an excellent opportunity for an impulse at one vertex to influence $\dot{x}_\text{approx}$ at distant vertices, even with only one iteration of conjugate gradient

Local rigidification

An octopus ready to be cooked with its tentacles still dangling.

Our technique works like sleeping on static bodies, yet it really shines in scenes with local deformation. This effectively reduces the size of the system to solve from $3n$ vertices to exactly 6 degrees of freedom for a rigidified chunk of the models. As the time to solve is dependent on the degrees of freedom in the full system, this significantly reduces the computation time of the simulation.

See our paper for more details and results

click here for the code if you missed the two github buttons

Bibtex

@InProceedings{10.1145/3528223.3530124,
author = {Mercier-Aubin, Alexandre and Winter, Alexandre and Levin, David I. W. and Kry, Paul G.},
title = {Adaptive Rigidification of Elastic Solids},
year = {2022},
issue_date = {July 2022},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
volume = {41},
number = {4},
issn = {0730-0301},
url = {https://dl.acm.org/doi/abs/10.1145/3528223.3530124},
doi = {10.1145/3528223.3530124},
abstract = {We present a method for reducing the computational cost of elastic solid simulation by treating connected sets of non-deforming elements as rigid bodies. Non-deforming elements are identified as those where the strain rate squared Frobenius norm falls below a threshold for several frames. Rigidification uses a breadth first search to identify connected components while avoiding connections that would form hinges between rigid components. Rigid elements become elastic again when their approximate strain velocity rises above a threshold, which is fast to compute using a single iteration of conjugate gradient with a fixed Laplacian-based incomplete Cholesky preconditioner. With rigidification, the system size to solve at each time step can be greatly reduced, and if all elastic element become rigid, it reduces to solving the rigid body system. We demonstrate our results on a variety of 2D and 3D examples, and show that our method is likewise especially beneficial in contact rich examples.},
journal = {ACM Trans. Graph.},
month = {jul},
articleno = {71},
numpages = {11},
keywords = {physics simulation, adaptive, rigid bodies, finite element method}
}