We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dear Taichi devs,
In engine/mpm_solver.py, the formula for the Cauchy stress is
engine/mpm_solver.py
stress = 2 mu (F-R) F^T + I lambda J (J-1).
Isn't the formula missing a J^(-1) factor?
The Piola-Kirchhoff tensor for the fixed corrotated model is
P = 2 mu (F-R) + lambda (J-1) J F^(-T),
The Cauchy stress is defined as stress = (1/J) P F^(T), which should give
stress = 2 mu (F-R)/J + lambda (J-1) I.
However, the code in the mpm_solver.py (lines 452, 550) is:
stress = 2 * mu * ( self.F[p] - U @ V.transpose()) @ self.F[p].transpose( ) + ti.Matrix.identity(ti.f32, self.dim) * la * J * (J - 1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Dear Taichi devs,
In
engine/mpm_solver.py
, the formula for the Cauchy stress isstress = 2 mu (F-R) F^T + I lambda J (J-1).
Isn't the formula missing a J^(-1) factor?
The Piola-Kirchhoff tensor for the fixed corrotated model is
P = 2 mu (F-R) + lambda (J-1) J F^(-T),
The Cauchy stress is defined as stress = (1/J) P F^(T), which should give
stress = 2 mu (F-R)/J + lambda (J-1) I.
However, the code in the mpm_solver.py (lines 452, 550) is:
The text was updated successfully, but these errors were encountered: