summaryrefslogtreecommitdiff
path: root/thirdparty/bullet/BulletSoftBody/btDeformableLinearElasticityForce.h
blob: 106dc10ad69ab182b6ccae2da0346290d2d581dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/*
 Written by Xuchen Han <xuchenhan2015@u.northwestern.edu>
 
 Bullet Continuous Collision Detection and Physics Library
 Copyright (c) 2019 Google Inc. http://bulletphysics.org
 This software is provided 'as-is', without any express or implied warranty.
 In no event will the authors be held liable for any damages arising from the use of this software.
 Permission is granted to anyone to use this software for any purpose,
 including commercial applications, and to alter it and redistribute it freely,
 subject to the following restrictions:
 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
 3. This notice may not be removed or altered from any source distribution.
 */

#ifndef BT_LINEAR_ELASTICITY_H
#define BT_LINEAR_ELASTICITY_H

#include "btDeformableLagrangianForce.h"
#include "LinearMath/btQuickprof.h"
class btDeformableLinearElasticityForce : public btDeformableLagrangianForce
{
public:
    typedef btAlignedObjectArray<btVector3> TVStack;
    btScalar m_mu, m_lambda;
    btScalar m_mu_damp, m_lambda_damp;
    btDeformableLinearElasticityForce(): m_mu(1), m_lambda(1)
    {
        btScalar damping = 0.05;
        m_mu_damp = damping * m_mu;
        m_lambda_damp = damping * m_lambda;
    }
    
    btDeformableLinearElasticityForce(btScalar mu, btScalar lambda, btScalar damping = 0.05): m_mu(mu), m_lambda(lambda)
    {
        m_mu_damp = damping * m_mu;
        m_lambda_damp = damping * m_lambda;
    }
    
    virtual void addScaledForces(btScalar scale, TVStack& force)
    {
        addScaledDampingForce(scale, force);
        addScaledElasticForce(scale, force);
    }
    
    virtual void addScaledExplicitForce(btScalar scale, TVStack& force)
    {
        addScaledElasticForce(scale, force);
    }
    
    // The damping matrix is calculated using the time n state as described in https://www.math.ucla.edu/~jteran/papers/GSSJT15.pdf to allow line search
    virtual void addScaledDampingForce(btScalar scale, TVStack& force)
    {
        if (m_mu_damp == 0 && m_lambda_damp == 0)
            return;
        int numNodes = getNumNodes();
        btAssert(numNodes <= force.size());
        btVector3 grad_N_hat_1st_col = btVector3(-1,-1,-1);
        for (int i = 0; i < m_softBodies.size(); ++i)
        {
            btSoftBody* psb = m_softBodies[i];
            if (!psb->isActive())
            {
                continue;
            }
            for (int j = 0; j < psb->m_tetras.size(); ++j)
            {
                btSoftBody::Tetra& tetra = psb->m_tetras[j];
                btSoftBody::Node* node0 = tetra.m_n[0];
                btSoftBody::Node* node1 = tetra.m_n[1];
                btSoftBody::Node* node2 = tetra.m_n[2];
                btSoftBody::Node* node3 = tetra.m_n[3];
                size_t id0 = node0->index;
                size_t id1 = node1->index;
                size_t id2 = node2->index;
                size_t id3 = node3->index;
                btMatrix3x3 dF = DsFromVelocity(node0, node1, node2, node3) * tetra.m_Dm_inverse;
                btMatrix3x3 I;
                I.setIdentity();
                btMatrix3x3 dP = (dF + dF.transpose()) * m_mu_damp + I * (dF[0][0]+dF[1][1]+dF[2][2]) * m_lambda_damp;
                //                firstPiolaDampingDifferential(psb->m_tetraScratchesTn[j], dF, dP);
                btVector3 df_on_node0 = dP * (tetra.m_Dm_inverse.transpose()*grad_N_hat_1st_col);
                btMatrix3x3 df_on_node123 = dP * tetra.m_Dm_inverse.transpose();
                
                // damping force differential
                btScalar scale1 = scale * tetra.m_element_measure;
                force[id0] -= scale1 * df_on_node0;
                force[id1] -= scale1 * df_on_node123.getColumn(0);
                force[id2] -= scale1 * df_on_node123.getColumn(1);
                force[id3] -= scale1 * df_on_node123.getColumn(2);
            }
        }
    }
    
