Smooth triangulation edge contacts

Motivation

In in interaction of rather compliant particles with triangulated surface, internal edges of the surface can influence the simulation. Fig. 11 shows a simple case where such artefacts can be encoutered.

../../_images/facet-surface-sphere-contacts.svg

Fig. 11 Illustration of a sphere rolling accross triangulated surface with velocity \(v\); at this moment, there are two contacts with facets representing the surface. The facet \(f_1\) is contacted on the face; however, facet \(f_2\) is contacted on edge, which does not have physical meaning (it is inner edge which only representes triangulation of the continuous surface). Both contacts cause force responses (noted \(\vec{F}_1\), \(\vec{F}_2\)); there is also gravity force acting on the sphere \(\vec{F}_g\); as we can see, resultant force on the sphere \(\vec{F}_{\Sigma}\) is obstructing its movement (against \(\vec{v}\)) thus inducing artifacts into simulation.

Edge smoothing

To counter this effect, contacts of particles with internal edges (and with internal vertices) are regularized in such way that the contact force is always within the range of facet’s both normals. (An edge is considered internal if facet shares both nodes of that respective edge with another single facet; a vertex is considered internal if both adjacent edges are internal.) Normals were parallel in Fig. 11, but in general case of a curved surface, they are not; such a case is shown in Fig. 12.

../../_images/smooth-facet-edge-contact.svg

Fig. 12 Edge contact smoothing based on 3 zones which are determined from \(\vec{n}\cdot\vec{n}_1\), projection of original contact normal to the facet normal.

The original contact normal \(\vec{n}\) will have be adjusted to the new normal \(\vec{n}'\) so that motion parallel to the surface is not obstructed. The relationship between \(\vec{n}_1\) and \(\vec{n}_2\) (which is constant for non-deforming meshes) is stored in the scalar \(n_{\rm lim}=\vec{n}_1\cdot\vec{n}_2\) which determines boundary values for 3 zones of adjustment.

  1. The blue zone is when contact normal \(\vec{n}\) is between \(\vec{n}_1\) and \(\vec{n}_2\), i.e. when

    \[n_{\rm lim}\leq\vec{n}\cdot\vec{n}_1.\]

    In this case, there is no need for adjustment, thus \(\vec{n}\equiv\vec{n}'\).

  2. The red zone is convex contact with the edge; the condition is

    \[-o_{\rm lim}<\vec{n}\cdot\vec{n}_1<n_{\rm lim}\]

    with the perpendicular component computed simply as

    \[o_{\rm lim}=\sqrt{1-n_{\rm lim}^2}.\]

    In this case, the adjusted normal will be \(\vec{n}'=\vec{n}_2\) and the contact point will be contacting particle’s center projected onto plane defined by \(\mathbf{E}_{12}\) and normal \(\vec{n}_2\).

  3. The green zone is concave contact with the edge; the condition is

    \[\vec{n}\cdot\vec{n}_1\leq-o_{\rm lim},\]

    the adjusted normal becomes \(\vec{n}'=-\vec{n}_1\) and contact point is particle’s center projected onto plane defined by \(\mathbf{E}_{12}\) and normal \(\vec{n}_1\).

Note

In general case, the computation somewhat more complicated due to the fact that (a) normals \(\vec{n}_1\), \(\vec{n}_2\) may not be oriented consistently and (b) both cases of convex and concave edge must be handled, from both sides of possible contact.

Tip

Report issues or inclarities to github.