complementary_constraint_matrix
complementary_constraint_matrix(V, T, J, dt=None)
Computes the complementarity constraint matrix
C = J D M
Where J is the rig jacobian, D is the momentum leaking matrix and M is the mass matrix.
The momentum leaking matrix is computed via surface diffusion using the timestep dt, which is set to 1/l^2 by default.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
V |
(n, 3) float numpy array
|
Mesh vertices |
required |
T |
(t, 4) int numpy array
|
Mesh tets |
required |
J |
(3n, 12m) float numpy array
|
Rig jacobian matrix |
required |
dt |
float
|
Timestep used for momentum leaking matrix, (default=1/l^2) |
None
|
Returns:
Name | Type | Description |
---|---|---|
C |
(12m, 3n) float numpy array
|
Complementarity constraint matrix |
Source code in src\fast_cody\complementary_constraint_matrix.py
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 |
|