    virtual double totalElasticEnergy(btScalar dt)
    {
        double energy = 0;
        for (int i = 0; i < m_softBodies.size(); ++i)
        {
            btSoftBody* psb = m_softBodies[i];
            if (!psb->isActive())
            {
                continue;
            }
            for (int j = 0; j < psb->m_tetraScratches.size(); ++j)
            {
                btSoftBody::Tetra& tetra = psb->m_tetras[j];
                btSoftBody::TetraScratch& s = psb->m_tetraScratches[j];
                energy += tetra.m_element_measure * elasticEnergyDensity(s);
            }
        }
        return energy;
    }
    
    // The damping energy is formulated as in https://www.math.ucla.edu/~jteran/papers/GSSJT15.pdf to allow line search
    virtual double totalDampingEnergy(btScalar dt)
    {
        double energy = 0;
        int sz = 0;
        for (int i = 0; i < m_softBodies.size(); ++i)
        {
            btSoftBody* psb = m_softBodies[i];
            if (!psb->isActive())
            {
                continue;
            }
            for (int j = 0; j < psb->m_nodes.size(); ++j)
            {
                sz = btMax(sz, psb->m_nodes[j].index);
            }
        }
        TVStack dampingForce;
        dampingForce.resize(sz+1);
        for (int i = 0; i < dampingForce.size(); ++i)
            dampingForce[i].setZero();
        addScaledDampingForce(0.5, dampingForce);
        for (int i = 0; i < m_softBodies.size(); ++i)
        {
            btSoftBody* psb = m_softBodies[i];
            for (int j = 0; j < psb->m_nodes.size(); ++j)
            {
                const btSoftBody::Node& node = psb->m_nodes[j];
                energy -= dampingForce[node.index].dot(node.m_v) / dt;
            }
        }
        return energy;
    }
    
    double elasticEnergyDensity(const btSoftBody::TetraScratch& s)
    {
        double density = 0;
        btMatrix3x3 epsilon = (s.m_F + s.m_F.transpose()) * 0.5 - btMatrix3x3::getIdentity();
        btScalar trace = epsilon[0][0] + epsilon[1][1] + epsilon[2][2];
        density += m_mu * (epsilon[0].length2() + epsilon[1].length2() + epsilon[2].length2());
        density += m_lambda * trace * trace * 0.5;
        return density;
    }
    
