Skip to content
New issue

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

Incorrect HK4 #10

Open
zoharl3 opened this issue Jul 21, 2022 · 0 comments
Open

Incorrect HK4 #10

zoharl3 opened this issue Jul 21, 2022 · 0 comments

Comments

@zoharl3
Copy link

zoharl3 commented Jul 21, 2022

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant