A big piece of the XPBD puzzle, which we already talked about a few weeks ago, is the satisfaction of particle constraints. Particle constraints force a particle to move in a certain way, relative to the other particles in the system.
If you’ve been following me for the past few months, you most likely know of my goal to simulate fabric 🧵. Last week, we talked about distance constraints. This week, we’ll be focusing on isometric bending constraints.
Here are once again those famous articles that we already studied together during an article from a few weeks ago on XPBD that I will reference for the math during this post:
A summary of XPBD
Recall that the XPBD algorithm with small steps is defined as follows:
⚠️ As I said, we have already covered this algorithm thoroughly, and I recommend that you read the article if you are already lost.
For now, we are only interested in the loop that is in lines (6) - (11). As you can see, the function of this loop is to satisfy the constraints of the simulation in order to directly correct the positions of each particle that participates in the constraints.
We just covered the reason why this simulation method is called as Position Based Dynamics - PBD 🎉.
Satisfying the constraints
Our objective during the loop is to calculate the correction vector that a particle must move in order to satisfy, or come closer to satisfying, the constraints.
where is defined as:
Note that where is the constraint compliance. Recall that where is the stiffness of the constraint. is the constraint equation, is the gradient of and is therefore a vector. is a diagonal matrix of inverse masses of the particles participating in the constraint.
, , and are scalar values.
Using these equations, we will simulate some constraints with code! 💻
Isometric bending constraint
Let’s now talk about the isometric bending constraint. Here is an example of what that might look like during a cloth simulation:
The isometric bending constraint is a bending constraint for inextensible surfaces. Basically, it’s a great bending model for cloth simulations due to the fact that cloth cannot normally be stretched (although that depends on the material).
The constraint consists of four particles that form a configuration of two triangles, which looks like the following:
where each purple circle is a particle at a location . Edges of the two triangles are labeled as . This configuration is called a stencil.
To calculate the necessary displacement of a particle in order to satisfy the constraint - we first start with the isometric bending constraint equation:
What 😨?! Don’t worry, we’ll break this equation down little by little.
We start with the matrix , which is the local constant Hessian bending energy. This resource gives the derivation.
We initialize the matrix only once for each configuration of four particles. Recall that the Hessian matrix includes the second order partial derivatives:
where and are areas of adjacent triangles. Recall that we can find the area of a triangle if the locations of it’s three points are given with a small linear algebra trick:
is a vector which consists of the cotangents between the triangle edges :
How to find the cotangent between two vectors 🤔
The cotangent is defined as follows:
We can find with the dot product:
To find , we use the cross product:
We can therefore rewrite the equation for as follows:
Let us now go back to this equation:
is the location of the particles. Finally, we need the gradient to find which is defined as follows:
We now have all the equations that we need. I find that these equations are difficult to truly grasp without seeing them at work in the code. So, let’s look at some code now!
The code
If you have already seen the code for the distance constraint from the last article, you will notice that the simulation loop does not change. We are just concerned with the bendingConstraint
function.
Fortunately, the code is not rocket science. First we need to calculate C
, then the gradient - grad
, which is . Then we find deltaLagrangianMultiplier
which is . Finally, we find , which is the displacement of a particle during a substep in time.
When running the program - we should see the following logged to the console:
BEFORE APPLYING XPBD LOOP
-------------------------
POSITION P1: [ '0.0000', '0.0000', '0.0000' ]
POSITION P2: [ '0.0000', '1.0000', '0.0000' ]
POSITION P3: [ '-0.5000', '0.5000', '0.0000' ]
POSITION P4: [ '0.5000', '0.5000', '0.0000' ]
VELOCITY P1: [ '0.0000', '0.0000', '0.0000' ]
VELOCITY P2: [ '0.0000', '0.0000', '0.0000' ]
VELOCITY P3: [ '0.0000', '0.0000', '0.0000' ]
VELOCITY P4: [ '0.0000', '0.0000', '0.0000' ]
AFTER APPLYING XPBD LOOP
------------------------
POSITION P1: [ '0.0000', '0.0000', '0.0000' ]
POSITION P2: [ '0.0000', '1.0000', '0.0000' ]
POSITION P3: [ '-0.5000', '0.5000', '0.0000' ]
POSITION P4: [ '0.5000', '0.5000', '0.0000' ]
VELOCITY P1: [ '0.0000', '0.0000', '0.0000' ]
VELOCITY P2: [ '0.0000', '0.0000', '0.0000' ]
VELOCITY P3: [ '0.0000', '0.0000', '0.0000' ]
VELOCITY P4: [ '0.0000', '0.0000', '0.0000' ]
Great! All that remains is to integrate these constraints into the fabric simulation! See you then!
Resources
- XPBD: Position-Based Simulation of Compliant Constrained Dynamics - Macklin et. al - NVIDIA
- Small Steps in Physics Simulation, Macklin et. al - NVIDIA
- Cloth simulation code - Matthias Müller
- A Survey on Position Based Dynamics, 2017
- XPBD Cloth simulation code by Matthais Müller
- The Secret of Cloth Simulation - Matthais Müller