    virtual void addScaledElasticForce(btScalar scale, TVStack& force)
    {
        int numNodes = getNumNodes();
        btAssert(numNodes <= force.size());
        btVector3 grad_N_hat_1st_col = btVector3(-1,-1,-1);
        for (int i = 0; i < m_softBodies.size(); ++i)
        {
            btSoftBody* psb = m_softBodies[i];
            if (!psb->isActive())
            {
                continue;
            }
            btScalar max_p = psb->m_cfg.m_maxStress;
            for (int j = 0; j < psb->m_tetras.size(); ++j)
            {
                btSoftBody::Tetra& tetra = psb->m_tetras[j];
                btMatrix3x3 P;
                firstPiola(psb->m_tetraScratches[j],P);
#if USE_SVD
                if (max_p > 0)
                {
                    // since we want to clamp the principal stress to max_p, we only need to
                    // calculate SVD when sigma_0^2 + sigma_1^2 + sigma_2^2 > max_p * max_p
                    btScalar trPTP = (P[0].length2() + P[1].length2() + P[2].length2());
                    if (trPTP > max_p * max_p)
                    {
                        btMatrix3x3 U, V;
                        btVector3 sigma;
                        singularValueDecomposition(P, U, sigma, V);
                        sigma[0] = btMin(sigma[0], max_p);
                        sigma[1] = btMin(sigma[1], max_p);
                        sigma[2] = btMin(sigma[2], max_p);
                        sigma[0] = btMax(sigma[0], -max_p);
                        sigma[1] = btMax(sigma[1], -max_p);
                        sigma[2] = btMax(sigma[2], -max_p);
                        btMatrix3x3 Sigma;
                        Sigma.setIdentity();
                        Sigma[0][0] = sigma[0];
                        Sigma[1][1] = sigma[1];
                        Sigma[2][2] = sigma[2];
                        P = U * Sigma * V.transpose();
                    }
                }
#endif
                //                btVector3 force_on_node0 = P * (tetra.m_Dm_inverse.transpose()*grad_N_hat_1st_col);
                btMatrix3x3 force_on_node123 = P * tetra.m_Dm_inverse.transpose();
                btVector3 force_on_node0 = force_on_node123 * grad_N_hat_1st_col;
                
                btSoftBody::Node* node0 = tetra.m_n[0];
                btSoftBody::Node* node1 = tetra.m_n[1];
                btSoftBody::Node* node2 = tetra.m_n[2];
                btSoftBody::Node* node3 = tetra.m_n[3];
                size_t id0 = node0->index;
                size_t id1 = node1->index;
                size_t id2 = node2->index;
                size_t id3 = node3->index;
                
                // elastic force
                btScalar scale1 = scale * tetra.m_element_measure;
                force[id0] -= scale1 * force_on_node0;
                force[id1] -= scale1 * force_on_node123.getColumn(0);
                force[id2] -= scale1 * force_on_node123.getColumn(1);
                force[id3] -= scale1 * force_on_node123.getColumn(2);
            }
        }
    }
    
    // The damping matrix is calculated using the time n state as described in https://www.math.ucla.edu/~jteran/papers/GSSJT15.pdf to allow line search
    virtual void addScaledDampingForceDifferential(btScalar scale, const TVStack& dv, TVStack& df)
    {
        if (m_mu_damp == 0 && m_lambda_damp == 0)
            return;
        int numNodes = getNumNodes();
        btAssert(numNodes <= df.size());
        btVector3 grad_N_hat_1st_col = btVector3(-1,-1,-1);
        for (int i = 0; i < m_softBodies.size(); ++i)
        {
            btSoftBody* psb = m_softBodies[i];
            if (!psb->isActive())
            {
                continue;
            }
            for (int j = 0; j < psb->m_tetras.size(); ++j)
            {
                btSoftBody::Tetra& tetra = psb->m_tetras[j];
                btSoftBody::Node* node0 = tetra.m_n[0];
                btSoftBody::Node* node1 = tetra.m_n[1];
                btSoftBody::Node* node2 = tetra.m_n[2];
                btSoftBody::Node* node3 = tetra.m_n[3];
                size_t id0 = node0->index;
                size_t id1 = node1->index;
                size_t id2 = node2->index;
                size_t id3 = node3->index;
                btMatrix3x3 dF = Ds(id0, id1, id2, id3, dv) * tetra.m_Dm_inverse;
                btMatrix3x3 I;
                I.setIdentity();
                btMatrix3x3 dP = (dF + dF.transpose()) * m_mu_damp + I * (dF[0][0]+dF[1][1]+dF[2][2]) * m_lambda_damp;
                //                firstPiolaDampingDifferential(psb->m_tetraScratchesTn[j], dF, dP);
                //                btVector3 df_on_node0 = dP * (tetra.m_Dm_inverse.transpose()*grad_N_hat_1st_col);
                btMatrix3x3 df_on_node123 = dP * tetra.m_Dm_inverse.transpose();
                btVector3 df_on_node0 = df_on_node123 * grad_N_hat_1st_col;
                
                // damping force differential
                btScalar scale1 = scale * tetra.m_element_measure;
                df[id0] -= scale1 * df_on_node0;
                df[id1] -= scale1 * df_on_node123.getColumn(0);
                df[id2] -= scale1 * df_on_node123.getColumn(1);
                df[id3] -= scale1 * df_on_node123.getColumn(2);
            }
        }
    }
    
