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
I believe you are missing the first term:
https://en.wikipedia.org/wiki/Runge%E2%80%93Kutta_methods
https://www.geeksforgeeks.org/runge-kutta-4th-order-method-solve-differential-equation/
Specifically, update integrator.h, integratePointSet() to
else if (mode == IntRK4) { PosType x0(x); std::vector<Vec3> uTotal(u); for(int i=0; i<N; i++) { x[i].pos = x0[i].pos + 0.5*u[i]; uTotal[i] += u[i]; // zl was missing? }
The change in result doesn't seem significant, but still.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I believe you are missing the first term:
https://en.wikipedia.org/wiki/Runge%E2%80%93Kutta_methods
https://www.geeksforgeeks.org/runge-kutta-4th-order-method-solve-differential-equation/
Specifically, update integrator.h, integratePointSet() to
The change in result doesn't seem significant, but still.
The text was updated successfully, but these errors were encountered: