![]() |
Force Feedback bug - Printable Version +- Forums (https://www.vdrift.net/Forum) +-- Forum: Community (https://www.vdrift.net/Forum/forumdisplay.php?fid=3) +--- Forum: Bugs (https://www.vdrift.net/Forum/forumdisplay.php?fid=7) +--- Thread: Force Feedback bug (/showthread.php?tid=1643) |
Force Feedback bug - LBodnar - 07-15-2012 feedback is never reset to zero before the iteration loop. In fact it is not even intialised before first use. Is this intended? Leo Code: void CARDYNAMICS::updateAction(btCollisionWorld * collisionWorld, btScalar dt) - NaN - 07-15-2012 Good catch. The loop is OK, just a low pass to smooth the value (n + 1 values / n + 1). But the initial value should be set of course. I've pushed a fix, don't have access to a ff-device to test atm unfortunately. - LBodnar - 07-15-2012 Shouldn't feedback be set to zero before 10 iterations loop in CARDYNAMICS::updateAction() ? - NaN - 07-16-2012 It is the algorithmic implementation of a low pass filter(to smooth the value): Quote:for i from 1 to nwith a = 10/11. It would be more obvious with: Code: float new_feedback = 0 - LBodnar - 07-16-2012 Sure, I could see exponentially decaying LPF algorithm but I was not sure if it was intentional. I am just surprised to see an arbitrary bodge in an academically accurate simulator. ![]() Leo - NaN - 07-16-2012 Academically accurate simulator ? - LBodnar - 07-16-2012 Well, if you account for things like contact patch displacement in an Ackermann geometry I'd call it reasonably accurate. Leo - NaN - 07-16-2012 For my taste, there is a bit too much stuff going on at tire contacts and the suspension behaves not so well at the simulation steps we are running. But yeah, it is somewhat of an approximation/compromise. I wish I had time to work on my fork to make it a bit more accurate. - NaN - 07-16-2012 OK, one thing that could be done is to move the low pass filter stuff out of the simulation into force feedback code and return current "normalized steering torque" instead of the feedback value. Anyone interested? - LBodnar - 07-16-2012 I agree that this is the best solution. |