    virtual void addScaledElasticForceDifferential(btScalar scale, const TVStack& dx, TVStack& df)
    {
        int numNodes = getNumNodes();
        btAssert(numNodes <= df.size());
        btVector3 grad_N_hat_1st_col = btVector3(-1,-1,-1);
        for (int i = 0; i < m_softBodies.size(); ++i)
        {
            btSoftBody* psb = m_softBodies[i];
            if (!psb->isActive())
            {
                continue;
            }
            for (int j = 0; j < psb->m_tetras.size(); ++j)
            {
                btSoftBody::Tetra& tetra = psb->m_tetras[j];
                btSoftBody::Node* node0 = tetra.m_n[0];
                btSoftBody::Node* node1 = tetra.m_n[1];
                btSoftBody::Node* node2 = tetra.m_n[2];
                btSoftBody::Node* node3 = tetra.m_n[3];
                size_t id0 = node0->index;
                size_t id1 = node1->index;
                size_t id2 = node2->index;
                size_t id3 = node3->index;
                btMatrix3x3 dF = Ds(id0, id1, id2, id3, dx) * tetra.m_Dm_inverse;
                btMatrix3x3 dP;
                firstPiolaDifferential(psb->m_tetraScratches[j], dF, dP);
                //                btVector3 df_on_node0 = dP * (tetra.m_Dm_inverse.transpose()*grad_N_hat_1st_col);
                btMatrix3x3 df_on_node123 = dP * tetra.m_Dm_inverse.transpose();
                btVector3 df_on_node0 = df_on_node123 * grad_N_hat_1st_col;
                
                // elastic force differential
                btScalar scale1 = scale * tetra.m_element_measure;
                df[id0] -= scale1 * df_on_node0;
                df[id1] -= scale1 * df_on_node123.getColumn(0);
                df[id2] -= scale1 * df_on_node123.getColumn(1);
                df[id3] -= scale1 * df_on_node123.getColumn(2);
            }
        }
    }
    
    void firstPiola(const btSoftBody::TetraScratch& s, btMatrix3x3& P)
    {
        btMatrix3x3 epsilon = (s.m_F + s.m_F.transpose()) * 0.5 - btMatrix3x3::getIdentity();
        btScalar trace = epsilon[0][0] + epsilon[1][1] + epsilon[2][2];
        P = epsilon * btScalar(2) * m_mu + btMatrix3x3::getIdentity() * m_lambda * trace;
    }
    
    // Let P be the first piola stress.
    // This function calculates the dP = dP/dF * dF
    void firstPiolaDifferential(const btSoftBody::TetraScratch& s, const btMatrix3x3& dF,  btMatrix3x3& dP)
    {
        btScalar trace = (dF[0][0] + dF[1][1] + dF[2][2]);
        dP = (dF + dF.transpose()) * m_mu +  btMatrix3x3::getIdentity()  * m_lambda * trace;
    }
    
    // Let Q be the damping stress.
    // This function calculates the dP = dQ/dF * dF
    void firstPiolaDampingDifferential(const btSoftBody::TetraScratch& s, const btMatrix3x3& dF,  btMatrix3x3& dP)
    {
        btScalar trace = (dF[0][0] + dF[1][1] + dF[2][2]);
        dP = (dF + dF.transpose()) * m_mu_damp +  btMatrix3x3::getIdentity()  * m_lambda_damp * trace;
    }
    
    virtual btDeformableLagrangianForceType getForceType()
    {
        return BT_LINEAR_ELASTICITY_FORCE;
    }
    
};
#endif /* BT_LINEAR_ELASTICITY_H */