-
Notifications
You must be signed in to change notification settings - Fork 2
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
Rk4 sim #41
Conversation
Why does pylint think this commit changed every file in rb_ws? |
Can you try pulling in/merging in main? Also which branch did you guys start from? |
Ah, we started from main 2 weeks ago, and there's been some changes so that's probably why |
Okay I’m feeling line endings change? @Jackack had this issue before so perhaps he can diagnose if that’s what causing this. |
Is that the LF/CRLF thing in the bottom right? I have it set to LF |
If you look at the pylint output for each of the commits in this branch, pylint only complained about engine.py until the "fix pylint" commit, which caused pylint to complain about a bunch of other files. |
Just a hunch, might be merging the SW/Ui velocity PR from main that caused this |
also what did you do in the merge branch main commit? This branch is still behind main. Did you pull main from origin first when you merged? |
I took a look at the git log of this branch. Since pylint checks the files that are different from main, I think what happened is:
The fix would be to pull from main, and then merge main into your branch again. |
Ah ok it seems to have worked now after pulling and merging again |
Tested on my laptop, sim frequency is good. Approved. |
What type of PR is this? (check all applicable)
Description
Change physics simulator step function to use RK4 instead of midpoint rule for improved simulation accuracy.
QA Instructions, Screenshots, Recordings
Ran simulator on Gabriel's laptop and buggy appeared to travel as expected. Simulator ran very slowly (10Hz), but doesn't seem to be related to these changes, since even after undoing all the changes it ran at the same speed.