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
This computation of C as following is not consistent with this line.
taichi_mpm/mls-mpm88-explained.cpp
Line 171 in 3bb90fb
1/dx
The text was updated successfully, but these errors were encountered:
@FantasyVR I think the reason is, that dos is already divided by dx. Bit hard to read, but it seems to be correct.
Sorry, something went wrong.
I think it should be p.C += 4 * inv_dx * inv_dx * Mat::outer_product(weight * grid_v, dpos);
p.C += 4 * inv_dx * inv_dx * Mat::outer_product(weight * grid_v, dpos);
No branches or pull requests
This computation of C as following is not consistent with this line.
taichi_mpm/mls-mpm88-explained.cpp
Line 171 in 3bb90fb
The above line is lack of one
1/dx
according to the last page of this slide.The text was updated successfully, but these errors were encountered: